/* ==============================
   GLOBAL
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #25344a;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}


/* ==============================
   NAVIGATION
================================ */

header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.navbar {
    max-width: 1250px;
    margin: auto;

    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 30px;
}

.brand {
    display: flex;
    align-items: center;
    color: #25344a;
}

.brand-main {
    font-family: Georgia, serif;
    font-size: 43px;
    color: #c99742;
    margin-right: 13px;
}

.brand-text {
    font-family: Georgia, serif;
    font-size: 13px;
    letter-spacing: 1px;
}

.brand-text small {
    display: block;
    color: #c99742;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 8px;
    letter-spacing: 2px;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    gap: 34px;
}

.nav-links a {
    color: #25344a;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c99742;
}

.nav-links a::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #c99742;

    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* ==============================
   HERO
================================ */

.hero {
    min-height: 670px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        url("images/multicommerce-hero.png")
        center center / cover
        no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(14,32,57,0.90) 0%,
            rgba(25,49,78,0.73) 40%,
            rgba(255,255,255,0.10) 100%
        );
}

.hero-content {
    position: relative;

    max-width: 1250px;
    width: 100%;

    margin: auto;

    padding: 70px 40px;

    color: white;
}

.hero-small {
    color: #d7ae62;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: normal;
    line-height: 1;
    margin-bottom: 18px;
}

.hero h2 {
    font-size: clamp(24px, 3vw, 37px);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 25px;
}

.hero-description {
    max-width: 600px;
    font-size: 18px;
    color: #e9edf2;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* ==============================
   BUTTONS
================================ */

.btn {
    display: inline-block;

    padding: 14px 30px;

    border-radius: 3px;

    font-weight: 600;
    letter-spacing: .4px;

    transition: all .3s ease;
}

.btn-primary {
    background: #c99742;
    color: #ffffff;
    border: 2px solid #c99742;
}

.btn-primary:hover {
    background: #b17f2f;
    border-color: #b17f2f;
    transform: translateY(-2px);
}

.btn-secondary {
    color: #ffffff;
    border: 2px solid rgba(255,255,255,.8);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #25344a;
}


/* ==============================
   GENERAL SECTIONS
================================ */

.section {
    padding: 90px 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title span {
    color: #c99742;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
}

.section-title h2 {
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: normal;
    color: #24364f;
    margin-top: 7px;
}

.gold-line {
    width: 55px;
    height: 2px;

    background: #c99742;

    margin: 15px auto 0;
}


/* ==============================
   INTRO
================================ */

.intro {
    max-width: 950px;
    margin: auto;
}

.intro-text {
    text-align: center;
    font-size: 19px;
    line-height: 1.8;
    color: #667080;
}


/* ==============================
   SERVICES
================================ */

.services {
    background: #f4f6f9;
}

.cards {
    max-width: 1200px;
    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.card {
    background: #ffffff;

    padding: 40px 28px;

    border-radius: 5px;

    box-shadow:
        0 10px 30px rgba(31,52,80,.08);

    border-top: 3px solid #c99742;

    transition: .3s;
}

.card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 35px rgba(31,52,80,.15);
}

.icon {
    font-family: Georgia, serif;
    font-size: 34px;
    color: #c99742;
    margin-bottom: 15px;
}

.card h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #253b59;
}

.card p {
    color: #687384;
    font-size: 15px;
}


/* ==============================
   WHY
================================ */

.why {
    background:
        linear-gradient(
            135deg,
            #172b46,
            #2f4d70
        );

    padding: 90px 30px;
}

.why-content {
    max-width: 1100px;
    margin: auto;
}

.light h2 {
    color: #ffffff;
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

    text-align: center;
}

.why-grid div {
    padding: 25px;
}

.why-grid strong {
    display: block;

    color: #d5aa5d;

    font-family: Georgia, serif;

    font-size: 24px;

    margin-bottom: 10px;
}

.why-grid p {
    color: #dce3eb;
}


/* ==============================
   CTA
================================ */

.cta {
    text-align: center;
    padding: 80px 30px;
}

.cta h2 {
    font-family: Georgia, serif;
    font-size: 38px;
    color: #24364f;
    margin-bottom: 10px;
}

.cta p {
    color: #667080;
    font-size: 18px;
    margin-bottom: 28px;
}


/* ==============================
   FOOTER
================================ */

footer {
    background: #101f33;
    color: #ffffff;
}

.footer-container {
    max-width: 1150px;

    margin: auto;

    padding: 50px 30px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: Georgia, serif;
    font-size: 45px;
    color: #c99742;
}

.footer-brand strong {
    font-family: Georgia, serif;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #c99742;
    font-size: 12px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #d9e0e8;
}

.footer-links a:hover {
    color: #c99742;
}

.copyright {
    border-top:
        1px solid rgba(255,255,255,.1);

    text-align: center;

    padding: 20px;

    color: #8995a5;

    font-size: 13px;
}


/* ==============================
   MOBILE
================================ */

@media (max-width: 900px) {

    .navbar {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 60px 25px;
    }

    .cards {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .brand-main {
        font-size: 34px;
    }

    .brand-text {
        font-size: 10px;
    }

    .nav-links {
        font-size: 14px;
    }

    .hero {
        min-height: 570px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .cards,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 65px 20px;
    }

    .section-title h2 {
        font-size: 31px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}/* =====================================================
   ABOUT / SERVICES / CONTACT PAGES
   ===================================================== */


/* PAGE TITLE */

.page-header {
    min-height: 280px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: linear-gradient(
        135deg,
        #142a46 0%,
        #2e4c70 100%
    );

    color: #ffffff;

    padding: 60px 30px;
}

.page-header div {
    width: 100%;
}

.page-header p {
    color: #d2a04b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.page-header h1 {
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: normal;
}


/* =========================
   ABOUT
========================= */

.about-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #637083;
    margin-bottom: 22px;
}


/* =========================
   SERVICES
========================= */

.service-details {
    max-width: 950px;
    margin: 0 auto;
}

.service-detail {
    display: grid;
    grid-template-columns: 90px 1fr;

    gap: 30px;

    padding: 40px 0;

    border-bottom: 1px solid #e1e5ea;
}

.service-number {
    font-family: Georgia, serif;
    font-size: 45px;
    color: #c99742;
}

.service-detail h2 {
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: normal;

    color: #243b59;

    margin-bottom: 12px;
}

.service-detail p {
    color: #657286;
    line-height: 1.7;
    margin-bottom: 10px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-container {
    max-width: 1050px;
    margin: 0 auto;

    display: grid !important;

    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(400px, 1.2fr);

    gap: 70px;

    align-items: start;
}


/* CONTACT LEFT */

.contact-info {
    padding-top: 15px;
}

.contact-info h2 {
    font-family: Georgia, serif;

    font-size: 30px;
    font-weight: normal;

    color: #243b59;

    margin-bottom: 20px;
}

.contact-info h3 {
    color: #c99742;

    font-size: 18px;

    margin-top: 35px;
    margin-bottom: 12px;
}

.contact-info p {
    color: #657286;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 15px;
}


/* FORM CARD */

.contact-form {
    display: block !important;

    width: 100%;

    background: #f6f8fa;

    padding: 40px;

    border-top: 4px solid #c99742;

    border-radius: 3px;

    box-shadow:
        0 12px 35px rgba(28, 48, 73, 0.12);
}


/* VERY IMPORTANT */

.contact-form form {
    display: flex !important;

    flex-direction: column !important;

    width: 100%;

    gap: 0;
}


.contact-form label {
    display: block;

    width: 100%;

    font-weight: 600;

    color: #273b55;

    margin-top: 15px;
    margin-bottom: 7px;
}


/* INPUTS */

.contact-form input,
.contact-form select,
.contact-form textarea {

    display: block !important;

    width: 100% !important;

    max-width: 100% !important;

    min-height: 46px;

    padding: 11px 13px;

    border: 1px solid #cbd2db;

    border-radius: 3px;

    background: #ffffff;

    color: #25344a;

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 15px;

    outline: none;
}


.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}


/* FOCUS */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    border-color: #c99742;

    box-shadow:
        0 0 0 2px rgba(201,151,66,.12);
}


/* BUTTON */

.contact-form button {
    display: inline-block;

    width: auto;

    align-self: flex-start;

    margin-top: 25px;

    padding: 14px 32px;

    cursor: pointer;

    border: none;
}


/* MESSAGES */

.success-message {
    background: #edf7ef;

    border-left: 4px solid #5b9a67;

    padding: 15px;

    margin-bottom: 20px;

    color: #315a38;
}

.error-message {
    background: #fff0f0;

    border-left: 4px solid #b85b5b;

    padding: 15px;

    margin-bottom: 20px;

    color: #843c3c;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 800px) {

    .page-header {
        min-height: 220px;
    }

    .page-header h1 {
        font-size: 37px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}