/* --- Base & Fonts --- */
:root {
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --color-primary: #1e3c72;
    --color-secondary: #2a5298;
    --color-accent: #ff6b35;
    --color-accent-dark: #e05a2d;
    --color-gold: #ffd700;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg-light: #f8f9fa;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--color-text);
    overflow-x: hidden;
    background: #ffffff;
}
/* Lock body scroll when mobile menu is open */
body.mobile-menu-active {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 60px 20px;
}
.section-title {
    text-align: center; 
    font-size: 2.5rem; 
    color: var(--color-primary); 
    margin-bottom: 15px;
    font-weight: 700;
}
.section-subtitle {
    text-align: center; 
    color: var(--color-text-light); 
    margin-bottom: 50px; 
    font-size: 1.1rem;
}

/* --- Header --- */
.header {
    background: #ffffff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* UPDATED: Header Logo H1 for Icon */
.header-logo h1 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* NEW: Icon Style */
.header-logo h1 i {
    color: var(--color-accent);
    font-size: 1.3rem;
}
.header-logo p {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 600;
    margin: 0;
    padding-left: 28px; /* Align with text, accounts for icon + gap */
}
.header-nav {
    display: flex;
    gap: 20px;
}
.header-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}
.header-nav a:hover, .header-nav a.active {
    color: var(--color-accent);
}

/* --- NEW: Hamburger Menu Button --- */
.hamburger-btn {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--color-primary);
    z-index: 1010; /* Above nav */
}

/* --- Highlight Bar --- */
.highlight-bar {
    background: var(--color-gold);
    color: var(--color-primary);
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}
.highlight-bar .blink {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('assets/hero-bg-updated.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white; /* Override h1 color */
}
.hero-text .tagline {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-gold);
    font-weight: 600;
}
.hero-text .hero-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}
.hero-text .hero-features li {
    margin: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-weight: 500;
}
.hero-text .hero-features .icon {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: var(--color-gold);
}
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.badge {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}
.badge-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-gold);
    display: block;
    font-family: var(--font-primary);
}
.badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- Form --- */
.hero-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-top: 5px solid var(--color-accent);
}
.hero-form h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-align: center;
}
.hero-form .form-subtitle {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: center;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: var(--font-secondary);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
}
.iti {
    width: 100%;
}
.iti__selected-dial-code {
    color: #494949;
}
.cta-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}
.cta-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.form-note {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 10px;
    text-align: center;
}

/* --- About Builder Section --- */
.about-builder {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}
.builder-logo {
    text-align: center;
}
.builder-logo img {
    max-width: 250px;
    border-radius: 10px;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.builder-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.builder-info p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}
.builder-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
}
.stat-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* --- Investment Highlights --- */
.highlights-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px;
}
.highlight-card {
    background: white; 
    padding: 25px; 
    border-left: 5px solid var(--color-accent); 
    border-radius: 8px; 
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s; /* ADDED Animation */
}
/* ADDED Animation */
.highlight-card:hover {
    transform: translateY(-5px);
}
.highlight-card h3 {
    color: var(--color-accent); 
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.highlight-card .value {
    font-size: 1.8rem; 
    font-weight: bold; 
    color: var(--color-primary);
}
.highlight-card .subtext {
    color: var(--color-text-light); 
    margin-top: 5px;
    font-size: 0.9rem;
}

/* --- Key Highlights Section --- */
.key-highlights-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    margin-bottom: 50px;
}
.key-highlight-card {
    background: white; 
    padding: 30px; 
    border-radius: 12px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
    text-align: center;
    transition: transform 0.3s;
}
.key-highlight-card:hover {
    transform: translateY(-5px);
}
.key-highlight-card .icon {
    font-size: 3rem; 
    margin-bottom: 15px;
    color: var(--color-primary);
}
.key-highlight-card h3 {
    color: var(--color-primary); 
    margin-bottom: 10px;
}
.key-highlight-card p {
    color: var(--color-text-light); 
    font-size: 0.9rem;
}

/* --- NEW SECTION: Why Book With Us (for Google Ads Policy) --- */
.why-book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.why-book-card {
    background: #fff5f2;
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}
.why-book-card .icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 15px;
}
.why-book-card h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}
.why-book-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}


/* --- Carpet Area --- */
.carpet-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px;
}
.carpet-card {
    border: 3px solid var(--color-primary); 
    border-radius: 12px; 
    padding: 30px; 
    text-align: center; 
    transition: transform 0.3s;
    background: white;
}
.carpet-card.popular {
    border-color: var(--color-accent);
    transform: scale(1.05); 
    box-shadow: 0 10px 30px rgba(255,107,53,0.2);
}
.carpet-card .badge {
    background: var(--color-accent); 
    color: white; 
    padding: 5px 15px; 
    border-radius: 20px; 
    display: inline-block; 
    margin-bottom: 10px; 
    font-size: 0.85rem; 
    font-weight: bold;
}
.carpet-card h3 {
    color: var(--color-primary); 
    font-size: 1.5rem; 
    margin-bottom: 15px;
}
.carpet-card .value {
    font-size: 2.5rem; 
    font-weight: bold; 
    color: var(--color-accent); 
    margin: 15px 0;
    font-family: var(--font-primary);
}
.carpet-card .subtext {
    color: var(--color-text-light); 
    margin-bottom: 10px;
}
.carpet-card .ideal-box {
    background: #f0f7ff; 
    padding: 15px; 
    border-radius: 8px; 
    margin-top: 20px;
}
.carpet-card.popular .ideal-box {
    background: #fff5f2;
}
.carpet-card .ideal-box .ideal-title {
    color: var(--color-primary); 
    font-weight: 600;
    margin: 0;
}
.carpet-card .ideal-box .ideal-desc {
    color: var(--color-text-light); 
    font-size: 0.9rem;
    margin: 0;
}
.carpet-cta {
    text-align: center; 
    margin-top: 40px;
}
.carpet-cta .cta-button {
    padding: 18px 40px; 
    border-radius: 30px; 
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(255,107,53,0.3);
}

/* --- UPDATED: Gallery (Desktop Grid) --- */
.gallery-wrapper {
    overflow: hidden; /* Hide overflow by default */
}
.gallery-grid {
    /* This is the default desktop view */
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px;
}
.gallery-item {
    position: relative; 
    overflow: hidden; 
    border-radius: 12px; 
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item .overlay {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 20px 20px;
    z-index: 2;
    color: white;
}
.gallery-item .overlay h3 {
    font-size: 1.5rem; 
    margin-bottom: 5px;
    color: white;
}
.gallery-item .overlay p {
    font-size: 0.9rem; 
    opacity: 0.9;
    margin: 0;
}

/* --- UPDATED: Amenities (Auto-Scroll Marquee) --- */
.amenities-wrapper {
    overflow: hidden;
    position: relative;
    /* Gradient fade effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}
.amenities-grid {
    display: flex;
    gap: 20px;
    width: max-content; /* Important for animation */
    animation: marquee 30s linear infinite;
}
.amenities-wrapper:hover .amenities-grid {
    animation-play-state: paused;
}
.amenity-item {
    flex-shrink: 0; /* Prevent shrinking */
    width: 220px; /* Fixed width */
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.amenity-item:hover {
    transform: translateY(-5px);
}
.amenity-item .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--color-accent);
}
.amenity-item h4 {
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 1rem;
}
.amenity-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}
/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* --- Location --- */
.location-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px;
}
.location-card {
    background: white; 
    padding: 30px; 
    border-radius: 12px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.location-card h3 {
    color: var(--color-accent); 
    margin-bottom: 20px; 
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.location-card ul {
    list-style: none; 
    color: var(--color-text-light);
}
.location-card li {
    padding: 8px 0; 
    border-bottom: 1px solid #f0f0f0;
}
.location-card li:last-child {
    border-bottom: none;
}
.location-card strong {
    color: var(--color-primary);
}

/* --- Final CTA --- */
.final-cta {
    padding: 80px 20px; 
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); 
    color: white;
}
.final-cta-content {
    max-width: 700px; 
    margin: 0 auto; 
    text-align: center;
}
.final-cta-content h2 {
    font-size: 2.8rem; 
    margin-bottom: 20px;
    color: white;
}
.final-cta-content p {
    font-size: 1.2rem; 
    margin-bottom: 30px; 
    opacity: 0.95;
}
.final-cta-content .hero-form {
    border-top-color: var(--color-gold);
}

/* --- Footer --- */
.footer {
    background: #1e3c72; 
    color: white; 
    padding: 60px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 5px;
}
.footer-brand p {
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.footer-brand .disclaimer {
    font-size: 0.8rem;
    color: #d1d5db;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}
.footer-brand .disclaimer-strong {
    font-size: 0.8rem;
    color: #d1d5db;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 10px;
    border-top: 1px solid #374151;
    padding-top: 10px;
}

.footer-links h4 {
    color: var(--color-gold); 
    margin-bottom: 15px; 
    font-size: 1.1rem; 
    font-weight: 700;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: #d1d5db; 
    text-decoration: none; 
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.footer-bottom {
    border-top: 1px solid #374151; 
    padding-top: 30px; 
    margin-top: 30px;
    text-align: center;
}
.footer-bottom p {
    color: #9ca3af; 
    font-size: 0.9rem; 
    margin: 0;
    margin-bottom: 10px;
}
.footer-bottom-links {
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
    font-size: 0.9rem;
}
.footer-bottom-links a {
    color: #9ca3af; 
    text-decoration: none;
}
.footer-bottom-links a:hover {
    text-decoration: underline;
}
.footer-bottom-links span {
    color: #4b5563;
}

/* --- Modals --- */
.modal {
    display: none; 
    position: fixed; 
    top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(0,0,0,0.8); 
    z-index: 9999; 
    align-items: center; 
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.active {
    display: flex;
    opacity: 1;
}
.modal-content {
    background: white; 
    padding: 40px; 
    border-radius: 15px; 
    max-width: 500px; 
    width: 90%;
    margin: 20px; 
    position: relative; 
    animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.modal-close {
    position: absolute; 
    top: 15px; right: 15px; 
    background: none; 
    border: none; 
    font-size: 2rem; 
    cursor: pointer; 
    color: #999;
    transition: transform 0.3s;
}
.modal-close:hover {
    transform: scale(1.1) rotate(90deg);
}
.modal-header {
    text-align: center;
}
.modal-header .icon {
    font-size: 4rem; 
    margin-bottom: 20px;
    color: var(--color-accent);
}
.modal-header h3 {
    color: var(--color-accent); 
    font-size: 2rem; 
    margin-bottom: 15px;
}
.modal-header p {
    color: var(--color-text-light); 
    font-size: 1.1rem; 
    margin-bottom: 25px;
}
.modal-list {
    text-align: left; 
    color: var(--color-text); 
    margin-bottom: 25px; 
    list-style: none; 
    padding-left: 0;
}
.modal-list li {
    padding: 8px 0; 
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}
.modal-list li i {
    color: var(--color-primary);
    margin-right: 10px;
}
.modal-note {
    font-size: 0.75rem; 
    color: #999; 
    margin-top: 12px;
    text-align: center;
}

/* --- NEW: Sticky Mobile CTA Bar --- */
.mobile-cta-bar {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 998;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
}
.mobile-cta-content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.mobile-cta-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mobile-cta-btn.primary {
    background: var(--color-accent);
    color: white;
}
.mobile-cta-btn.secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}


/* --- Responsive --- */
@media (max-width: 900px) {
    /* --- UPDATED: Mobile Menu --- */
    .hamburger-btn {
        display: block;
    }
    .header-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 100%;
        height: 100%;
        background: white;
        z-index: 1005;
        padding-top: 100px;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease-in-out;
    }
    .header-nav.active {
        right: 0; /* Slide in */
    }
    .header-nav a {
        font-size: 1.5rem;
        color: var(--color-primary);
    }
    .header-nav a:hover, .header-nav a.active {
        color: var(--color-accent);
    }
    
    .hero-content { grid-template-columns: 1fr; }
    .hero-text { order: 2; text-align: center; }
    .hero-form { order: 1; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text .hero-features { display: inline-block; text-align: left; }
    .trust-badges { justify-content: center; }
    .about-builder { grid-template-columns: 1fr; }
    .builder-logo img { max-width: 200px; }
    .builder-stats { justify-content: center; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .header-content { flex-direction: row; } /* Keep logo and hamburger on one line */
    .header-logo h1 { font-size: 1.2rem; } /* Adjust font size for icon */
    .header-logo p { display: none; } /* Hide subtitle on small screens */

    .footer-content { grid-template-columns: 1fr; text-align: center; }

    /* Show mobile sticky bar */
    .mobile-cta-bar {
        display: block;
    }
    /* Add padding to body to prevent content from being hidden behind sticky bar */
    body {
        padding-bottom: 70px;
    }
    /* Hide final CTA form, let the sticky button handle it */
    .final-cta {
        padding-bottom: 20px;
    }
    .final-cta-content .hero-form {
        display: none;
    }
    .final-cta-content p {
        margin-bottom: 0;
    }

    /* --- UPDATED: Gallery Scroll Fix --- */
    .gallery-wrapper {
        overflow-x: auto; /* Allow wrapper to scroll */
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar */
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .gallery-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .gallery-grid {
        display: flex; /* Change from grid to flex */
        width: max-content; /* Allow grid to expand horizontally */
        padding: 10px 0;
        /* Remove grid properties */
        grid-template-columns: none; 
    }
    .gallery-item {
        flex-shrink: 0; /* Prevent items from shrinking */
        width: 280px; /* Set fixed width for mobile cards */
    }
}

/* --- ADD THIS TO YOUR common.css FILE --- */

/* --- Styles for Static Content Pages (About, Privacy, etc.) --- */
.static-page-hero {
    background: var(--color-bg-light);
    padding: 60px 20px;
    text-align: center;
}
.static-page-hero h1 {
    font-size: 2.8rem;
    color: var(--color-primary);
}
.static-page-content {
    padding: 60px 0;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--color-text-light);
}
.static-page-content .container {
    max-width: 900px; /* Tighter container for better readability */
}
.static-page-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--color-primary);
}
.static-page-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--color-primary);
}
.static-page-content p {
    margin-bottom: 20px;
}
.static-page-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}
.static-page-content li {
    margin-bottom: 10px;
}
.static-page-content a {
    color: var(--color-accent);
    text-decoration: none;
}
.static-page-content a:hover {
    text-decoration: underline;
}

/* --- Contact Page Specific --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.contact-details .contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-details .icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    width: 30px;
    text-align: center;
    padding-top: 5px;
}
.contact-details h3 {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    color: var(--color-primary);
}
.contact-details p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}
.contact-form h2 {
    margin: 0 0 20px 0;
    text-align: left;
}
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}