/* ===========================
   RESET & BASE STYLES
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-green: #1a4d3e;
    --light-green: #2a6b56;
    --muted-white: #f8f6f3;
    --warm-gold: #c9a961;
    --text-dark: #2a2a2a;
    --text-light: #666;
    --bg-light: #fafaf8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--muted-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===========================
   CONTAINER & UTILITIES
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--deep-green);
    margin-bottom: 3rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

/* ===========================
   NAVIGATION - APPLE STYLE STICKY
=========================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 77, 62, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(26, 77, 62, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--muted-white);
    letter-spacing: 0.3em;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--warm-gold);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--muted-white);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--warm-gold);
}

.cta-btn {
    background: var(--warm-gold);
    color: var(--deep-green);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn::after {
    display: none;
}

.cta-btn:hover {
    background: #d4b56f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--muted-white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-green) 0%, #0f3028 100%);
    color: var(--muted-white);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-animation {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(201, 169, 97, 0.03) 50px,
            rgba(201, 169, 97, 0.03) 100px
        );
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero .tagline {
    font-size: 1rem;
    color: var(--warm-gold);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
}

.hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-primary {
    background: var(--warm-gold);
    color: var(--deep-green);
}

.btn-primary:hover {
    background: #d4b56f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    border: 2px solid var(--warm-gold);
    color: var(--muted-white);
}

.btn-secondary:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateY(-3px);
}

.btn-primary-large {
    padding: 1.2rem 3rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--warm-gold);
    color: var(--deep-green);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-primary-large:hover {
    background: #d4b56f;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.5);
}

/* ===========================
   PAGE HEADER
=========================== */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--light-green) 100%);
    color: var(--muted-white);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   FEATURES SECTION
=========================== */
.features {
    padding: 6rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.03), rgba(42, 107, 86, 0.05));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    color: var(--warm-gold);
    font-weight: 600;
    transition: color 0.3s;
}

.feature-link:hover {
    color: var(--deep-green);
}

/* ===========================
   STATS SECTION
=========================== */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--deep-green), var(--light-green));
    color: var(--muted-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--warm-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-green), #0f3028);
    color: var(--muted-white);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--muted-white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-box {
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.05), rgba(42, 107, 86, 0.08));
    padding: 3rem;
    border-radius: 16px;
    border-left: 4px solid var(--warm-gold);
}

.philosophy-box h3 {
    font-size: 2rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
}

.philosophy-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-box .highlight {
    font-weight: 600;
    color: var(--deep-green);
}

/* ===========================
   VALUES SECTION
=========================== */
.values-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   TEAM SECTION
=========================== */
.team-section {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-photo {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.team-card h4 {
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--warm-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===========================
   SERVICES PAGE
=========================== */
.services-filter {
    padding: 2rem 0;
    background: var(--bg-light);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    border: 2px solid var(--deep-green);
    background: white;
    color: var(--deep-green);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--deep-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 77, 62, 0.3);
}

.services-section {
    padding: 4rem 0 6rem;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border-top: 4px solid var(--warm-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-badge {
    display: inline-block;
    background: rgba(26, 77, 62, 0.1);
    color: var(--deep-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--warm-gold);
    font-size: 1.3rem;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--warm-gold);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--deep-green);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-btn:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 77, 62, 0.3);
}

/* ===========================
   GALLERY PAGE
=========================== */
.gallery-section {
    padding: 4rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.gallery-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.gallery-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Gradients */
.gradient-emerald {
    background: linear-gradient(135deg, #065f46, #047857);
}

.gradient-teal {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.gradient-green {
    background: linear-gradient(135deg, #166534, #22c55e);
}

.gradient-amber {
    background: linear-gradient(135deg, #b45309, #f59e0b);
}

.gradient-orange {
    background: linear-gradient(135deg, #c2410c, #f97316);
}

.gradient-red {
    background: linear-gradient(135deg, #991b1b, #dc2626);
}

.gradient-purple {
    background: linear-gradient(135deg, #6b21a8, #9333ea);
}

.gradient-indigo {
    background: linear-gradient(135deg, #4338ca, #6366f1);
}

.gradient-blue {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.gallery-note {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.gallery-note p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tag-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    color: var(--deep-green);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(26, 77, 62, 0.2);
}

/* ===========================
   VIDEO SECTION
=========================== */
.video-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--deep-green), var(--light-green));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--deep-green), #0f3028);
    color: var(--muted-white);
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(26, 77, 62, 0.2);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1.2rem 3rem;
    background: var(--warm-gold);
    color: var(--deep-green);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: #d4b56f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--warm-gold);
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--deep-green);
}

.quick-response-box {
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.05), rgba(42, 107, 86, 0.08));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--warm-gold);
}

.quick-response-box h4 {
    color: var(--deep-green);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.quick-response-box p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===========================
   MAP SECTION
=========================== */
.map-section {
    background: var(--bg-light);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
}

.map-placeholder p:first-child {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 1rem;
    font-weight: 600;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: #0f3028;
    color: var(--muted-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(248, 246, 243, 0.7);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--warm-gold);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul li {
    color: rgba(248, 246, 243, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a {
    transition: color 0.3s;
}

.footer-col ul li:hover,
.footer-col ul li a:hover {
    color: var(--warm-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 246, 243, 0.1);
}

.footer-bottom p {
    color: rgba(248, 246, 243, 0.5);
    font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 77, 62, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Page Header */
    .page-header {
        padding: 8rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    /* Grids */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
    }

    .features,
    .stats-section,
    .cta-section,
    .about-section,
    .values-section,
    .team-section,
    .services-section,
    .gallery-section,
    .contact-section {
        padding: 3rem 0;
    }

    /* Filter Buttons */
    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Contact Form */
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .tagline {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   AOS (Animate On Scroll) Fallback
=========================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===========================
   SCROLL TO TOP BUTTON (Optional)
=========================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--warm-gold);
    color: var(--deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #d4b56f;
    transform: translateY(-5px);
}

/* ===========================
   LOADING ANIMATIONS
=========================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}