:root {
    /* Define your palette here */
    --primary-blue: #0047FF;
--deep-blue: #002C8A;       /* Dark blue for hover/depth */
    --pure-white: #ffffff;
    --soft-white: #f5f7fa;
    --jet-black: #000000;
    --charcoal: #111111;
}
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background: #00010d; 
    color: #fff;
    /* CHANGED: Allow vertical scrolling while keeping horizontal hidden */
    overflow-x: hidden; 
    overflow-y: auto;
}

/* --- ENLARGED NAVIGATION START --- */
nav {
    position: fixed;
    top: 30px; 
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 2%; 
    z-index: 1000;
    /* ADDED: Smooth transition for the hide/show logic */
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* ADDED: Class for JS to hide nav */
nav.nav-hidden {
    transform: translateY(-120%);
    opacity: 0;
}

.logo {
    font-weight: 800;
    letter-spacing: 5px; 
    font-size: 1.7rem; 
    color: #fff;
    text-transform: uppercase;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.nav-pill {
    background: rgba(25, 25, 25, 0.373); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(50px);
    padding: 16px 45px; 
    border-radius:20px;
    display: flex;
    align-items: center;
    gap: 35px; 
    border: 1px solid rgba(106, 106, 106, 0.15);
}

.nav-pill a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem; 
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.nav-pill a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-plus {
    font-size: 1.5rem; 
    font-weight: 300;
    margin-left: 5px;
}

.nav-icons {
    display: flex;
    gap: 15px;
}

/* Mobile menu toggle (hamburger) */
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(25, 25, 25, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
}

/* Hero Styling */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This mimics 'background-size: cover' */
    z-index: -1;
    pointer-events: none; /* Ensures the video doesn't block clicks on buttons */
    filter: brightness(0.3) contrast(1.1);
}

/* Ensure the container remains the frame for the video */
.hero-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: flex-end; 
    padding: 0 3% 3% 3%;
    overflow: hidden; 
}
.hero-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.08; /* Adjust this for more or less "grain" */
    
    /* This creates the digital noise effect without an image file */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12; /* Slightly higher opacity since the grain is smaller */
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.main-title { 
    font-size: 6rem; 
    line-height: 0.85; 
    font-weight: 800; 
    letter-spacing: -2px; 
}

.italic { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    color: var(--primary-blue); 
} 

.cta-main {
    margin-top: 35px;
    padding: 20px 50px;
    border-radius: 50px;
    border: none;
    background: var(--primary-blue); 
    color: black;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.cta-main:hover { 
    transform: scale(1.05); 
    box-shadow: 0 0 30px rgba(13, 0, 255, 0.4); 
}

.info-card {
    background: #000000b3; 
    color: #ffffff;
    padding: 35px; 
    border-radius: 30px;
    max-width: 450px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.info-card h3 { margin-bottom: 20px; font-size: 1.8rem; font-weight: 800; }
.info-card p { font-size: 1rem; margin-bottom: 35px; line-height: 1.7; color: #888; }

.card-buttons { display: flex; gap: 15px; }
.btn-primary { background: #2b2b2b; color: white; border: none; padding: 16px 30px; border-radius: 15px; font-weight: 600; cursor: pointer; }
.btn-secondary { background: var(--soft-white); color: #000; border: none; padding: 16px 30px; border-radius: 15px; font-weight: 600; cursor: pointer; }

/* Back to Top Button Styling */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: 1s ease-out; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(40px); }
/* --- ADVERTISING SECTION ---#################################################################################################3 */
.content-section {
    padding: 120px 5%;
    background: #00010d;
    min-height: 100vh;
    overflow-y: auto; /* Allows scrolling for this section */
}

.section-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.eyebrow {
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.section-intro {
    font-size: 1.2rem;
    color: #888;
    line-height: 1.6;
}

/* Grid Layout */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
    transition: 0.4s;
}

.spec-card:hover {
    border-color: var(--primary-blue);
    background: rgba(212, 255, 0, 0.02);
}

.spec-icon {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.spec-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.spec-card p {
    color: #888;
    line-height: 1.5;
    margin-bottom: 20px;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #bbb;
}

/* Guidelines Footer */
.guidelines-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-blue);
    padding: 50px;
    border-radius: 40px;
    color: #000;
}

.guidelines-content { max-width: 60%; }
.guidelines-content h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }
.guidelines-content p { font-weight: 500; opacity: 0.8; }

/* Remove overflow hidden from body to allow scrolling to the new section */
body { 
    overflow-x: hidden; 
    overflow-y: auto; 
}

/* Navigation Fade State ############################################################################################3*/
nav {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

nav.nav-hidden {
    transform: translateY(-120%); /* Slides the nav up out of view */
    opacity: 0;
    pointer-events: none; /* Prevents clicking links when hidden */
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--primary-blue); /* Matching your lime accent */
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: scale(1.1);
    background: #fff;
}
/* --- LOCATION SECTION ---##################################################################################################33 */
.location-section {
    padding: 100px 5%;
    background: #000;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-top: 50px;
}

/* Info Side */
.stats-row {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-label {
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.audience-box h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.audience-tags span {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #ccc;
}

.benefit-list {
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.benefit-list li {
    margin-bottom: 15px;
    color: #aaa;
    position: relative;
    padding-left: 25px;
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

/* Visual Side */
.location-visual {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-tag {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #ff4444;
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.live-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
    font-weight: 500;
}

/* Mobile responsive tweak */
@media (max-width: 992px) {
    .location-container { grid-template-columns: 1fr; }
    .map-placeholder { height: 400px; }
}

/* --- PACKAGES SECTION --- ##############################################################################################3*/
.packages-section {
    padding: 100px 5%;
    background: #050505;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.package-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 40px;
    position: relative;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 255, 0, 0.3);
}

.package-card.featured {
    background: #1a1a1a;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 20px 40px rgba(212, 255, 0, 0.05);
}

.pkg-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-blue);
    color: #000;
    padding: 6px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
}

.pkg-duration {
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pkg-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 30px;
    min-height: 50px;
}

.pkg-price {
    margin-bottom: 30px;
}

.old-price {
    display: block;
    color: #555;
    text-decoration: line-through;
    font-size: 1rem;
}

.current-price {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
}

.pkg-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pkg-features li {
    padding: 12px 0;
    font-size: 0.9rem;
    color: #ccc;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pkg-btn {
    width: 100%;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.pkg-btn.primary {
    background: var(--primary-blue);
    color: #000;
    border: none;
}

.pkg-btn:hover {
    background: #fff;
    color: #000;
}

.pkg-notes {
    margin-top: 50px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

/* --- ABOUT SECTION --- ######################################################################################################*/
.about-section {
    padding: 120px 5%;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
}

.about-main-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #ccc;
    margin: 40px 0;
}

/* Beliefs styling */
.beliefs-grid {
    margin-top: 60px;
}

.belief-item {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.belief-item span {
    display: block;
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.belief-item p {
    font-size: 1.1rem;
    color: #fff;
}

/* Right Side Content */
.content-block {
    margin-bottom: 50px;
}

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-block p {
    color: #888;
    line-height: 1.7;
}

.process-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.process-list li {
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #bbb;
    border: 1px solid rgba(255,255,255,0.05);
}

.commitment-card {
    background: var(--primary-blue);
    color: #000;
    padding: 40px;
    border-radius: 40px;
    margin-top: 40px;
}

.commitment-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.commitment-card p {
    font-weight: 500;
    line-height: 1.5;
}

/* Tablet/Mobile Responsive */
@media (max-width: 1024px) {
    .about-container { grid-template-columns: 1fr; gap: 60px; }
    .about-main-text { font-size: 1.2rem; }
}

/* --- CONTACT SECTION --- #####################################################################################################3*/
/* --- UNIQUE CONTACT HUB --- */
.contact-hub {
    padding: 150px 5%;
    background: #000;
    position: relative;
}

.huge-title {
    font-size: clamp(3rem, 8vw, 7rem); /* Responsive giant text */
    font-weight: 800;
    line-height: 0.9;
    margin: 30px 0;
}

.location-stamp {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    width: fit-content;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-blue);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 80px;
}

.hub-card {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 60px;
    border-radius: 50px;
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.hub-card h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 40px;
}

.hub-card:hover {
    border-color: var(--primary-blue);
    transform: scale(1.02);
}

/* Connect Links */
.hub-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hub-action-btn {
    text-decoration: none;
    padding: 30px;
    border-radius: 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.hub-action-btn .btn-label {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.hub-action-btn .btn-subtext {
    font-size: 0.8rem;
    color: #555;
}

.hub-action-btn.wa:hover {
    background: #25D366;
}

.hub-action-btn.wa:hover .btn-label, 
.hub-action-btn.wa:hover .btn-subtext {
    color: #000;
}

/* Minimal Form */
.minimal-form input, .minimal-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #222;
    padding: 20px 0;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

.minimal-form input:focus, .minimal-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-blue);
}

.form-send {
    background: transparent;
    border: none;
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .hub-grid { grid-template-columns: 1fr; }
    .hub-card { padding: 40px; }
}

/* ###################################################################################################################### */
footer {
    padding: 80px 5% 40px 5%;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-left p {
    color: #555;
    margin-top: 20px;
    max-width: 300px;
}

.footer-right {
    display: flex;
    gap: 80px;
}

.contact-info span {
    display: block;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    transition: 0.3s;
}

.social-links a:hover { opacity: 1; color: var(--primary-blue); }

.footer-bottom {
    text-align: center;
    font-size: 0.7rem;
    color: #333;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ==============================================================================
   GLOBAL RESPONSIVE ADJUSTMENTS (Keep visual design, scale for all devices)
   ============================================================================== */

/* Large tablets / small desktops */
@media (max-width: 1200px) {
    .hero-container {
        padding: 0 4% 5% 4%;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .info-card {
        padding: 40px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    nav {
        top: 20px;
        padding: 0 4%;
    }

    .nav-pill {
        padding: 12px 24px;
        gap: 20px;
    }

    .hero-container {
        height: auto;
        min-height: 100vh;
        padding: 140px 5% 60px 5%; /* space for fixed nav + breathing room */
        align-items: flex-end;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .info-card {
        max-width: 100%;
        width: 100%;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .content-section,
    .location-section,
    .packages-section,
    .about-section,
    .contact-hub {
        padding: 80px 5%;
    }

    .guidelines-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 40px;
    }

    .guidelines-content {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }
}

/* Large phones / small tablets */
@media (max-width: 768px) {
    .nav-right-group {
        gap: 12px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-pill,
    .nav-icons {
        display: none;
    }

    nav.menu-open .nav-pill {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 5%;
        background: rgba(10, 10, 10, 0.98);
        padding: 18px 24px;
        border-radius: 24px;
        gap: 12px;
        margin-top: 14px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    }

    nav.menu-open .nav-pill a {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    nav.menu-open .nav-pill a:hover {
        transform: none;
    }

    /* Animate hamburger into "X" */
    nav.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        width: 20px;
    }

    nav.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    nav.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        width: 20px;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .nav-right-group {
        gap: 10px;
    }

    .nav-pill {
        padding: 10px 16px;
        gap: 14px;
    }

    .nav-pill a {
        font-size: 0.8rem;
    }

    .icon-circle {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .hero-container {
        padding: 120px 6% 56px 6%;
    }

    .hero-content {
        gap: 32px;
    }

    .main-title {
        font-size: 2.8rem;
        line-height: 1;
    }

    .section-intro {
        font-size: 1rem;
        line-height: 1.5;
    }

    .info-card {
        padding: 26px 22px;
        border-radius: 26px;
        box-shadow: 0 28px 70px rgba(0,0,0,0.7);
    }

    .info-card p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .card-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .spec-card {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .location-section,
    .packages-section,
    .about-section,
    .contact-hub,
    .content-section {
        padding-inline: 6%;
    }

    .location-container {
        gap: 40px;
    }

    .map-placeholder {
        height: 280px;
        border-radius: 28px;
    }

    .stats-row {
        flex-direction: column;
        gap: 14px;
        margin: 28px 0;
    }

    .about-main-text {
        font-size: 1.1rem;
        margin: 24px 0;
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hub-card {
        padding: 26px 22px;
        border-radius: 26px;
    }
}

/* Small phones */
@media (max-width: 576px) {
    nav {
        top: 16px;
    }

    .hero-container {
        padding: 108px 7% 40px 7%;
    }

    .cta-main {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 0.95rem;
    }

    .content-section,
    .location-section,
    .packages-section,
    .about-section,
    .contact-hub {
        padding: 64px 7%;
    }

    .package-card {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}