/* ===== CSS VARIABLES ===== */
:root {
    --primary-dark: #2c2c2c;
    --primary-light: #f9f9f9;
    --accent-gold: #d4af37;
    --accent-gold-dark: #b8941f;
    --text-dark: #3a3a3a;
    --text-light: #777777;
    --text-muted: #999999;
    --border-color: #e8e8e8;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 16px 48px rgba(0, 0, 0, 0.12);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 50%;
    --muted-beige: #f5f2eb;
    --muted-taupe: #e8e4dd;
    --muted-sage: #eef0e6;
    --muted-slate: #f0f2f5;
    
    /* Typography Variables */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', serif;
    
    /* Font Sizes - Modular Scale (1.25 ratio) */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 2.8125rem; /* 45px */
    --text-6xl: 3.5rem;    /* 56px */
    --text-7xl: 4rem;      /* 64px */
    
    /* Line Heights */
    --leading-tight: 1.1;
    --leading-snug: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Letter Spacing */
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    
    /* Font Weights */
    --weight-light: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for rem calculations */
    scroll-padding-top: 80px; /* Account for fixed navbar when scrolling to anchors */
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    line-height: var(--leading-normal);
    color: var(--text-dark);
    background-color: var(--primary-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: var(--weight-bold);
    line-height: var(--leading-tight);
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: var(--text-6xl);
    letter-spacing: var(--tracking-tight);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: var(--text-5xl);
    letter-spacing: var(--tracking-tight);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: var(--text-3xl);
    letter-spacing: var(--tracking-normal);
    margin-bottom: 1rem;
}

h4 {
    font-size: var(--text-xl);
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-normal);
    margin-bottom: 0.75rem;
}

h5 {
    font-size: var(--text-lg);
    font-family: var(--font-primary);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-normal);
    margin-bottom: 0.5rem;
}

h6 {
    font-size: var(--text-base);
    font-family: var(--font-primary);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
    line-height: var(--leading-relaxed);
}

small, .text-small {
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

.text-xs {
    font-size: var(--text-xs);
    line-height: var(--leading-normal);
}

.text-lg {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
}

.text-xl {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
}

.text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--leading-snug);
}

.text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--leading-snug);
}

.text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--leading-tight);
}

.text-5xl {
    font-size: var(--text-5xl);
    line-height: var(--leading-tight);
}

.text-6xl {
    font-size: var(--text-6xl);
    line-height: var(--leading-tight);
}

.text-7xl {
    font-size: var(--text-7xl);
    line-height: var(--leading-tight);
}

/* Font Weight Utilities */
.font-light {
    font-weight: var(--weight-light);
}

.font-normal {
    font-weight: var(--weight-normal);
}

.font-medium {
    font-weight: var(--weight-medium);
}

.font-semibold {
    font-weight: var(--weight-semibold);
}

.font-bold {
    font-weight: var(--weight-bold);
}

.font-extrabold {
    font-weight: var(--weight-extrabold);
}

/* Letter Spacing Utilities */
.tracking-tight {
    letter-spacing: var(--tracking-tight);
}

.tracking-normal {
    letter-spacing: var(--tracking-normal);
}

.tracking-wide {
    letter-spacing: var(--tracking-wide);
}

.tracking-wider {
    letter-spacing: var(--tracking-wider);
}

.tracking-widest {
    letter-spacing: var(--tracking-widest);
}

/* Line Height Utilities */
.leading-tight {
    line-height: var(--leading-tight);
}

.leading-snug {
    line-height: var(--leading-snug);
}

.leading-normal {
    line-height: var(--leading-normal);
}

.leading-relaxed {
    line-height: var(--leading-relaxed);
}

.leading-loose {
    line-height: var(--leading-loose);
}

/* Text Colors */
.text-primary {
    color: var(--primary-dark);
}

.text-secondary {
    color: var(--text-light);
}

.text-muted {
    color: var(--text-muted);
}

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

.text-light {
    color: var(--primary-light);
}

/* Text Alignment */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Text Transform */
.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.normal-case {
    text-transform: none;
}

/* Text Decoration */
.underline {
    text-decoration: underline;
}

.line-through {
    text-decoration: line-through;
}

.no-underline {
    text-decoration: none;
}

/* Lists */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: var(--leading-relaxed);
}

/* Links */
a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-gold-dark);
}

/* Blockquotes */
blockquote {
    font-family: var(--font-secondary);
    font-size: var(--text-xl);
    font-style: italic;
    line-height: var(--leading-relaxed);
    color: var(--text-light);
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Code */
code, pre {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: var(--text-sm);
}

pre {
    background-color: var(--muted-slate);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

code {
    background-color: var(--muted-slate);
    padding: 0.125rem 0.375rem;
    border-radius: var(--border-radius-sm);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: var(--text-5xl);
    font-weight: var(--weight-bold);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.section-subtitle {
    font-size: var(--text-xl);
    font-weight: var(--weight-normal);
    color: var(--text-light);
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--text-base);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    outline: none;
    letter-spacing: var(--tracking-wide);
}

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

.btn-primary:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
}

.btn-full {
    width: 100%;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--primary-light);
    padding: 5rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content .section-title {
    margin-bottom: 2rem;
}

.about-content p {
    font-size: var(--text-lg);
    color: var(--text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: 2rem;
}

.about-stats-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.about-image {
    flex: 1;
    max-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--accent-gold);
}

.stats {
    flex: 2;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: var(--text-5xl);
    font-weight: var(--weight-bold);
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: var(--leading-tight);
}

.stat-label {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--muted-slate);
    padding: 5rem 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.15);
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--text-dark);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: var(--text-4xl);
    color: var(--accent-gold);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: var(--font-secondary);
    opacity: 0.3;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--accent-gold);
}

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

.author-info {
    flex: 1;
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
    font-size: var(--text-sm);
}

.author-name {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--primary-dark);
    margin-bottom: 0.125rem;
    line-height: var(--leading-snug);
}

.author-role {
    font-size: var(--text-sm);
    color: var(--text-light);
    font-weight: var(--weight-normal);
    line-height: var(--leading-normal);
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--muted-beige) 0%, var(--primary-light) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: var(--text-5xl);
    font-weight: var(--weight-bold);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.cta-text {
    font-size: var(--text-xl);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo-text {
    background: linear-gradient(135deg, white 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: var(--text-2xl);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.95);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
}

.footer-column .contact-info {
    font-size: var(--text-sm);
    color: #ffffff !important; /* Force white color for maximum visibility */
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
    opacity: 1 !important; /* Ensure full opacity */
    font-weight: 500; /* Make it slightly bolder */
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: white;
    margin-bottom: 1.5rem;
    line-height: var(--leading-snug);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    font-weight: var(--weight-normal);
    text-decoration: none;
    transition: color var(--transition-fast);
    line-height: var(--leading-normal);
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links li {
    margin-bottom: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    color: white;
    font-size: var(--text-lg);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-info {
    font-size: var(--text-sm);
    color: #ffffff; /* Use solid white instead of rgba for better visibility */
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
}

.contact-info i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
    width: 16px;
}

/* Specific styling for contact info in footer */
.footer-column .contact-info {
    color: #ffffff;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    line-height: var(--leading-normal);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 5rem 0 6rem; /* Reduced top padding since main already has padding */
    background: linear-gradient(135deg, var(--muted-beige) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Add padding to main content to account for fixed navbar */
main {
    padding-top: 70px; /* Match navbar height */
}

/* Add responsive typography and spacing for hero section */
@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 4rem; /* Increased top padding for mobile navbar */
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem; /* Increased top padding for mobile navbar */
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0.01) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 25% 0);
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.hero-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.hero-image-container:hover .hero-image-real {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-image-overlay i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-image-overlay p {
    font-size: 1.1rem;
    font-weight: var(--weight-medium);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 250px;
    line-height: var(--leading-relaxed);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
    line-height: var(--leading-tight);
}

.hero-stat-label {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--muted-slate);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.01) 0%, rgba(44, 44, 44, 0.005) 100%);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

/* ===== CONTACT HEADER (Hero equivalent for contact page) ===== */
.contact-header {
    padding: 8rem 0 6rem; /* Similar to hero section padding */
    margin-top: 70px; /* Account for fixed navbar */
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--muted-beige) 0%, var(--primary-light) 100%);
}

.contact-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.contact-header .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Ensure footer contact info is always visible */
.footer-column .contact-info {
    font-size: var(--text-sm);
    color: #ffffff;
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
    font-weight: 500;
}

/* Mobile-specific adjustments for contact header */
@media (max-width: 768px) {
    .contact-header {
        padding: 9rem 0 4rem; /* Increased top padding for mobile navbar */
    }
    
    .contact-header .section-title {
        font-size: var(--text-4xl);
        margin-top: 0; /* Remove previous margin-top */
    }
    
    .contact-header .section-subtitle {
        font-size: var(--text-lg);
    }
    
    /* Ensure footer contact info remains visible on mobile */
    .footer-column .contact-info {
        font-size: var(--text-sm);
        color: #ffffff !important; /* Force white color for maximum visibility */
        opacity: 1 !important; /* Ensure full opacity */
        font-weight: 500; /* Make it slightly bolder */
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 8rem 0 3rem; /* Increased top padding for mobile navbar */
    }
    
    .contact-header .section-title {
        font-size: var(--text-3xl);
    }
    
    .contact-header .section-subtitle {
        font-size: var(--text-base);
    }
}

.contact-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.contact-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.contact-header .container {
    position: relative;
    z-index: 1;
}

.contact-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.contact-header .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.contact-form-section {
    padding: 4rem 0;
    background-color: var(--primary-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 2rem;
}

.contact-info-title {
    font-family: var(--font-secondary);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--primary-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-gold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-detail i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-detail h3 {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: var(--leading-snug);
}

.contact-detail p {
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: var(--leading-normal);
}

.contact-subtext {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: var(--weight-normal);
    margin-top: 0.25rem;
    line-height: var(--leading-normal);
}

.contact-note {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
}

.contact-note h3 {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: var(--leading-snug);
}

.contact-note p {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
}

.form-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.form-title {
    font-family: var(--font-secondary);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.form-subtitle {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: var(--leading-relaxed);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--primary-dark);
    line-height: var(--leading-normal);
}

.form-group label[for]::after {
    content: ' *';
    color: var(--accent-gold);
}

.form-group label[for]:not([required])::after {
    content: '';
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    color: var(--text-dark);
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: white;
    transition: all var(--transition-fast);
    line-height: var(--leading-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: var(--weight-normal);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: var(--leading-relaxed);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233a3a3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    flex-shrink: 0;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.checkbox-group label {
    font-weight: var(--weight-normal);
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: var(--leading-relaxed);
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.checkbox-group label a:hover {
    color: var(--accent-gold-dark);
}

/* High-Friction Confirmation Checkbox */
.confirmation-checkbox {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin: 1rem 0;
}

.confirmation-checkbox label {
    font-weight: var(--weight-medium);
    color: var(--text-dark);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.confirmation-checkbox input[type="checkbox"] {
    margin-top: 0.125rem;
}

/* CAPTCHA Styles */
.captcha-container {
    margin: 2rem 0;
}

.captcha-container label {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: block;
}

.captcha-placeholder {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
}

.captcha-image {
    position: relative;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #f0f2f5 0%, #e8e8e8 100%);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.captcha-text {
    font-family: 'Courier New', monospace;
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    letter-spacing: 0.5rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.captcha-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(44, 44, 44, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 100px 100px;
    opacity: 0.6;
    z-index: 1;
}

.captcha-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.captcha-input-group input {
    flex: 1;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    color: var(--text-dark);
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: white;
    transition: all var(--transition-fast);
    line-height: var(--leading-normal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.captcha-input-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.captcha-input-group input::placeholder {
    color: var(--text-muted);
    font-weight: var(--weight-normal);
    letter-spacing: normal;
    text-transform: none;
}

.captcha-refresh {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--accent-gold);
    font-size: var(--text-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.captcha-refresh:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    transform: rotate(90deg);
    border-color: rgba(212, 175, 55, 0.2);
}

.captcha-refresh:active {
    transform: rotate(180deg);
}

.captcha-note {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: var(--leading-normal);
    margin-top: 0.5rem;
    font-style: italic;
}

.error-message {
    font-size: var(--text-sm);
    color: #dc2626;
    font-weight: var(--weight-normal);
    margin-top: 0.25rem;
    line-height: var(--leading-normal);
    min-height: 1.25rem;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
    background-color: rgba(220, 38, 38, 0.02);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

#submitBtn {
    position: relative;
    padding: 1rem 2rem;
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
}

#submitBtn .loading-icon {
    display: none;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--text-lg);
}

#submitBtn.loading .btn-text {
    opacity: 0.7;
}

#submitBtn.loading .loading-icon {
    display: block;
}

.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    line-height: var(--leading-relaxed);
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(21, 128, 61, 0.1);
    color: #166534;
    border: 1px solid rgba(21, 128, 61, 0.2);
}

.form-message.error {
    display: block;
    background-color: rgba(220, 38, 38, 0.1);
    color: #991b1b;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* FAQ Section */
.faq {
    background-color: var(--muted-slate);
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.15);
}

.faq-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-full);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-gold);
}

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

.faq-question {
    font-family: var(--font-secondary);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-normal);
}

.faq-answer {
    font-size: var(--text-base);
    color: var(--text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
}

/* Contact Form Responsive Styles */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        position: static;
    }
    
    .form-container {
        padding: 2.5rem;
    }
    
    .form-title {
        font-size: var(--text-3xl);
    }
    
    .form-subtitle {
        font-size: var(--text-base);
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 6rem 0 3rem; /* Increased top padding to prevent navbar overlap */
        min-height: 40vh; /* Ensure enough height for the content */
    }
    
    .contact-header .section-title {
        margin-top: 0; /* Reset margin */
    }
    
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .contact-info-title {
        font-size: var(--text-2xl);
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .contact-detail i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .form-title {
        font-size: var(--text-2xl);
    }
    
    .form-subtitle {
        font-size: var(--text-base);
    }
    
    .contact-form {
        gap: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 1rem;
    }
    
    /* High-Friction Elements Responsive */
    .confirmation-checkbox {
        padding: 1.25rem;
    }
    
    .captcha-placeholder {
        padding: 1.25rem;
    }
    
    .captcha-image {
        height: 70px;
    }
    
    .captcha-text {
        font-size: 2rem;
        letter-spacing: 0.4rem;
    }
    
    .captcha-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .captcha-refresh {
        width: 100%;
        height: 45px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: var(--text-lg);
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 4rem 0 2rem;
    }
    
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info-title {
        font-size: var(--text-xl);
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: var(--text-xl);
    }
    
    .form-subtitle {
        font-size: var(--text-sm);
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-top: 0;
    }
    
    /* High-Friction Elements Mobile */
    .confirmation-checkbox {
        padding: 1rem;
    }
    
    .confirmation-checkbox label {
        font-size: var(--text-xs);
    }
    
    .captcha-placeholder {
        padding: 1rem;
    }
    
    .captcha-image {
        height: 60px;
    }
    
    .captcha-text {
        font-size: 1.5rem;
        letter-spacing: 0.3rem;
    }
    
    .captcha-input-group input {
        padding: 0.75rem 1rem;
        font-size: var(--text-sm);
    }
    
    .captcha-refresh {
        height: 40px;
        font-size: var(--text-base);
    }
    
    .captcha-note {
        font-size: 0.7rem;
    }
    
    #submitBtn {
        padding: 0.875rem 1.5rem;
        font-size: var(--text-base);
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: var(--text-base);
    }
    
    .faq-answer {
        font-size: var(--text-sm);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(212, 175, 55, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image-container {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(44, 44, 44, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card:hover .service-image-overlay {
    opacity: 1;
}

.service-image-overlay i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-title {
    font-family: var(--font-secondary);
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-normal);
}

.service-description {
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    color: var(--text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: var(--text-sm);
    font-weight: var(--weight-normal);
    line-height: var(--leading-normal);
}

.service-feature i {
    color: var(--accent-gold);
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

.service-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: var(--accent-gold);
    font-weight: var(--weight-semibold);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

.service-cta i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.service-cta:hover {
    color: var(--accent-gold-dark);
}

.service-cta:hover i {
    transform: translateX(5px);
}

/* Services Section Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: var(--text-xl);
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    .service-title {
        font-size: var(--text-lg);
    }
    
    .service-description {
        font-size: var(--text-sm);
    }
}

/* Hero Section Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: var(--text-6xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-xl);
    }
    
    .hero-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-placeholder {
        height: 300px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-title {
        font-size: var(--text-4xl);
    }
    
    .cta-text {
        font-size: var(--text-lg);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
    
    .about-content p {
        font-size: var(--text-base);
    }
    
    .about-stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .stats {
        gap: 2rem;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .stat {
        flex: 1;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: var(--text-4xl);
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: var(--text-base);
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-image {
        width: 80px;
        height: 80px;
    }
    
    .author-info {
        width: 100%;
    }
    
    .cta {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: var(--text-3xl);
    }
    
    .cta-text {
        font-size: var(--text-base);
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column h3 {
        margin-bottom: 1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-icon {
        width: 70px;
        height: 70px;
    }
    
    .faq-question {
        font-size: var(--text-lg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image-container {
        height: 250px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: var(--text-3xl);
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .about-stats-container {
        gap: 1.5rem;
    }
    
    .about-image {
        max-width: 200px;
    }
    
    .stats {
        gap: 1rem;
        flex-direction: column;
    }
    
    .stat {
        min-width: 100%;
    }
    
    .stat-number {
        font-size: var(--text-3xl);
    }
    
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .author-image {
        width: 70px;
        height: 70px;
    }
    
    .cta {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: var(--text-2xl);
    }
    
    .cta-text {
        font-size: var(--text-sm);
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .faq-icon {
        width: 60px;
        height: 60px;
    }
    
    .faq-question {
        font-size: var(--text-base);
    }
    
    .faq-answer {
        font-size: var(--text-sm);
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(249, 249, 249, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(232, 232, 232, 0.8);
    height: 70px; /* Fixed height for consistency */
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    z-index: 1002;
}

.logo-text {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link.active {
    color: var(--accent-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
    transform: scaleX(1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.contact-cta {
    background-color: var(--accent-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-left: 1rem;
}

.contact-cta:hover {
    background-color: var(--accent-gold-dark);
    color: white;
}

.contact-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.menu-toggle.active i {
    transform: rotate(90deg);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(249, 249, 249, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.08);
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        border-left: 1px solid rgba(232, 232, 232, 0.9);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: var(--text-xl);
        font-weight: var(--weight-medium);
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
    }
    
    .contact-cta {
        margin-left: 0;
        margin-top: 1rem;
        padding: 0.75rem 2rem;
        font-size: var(--text-lg);
        font-weight: var(--weight-semibold);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* Tablet Navigation Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: var(--text-sm);
    }
    
    .contact-cta {
        padding: 0.5rem 1.25rem;
        margin-left: 0.5rem;
        font-size: var(--text-sm);
    }
}
