/* ============================================================
   YOUR COMPANY — V2 MODERN
   Dark Forest Green + Gold + White | Contemporary Premium
   ============================================================ */

:root {
    --green-dark: #1B3A2D;
    --green-deep: #132E24;
    --green-mid: #2D5A45;
    --gold: #C4A35A;
    --gold-light: #D4B86A;
    --gold-muted: #A08840;
    --white: #FFFFFF;
    --off-white: #F9F7F4;
    --cream: #FAF8F5;
    --gray-100: #F5F3F0;
    --gray-200: #E8E5E0;
    --gray-300: #D4D0CB;
    --gray-400: #9A9590;
    --gray-500: #736E6A;
    --gray-600: #5C5855;
    --gray-700: #3D3A37;
    --gray-800: #2A2725;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --radius: 6px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   BUTTONS — Larger, more modern
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}
.btn--primary {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 4px 16px rgba(196,163,90,0.3);
}
.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,163,90,0.4);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.8);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}
.btn--dark {
    background: var(--green-dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(27,58,45,0.2);
}
.btn--dark:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
}
.btn--gold {
    background: var(--gold);
    color: var(--green-dark);
    padding: 18px 36px;
    font-size: 13px;
    box-shadow: 0 4px 16px rgba(196,163,90,0.3);
}
.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,163,90,0.4);
}

/* ============================================================
   HEADER — Modern, sleek
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--green-dark);
    transition: all 0.4s ease;
}
.header.scrolled {
    background: rgba(19, 46, 36, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.header__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.header__logo-text { display: flex; flex-direction: column; }
.header__logo-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2.5px;
    color: var(--gold);
}
.header__logo-tagline {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 1.8px;
    color: rgba(196,163,90,0.7);
    margin-top: 3px;
}
.header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}
.header__nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.3s;
    padding: 6px 0;
    position: relative;
}
.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.header__nav-link:hover,
.header__nav-link.active {
    color: var(--gold);
}
.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}
.header__cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: var(--gold);
    text-decoration: none;
    border: 1.5px solid var(--gold);
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: all 0.3s;
}
.header__cta:hover {
    background: var(--gold);
    color: var(--green-dark);
}
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.header__mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: 0.3s;
}
.header__mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.header__mobile-toggle.active span:nth-child(2) { opacity: 0; }
.header__mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================================
   HERO — Full viewport, modern gradient
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1920&q=85') center/cover no-repeat;
    transform: scale(1.02);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.08); }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19,46,36,0.92) 0%, rgba(27,58,45,0.7) 40%, rgba(27,58,45,0.3) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 48px;
    padding-top: 78px;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 0;
}
.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 400;
    color: var(--gold);
    line-height: 1.15;
    margin-top: 8px;
    margin-bottom: 28px;
}
.hero__desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}
.hero__buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ============================================================
   SECTION HEADERS — Larger
   ============================================================ */
.section-head {
    text-align: center;
    margin-bottom: 64px;
}
.section-head__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}
.section-head__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.2;
}

/* ============================================================
   SERVICES — Larger icons, bigger text, subtle hover
   ============================================================ */
.services {
    padding: 110px 0 90px;
    background: var(--white);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px 32px;
}
.services__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 24px 12px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.services__item:hover {
    background: var(--cream);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.services__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.services__icon svg { width: 56px; height: 56px; }
.services__name {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.4;
}

/* ============================================================
   WHY CHOOSE US — Bigger, more spacious
   ============================================================ */
.why {
    padding: 72px 0;
    background: var(--cream);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.why__title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 48px;
}
.why__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}
.why__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 20px 8px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.why__item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.why__icon {
    width: 60px;
    height: 60px;
    color: var(--gold);
}
.why__icon svg { width: 100%; height: 100%; }
.why__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.4;
}

/* ============================================================
   DUAL SECTION (Process + About) — Modern
   ============================================================ */
.dual {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    min-height: 560px;
}
.dual__image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
}
.dual__image--left {
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=800&q=80');
}
.dual__image--right {
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&q=80');
}
.dual__center {
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    background: var(--off-white);
}
.dual__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.dual__heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.3;
    margin-bottom: 20px;
}
.dual__text {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 14px;
}
.dual__signature {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--gold-muted);
    margin-top: 12px;
}

/* ============================================================
   ABOUT DETAIL
   ============================================================ */
.about-detail {
    padding: 100px 0;
    background: var(--white);
}
.about-detail__content {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}
.about-detail__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 28px;
    line-height: 1.3;
}
.about-detail__text {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.9;
    margin-bottom: 18px;
}
.about-detail__mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 820px;
    margin: 0 auto;
}
.about-detail__card {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 32px 28px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    transition: all var(--transition);
}
.about-detail__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.about-detail__card h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 14px;
}
.about-detail__card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ============================================================
   TESTIMONIAL + CTA — Modern rounded cards
   ============================================================ */
.testimonial {
    padding: 100px 0;
    background: var(--off-white);
}
.testimonial__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.testimonial__quote {
    background: var(--white);
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial__quotemark {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 20px;
}
.testimonial__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 20px;
}
.testimonial__text {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial__author {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}
.testimonial__stars {
    color: var(--gold);
    font-size: 18px;
    margin-top: 10px;
    letter-spacing: 3px;
}
.testimonial__dots {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.testimonial__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: background 0.3s;
}
.testimonial__dot.active { background: var(--gold); }
.testimonial__image {
    background: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=800&q=80') center/cover no-repeat;
    min-height: 340px;
}
.testimonial__cta {
    background: var(--green-dark);
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
}
.testimonial__cta-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

/* ============================================================
   FOOTER — Modern with more space
   ============================================================ */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 80px 0 0;
}
.footer__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer__logo-name {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2.5px;
    color: var(--gold);
    display: block;
}
.footer__logo-tagline {
    font-size: 9px;
    letter-spacing: 1.8px;
    color: rgba(196,163,90,0.7);
    display: block;
    margin-top: 3px;
}
.footer__links h4,
.footer__contact h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer__links a {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s;
}
.footer__links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}
.footer__contact p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
}
.footer__icon {
    margin-right: 10px;
    color: var(--gold);
}
.footer__social { margin-top: 24px; }
.footer__social h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}
.footer__social-icons {
    display: flex;
    gap: 14px;
}
.footer__social-icons a {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}
.footer__social-icons a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.footer__bottom {
    text-align: center;
    padding: 24px 32px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(3, 1fr); gap: 36px 24px; }
    .why__grid { grid-template-columns: repeat(3, 1fr); }
    .dual { grid-template-columns: 1fr; }
    .dual__left, .dual__right { display: none; }
    .dual__center { padding: 56px 32px; }
    .testimonial__grid { grid-template-columns: 1fr; }
    .about-detail__mission { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header__nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--green-dark);
        flex-direction: column;
        padding: 28px 36px;
        gap: 18px;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }
    .header__nav.open { display: flex; }
    .header__cta { display: none; }
    .header__mobile-toggle { display: flex; }
    .services__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .why__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer__container { grid-template-columns: 1fr 1fr; gap: 36px; }
    .hero__content { padding: 0 28px; padding-top: 78px; }
    .hero__title { font-size: 40px; }
    .hero__subtitle { font-size: 36px; }
    .dual__center { padding: 44px 24px; gap: 40px; }
    .dual__heading { font-size: 26px; }
}
@media (max-width: 480px) {
    .services__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
    .why__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer__container { grid-template-columns: 1fr; gap: 32px; }
    .hero__buttons { flex-direction: column; align-items: flex-start; }
    .hero__desc { font-size: 15px; }
    .about-detail__title { font-size: 28px; }
}
