:root {
    --color-primary: #183D2A;
    /* Forest Green */
    --color-primary-light: #2C5A42;
    --color-accent: #C9A86A;
    /* Gold */
    --color-accent-hover: #DBC08C;
    --color-bg: #FDFBF7;
    /* Cream */
    --color-surface: #FFFFFF;
    --color-text: #2D3748;
    --color-text-light: #718096;

    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

.text-gold {
    color: var(--color-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(24, 61, 42, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Top Bar */
.top-bar {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    padding: 8px 0;
    display: none;
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.logo-icon {
    color: var(--color-accent);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

.nav-link {
    font-size: 15px;
    color: var(--color-text-light);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
}

@media (max-width: 1023px) {
    .hidden-mobile {
        display: none;
    }
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 24px;
    background-color: var(--color-surface);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 18px;
    color: var(--color-primary);
}

.mobile-btn {
    margin-top: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(24, 61, 42, 0.95) 0%, rgba(24, 61, 42, 0.7) 50%, rgba(24, 61, 42, 0.2) 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: scaleImg 20s infinite alternate linear;
}

@keyframes scaleImg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    display: block;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    color: white;
    margin-bottom: 24px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section Common */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-inline: auto;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-light);
    font-size: 18px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--color-surface);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.service-img {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-title {
    font-size: 22px;
    margin-bottom: 8px;
}

/* Stats */
.stats-section {
    background-color: var(--color-surface);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    display: flex;
    align-items: baseline;
    gap: 16px;
    background: var(--color-bg);
    padding: 32px 24px;
    border-radius: 16px;
}

.stat-number {
    font-size: 48px;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    background: var(--color-surface);
    border-radius: 24px;
    padding: 16px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    background: #E8F0EB;
}

.team-img {
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 20px;
}

.team-role {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* Inner Page Header */
.page-header {
    padding: 120px 0 80px;
    background-color: var(--color-primary);
    color: white;
    text-align: center;
}

.page-title {
    font-size: clamp(40px, 5vw, 64px);
    color: white;
}

/* Standard Content Format */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.content-wrapper p {
    margin-bottom: 24px;
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.logo-footer {
    color: white;
    margin-bottom: 24px;
}

.footer h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.footer a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQs */
.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(24, 61, 42, 0.3);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 500;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--color-text-light);
    font-size: 15px;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-toggle {
    transition: transform 0.3s ease;
    color: var(--color-text-light);
    font-size: 20px;
    line-height: 1;
}

/* Additional Hover Effects */
a:not(.btn):not(.nav-link):hover {
    opacity: 0.8;
}

/* Services List Grid */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
}

.services-list-grid>div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
}

@media (max-width: 768px) {
    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .services-list-grid>div {
        flex-direction: column !important;
    }

    .services-list-grid>div>div:first-child {
        flex: none !important;
        max-width: 100% !important;
        height: 200px;
    }
}