/* 
   ANNUNCI EXCLUSIVE - Design System
   Luxury & Minimal Aesthetic
   Author: Antigravity AI
*/

:root {
    /* Color Palette - LIGHT LUXURY */
    --color-bg: #FFFFFF;
    --color-surface: #F9F9F9;
    --color-surface-hover: #F0F0F0;
    --color-accent: #D4AF37;
    /* Luxury Gold */
    --color-accent-dim: rgba(212, 175, 55, 0.1);
    --color-text: #1A1A1A;
    --color-text-dim: #666666;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Spacing & Transitions */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-surface-hover);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    transition: var(--transition);
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.playfair {
    font-family: var(--font-serif);
}

.logo-serif {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    /* White logo for top bar over video */
}

.logo-serif span {
    color: var(--color-accent);
    font-weight: 400;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(20, 20, 20, 1) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: opacity 0.5s ease;
}

.age-modal.hidden {
    display: none !important;
}

.age-modal-content {
    max-width: 500px;
    padding: 3rem;
    background: var(--color-surface);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.age-modal h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--color-black);
}

.age-modal p {
    margin-bottom: 2rem;
    color: var(--color-text-dim);
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.legal-disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Header Navigation */
.main-header {
    background: transparent;
    /* Transparent over video */
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: sticky;
}

.nav-links a {
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

.nav-right {
    display: flex;
    gap: 1.5rem;
}

.mobile-actions {
    display: none;
}

/* Buttons */
.btn-primary {
    background: var(--color-accent);
    color: var(--color-black);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

.btn-outline {
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-accent-dim);
}

.btn-login {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--color-accent-dim);
    border-color: var(--color-white);
}

/* Hero Section */
.hero {
    height: 100vh;
    /* Full screen height */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--color-accent);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Lighter overlay for white theme */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 5rem;
    /* Larger font for full screen */
    font-weight: 300;
    line-height: 1;
    /* Reduced line height */
    margin-bottom: 2.5rem;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.hero-content h2 strong {
    color: var(--color-accent);
    /* Luxury Gold */
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
    /* Reduced space below strong */
}

.hero-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0;
    white-space: nowrap;
    /* Ensure it stays on one line */
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
}

/* Hero Actions Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-hero {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 600;
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-group h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.filter-item label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--color-accent);
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-dim);
    cursor: pointer;
}

.custom-checkbox input {
    accent-color: var(--color-accent);
}

/* Grid Section */
.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.grid-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
}

.sort-options {
    font-size: 0.9rem;
    color: var(--color-text-dim);
}

.sort-options select {
    background: transparent;
    border: none;
    color: var(--color-accent);
    margin-left: 0.5rem;
    font-weight: 600;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Profile Card */
.profile-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.profile-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-badge.vip {
    background: var(--color-accent);
    color: #000;
}

.card-badge.verified {
    background: #2ecc71;
    color: #fff;
}

.card-status {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #000;
}

.status-online {
    background: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

.status-busy {
    background: #e74c3c;
}

.card-info {
    padding: 1.5rem;
}

.card-info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.card-info h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-white);
}

.location {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
    height: 3.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.price {
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1.1rem;
}

.btn-view {
    background: transparent;
    color: var(--color-text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 2px;
}

.btn-view:hover {
    color: var(--color-accent);
}

/* Footer */
.main-footer {
    background: #050505;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

.footer-brand p {
    max-width: 300px;
    margin-top: 1rem;
    color: var(--color-text-dim);
}

.footer-links h4,
.footer-legal h4 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: var(--color-white);
}

.footer-bottom {
    margin-top: 5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

/* Responsive */
@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }


    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Luxury Services Section (Minimal & Classy) */
.services-luxury {
    background: white;
    padding: 8rem 0;
    text-align: center;
}

.services-luxury h2 {
    font-size: 3rem;
    margin-bottom: 5rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--color-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.service-card {
    padding: 3rem 2rem;
    background: #fff;
    border: 1px solid #eee;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #EE37EE;
    transition: width 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 30px 60px rgba(238, 55, 238, 0.15);
    transform: translateY(-5px);
    border-color: rgba(238, 55, 238, 0.3);
}

.service-card:hover::after {
    width: 100%;
}

.service-num {
    display: block;
    font-size: 1.2rem;
    color: #EE37EE;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    position: relative;
    padding-left: 15px;
}

.service-num::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #EE37EE;
    border-radius: 50%;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.service-card p {
    color: var(--color-text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Info Section (Image 1 & 3) */
.info-section {
    background: #6D9EEB;
    /* Light blue from image */
    color: white;
    padding: 4rem;
    border-radius: 12px;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(109, 158, 235, 0.2);
}

.info-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
}

.info-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.secondary-entry {
    background: white;
    padding: 6rem 4rem;
    text-align: center;
    border-radius: 12px;
    margin: 4rem 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(238, 55, 238, 0.05);
}

.secondary-entry h2 {
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--color-black);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.secondary-entry p {
    font-size: 1.25rem;
    color: var(--color-text-dim);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
}

@media (max-width: 768px) {
    .secondary-entry {
        padding: 4rem 2rem;
    }

    .secondary-entry h2 {
        font-size: 2rem;
    }

    .secondary-entry p {
        font-size: 1.1rem;
    }
}

.community-banner {
    display: none;
    /* Replaced by carousel */
}

.user-carousel-container {
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 2rem 0;
    position: relative;
}

.age-modal h1 span {
    color: var(--color-accent);
    /* Gold instead of purple */
}

/* Scroll Carousel Adjustments */
.user-carousel-track {
    display: flex;
    width: max-content;
    gap: 15px;
    animation: scrollCarousel 40s linear infinite;
}

.user-carousel-track img {
    height: 180px;
    width: 140px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.user-carousel-track img:hover {
    transform: scale(1.05);
    z-index: 10;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Scroll through half the track (the duplicates) */
    }
}

/* Map Section - INTERACTIVE #EE37EE */
.map-section {
    background: radial-gradient(circle at center, #EE37EE 0%, #bf2cbf 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}


.map-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.map-wrapper {
    margin-top: 4rem;
    height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Remove old background SVG */
.map-wrapper::before {
    display: none;
}

.map-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.map-container svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
}

/* Base styles for Italy regions */
.map-container path {
    fill: rgba(255, 255, 255, 0.25);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1.5;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.map-container path:hover {
    fill: rgba(255, 255, 255, 0.45);
}

/* Region Lighting / Highlight Class */
.map-container path.region-active {
    fill: #ffffff;
    stroke: #ffffff;
    stroke-width: 2;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
    transform: scale(1.02);
    z-index: 50;
}

/* Traveling Message Bubbles */
.travel-msg {
    position: absolute;
    background: #fff;
    color: #000;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(238, 55, 238, 0.3);
    pointer-events: none;
    z-index: 1000;
    border-bottom: 3px solid #EE37EE;
}

@keyframes mapTravel {
    0% {
        left: var(--startX);
        top: var(--startY);
        transform: scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 1;
        transform: scale(1);
    }

    80% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        left: var(--endX);
        top: var(--endY);
        transform: scale(0.5);
        opacity: 0;
    }
}

.map-ping {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #FF00FF;
    /* Pure Magenta for contrast */
    border-radius: 50%;
    box-shadow: 0 0 15px #FF00FF;
    cursor: pointer;
}

.map-ping span {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.map-ping:hover span {
    opacity: 1;
    bottom: 30px;
}

/* Benefits Section */
.benefits-luxury {
    padding: 8rem 0;
    background: #fff;
}

.benefits-grid-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.benefits-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.benefits-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.benefits-text p {
    font-size: 1.15rem;
    color: var(--color-text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    font-size: 1.1rem;
    color: var(--color-text);
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* Blog Section */
.blog-luxury {
    padding: 8rem 0;
    background: #F9F9F9;
}

.blog-luxury h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
}

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

.blog-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.blog-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-content a {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Disclaimer Section */
.adult-disclaimer {
    padding: 6rem 0;
    background: white;
}

.disclaimer-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #FFF9F2;
    border-left: 4px solid var(--color-accent);
    text-align: center;
}

.disclaimer-box i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.disclaimer-box p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

.secondary-entry p {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Blog Post Template Styles */
.blog-post-page {
    padding-top: 15rem;
    /* Space for fixed header */
    padding-bottom: 8rem;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-post-header span {
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.blog-post-header h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 1.5rem 0;
    font-family: var(--font-serif);
}

.blog-post-featured-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 5rem;
    box-shadow: var(--shadow);
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.blog-post-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 2rem;
    font-style: italic;
    font-size: 1.4rem;
    margin: 3rem 0;
    color: var(--color-text-dim);
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content h2 {
        font-size: 4rem;
    }

    .hero-sub {
        font-size: 2rem;
    }

    .about-hero h1 {
        font-size: 3rem;
    }
}

/* Hamburger Menu Base Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 18px;
    background: transparent;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* General Layout Grids & Sections */
.about-grid,
.values-grid,
.footer-grid,
.services-grid,
.blog-grid {
    display: grid;
    gap: 2rem;
}

.about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.value-card {
    text-align: center;
    padding: 3rem;
    background: white;
    border: 1px solid #eee;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        /* Override display: none from 992px query */
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        gap: 3rem;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-actions {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        width: 100%;
        max-width: 250px;
        align-items: center;
    }

    .mobile-actions .btn-login,
    .mobile-actions .btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-links a {
        font-family: var(--font-serif);
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .nav-right {
        display: none;
    }

    /* Column Stacking for all grids */
    .about-grid,
    .values-grid,
    .services-grid,
    .blog-grid,
    .footer-grid,
    .benefits-grid-alt,
    .category-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .hero-content h2 {
        font-size: 2.8rem;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 1.4rem;
        white-space: normal;
        margin-top: 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
    }

    .btn-hero {
        width: 100%;
        min-width: unset;
    }

    .benefits-visual {
        order: 2;
    }

    .benefits-text {
        order: 1;
        padding: 0 1rem;
    }

    .map-wrapper {
        height: 400px;
    }

    .map-ping span {
        display: none;
    }

    .blog-post-page {
        padding-top: 10rem;
    }

    .blog-post-header h1 {
        font-size: 2rem;
    }

    .blog-post-featured-img {
        height: 250px;
        margin-bottom: 2rem;
    }

    .blog-post-content p {
        font-size: 1.1rem;
    }

    .main-footer {
        padding: 5rem 0;
        text-align: center;
    }

    .footer-brand p {
        margin: 1.5rem auto;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-section {
        padding: 4rem 0;
    }

    .cs-content h1 {
        font-size: 3rem;
    }

    .countdown-container {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .unit {
        min-width: 80px;
        padding: 1rem;
    }

    .unit span {
        font-size: 2rem;
    }

    .notify-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1.2rem;
    }

    .secondary-entry h2 {
        font-size: 1.6rem;
    }
}