/* Base Styles & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #ff8837; /* Orange */
    --primary-hover: #e67527;
    --secondary-color: #9b0d83; /* Purple */
    --secondary-hover: #7a0966;
    --text-dark: #222;
    --text-gray: #666;
    --bg-light: #fffaf7; /* Very light orange/purple tint */
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.brand-highlight {
    color: var(--secondary-color);
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    height: 90px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.header-logo {
    max-height: 165px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 101;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-header-call-btn {
    display: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9f52 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 136, 55, 0.3);
    animation: premiumPulse 3s infinite;
    border: none;
}

.mobile-header-call-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #ff7d1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 136, 55, 0.5);
}

.mobile-nav-buttons {
    display: none;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 136, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-large {
    width: 100%;
    max-width: 350px;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Hide Book Now buttons on all screens */
#mainBookBtn, 
#headerBookBtn, 
#mobileBookBtn {
    display: none !important;
}

/* ==========================================================================
   MOBILE HERO SECTION
   ========================================================================== */
.mobile-hero-section {
    display: none;
    width: 100%;
    height: 100vh;
    background-image: url('https://springgreen-stingray-284164.hostingersite.com/images/Cover.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 10;
}

.mobile-hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(155, 13, 131, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mobile-hero-text {
    text-align: center;
    color: white !important;
    max-width: 90%;
}

.mobile-hero-text h1 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.mobile-hero-text h1 span{
    color: white !important;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.mobile-hero-text .subtitle {
    color: #ff8837;
    font-size: 1rem;
}

.mobile-hero-text .description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.mobile-hero-text .action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mobile-hero-text .call-assistance {
    color: white;
}

.mobile-hero-text .btn-outline {
    border-color: white;
    color: white;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), inset 0 1px 4px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: premiumPulse 3s infinite;
    transition: all 0.3s ease;
}

.mobile-hero-text .btn-outline:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), inset 0 1px 4px rgba(255, 255, 255, 0.3);
}


/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 5% 80px 10%;
    min-height: calc(100vh - 90px);
    position: relative;
    background: #fff;
}

.hero-content {
    flex: 1 1 500px;
    max-width: 600px;
    z-index: 2;
}

.hero-image {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Action Area */
.action-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.divider-container {
    width: 100%;
    max-width: 350px;
    text-align: center;
    margin: 15px 0;
}

.divider {
    color: #aaa;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}

.call-assistance {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    width: 100%;
    max-width: 350px;
    text-align: center;
}
#callBtn {
    text-decoration: none !important;
    text-align: center !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%) !important;
    color: white !important;
    border: 2px solid var(--secondary-color) !important;
    box-shadow: 0 8px 25px rgba(155, 13, 131, 0.3) !important;
    transition: all 0.3s ease !important;
    animation: premiumPulse 3s infinite;
}

#callBtn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(155, 13, 131, 0.5) !important;
}

#callBtnMobile {
    text-decoration: none !important;
    text-align: center !important;
    background: linear-gradient(135deg, white 0%, #f5f5f5 100%) !important;
    color: var(--secondary-color) !important;
    border: 2px solid white !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    animation: premiumPulse 3s infinite;
}

#callBtnMobile:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
}

/* Hero Video Styles - UPDATED TO MERGE INTO BACKGROUND */
.hero-video-container {
    width: 100%;
    max-width: 600px;
    background-color: transparent; /* Ensures no background conflicts */
    animation: fadeInVideo 1s ease-out forwards;
    /* Removed all borders, shadows, and rounded corners */
}

.hero-video {
    width: 100%;
    height: 700px;
    display: block;
    object-fit: cover;
    /* This blend mode makes the white background of the video completely transparent, merging it perfectly with the page */
    mix-blend-mode: multiply; 
}

@keyframes fadeInVideo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Pulse Animation for Call Buttons */
@keyframes premiumPulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 136, 55, 0.4), 0 0 0 0 rgba(255, 136, 55, 0.7);
    }
    50% {
        box-shadow: 0 4px 15px rgba(255, 136, 55, 0.4), 0 0 0 10px rgba(255, 136, 55, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 136, 55, 0.4), 0 0 0 0 rgba(255, 136, 55, 0);
    }
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 20% { transform: rotate(-5deg); }
    30%, 50%, 70%, 90% { transform: rotate(5deg); }
    40%, 60%, 80% { transform: rotate(-5deg); }
}

/* Responsive Rules for All Devices */
@media (max-width: 1024px) {
    .hero-section {
        padding: 40px 5%;
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 40px;
    }
    .description {
        margin: 0 auto 30px auto;
    }
    .action-area {
        align-items: center;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: clip;
        width: 100%;
    }
    .desktop-only {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-header-call-btn {
        display: flex !important;
    }
    .header-logo {
        max-height: 90px;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: left 0.4s ease;
        gap: 25px;
        z-index: 98;
    }
    .nav-links.active {
        left: 0;
    }
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 80%;
        margin-top: 10px;
    }
    .mobile-nav-buttons .btn {
        width: 100%;
    }
    .about-visual-modern {
        flex: 1 1 100%;
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw;
        max-width: 100vw;
        height: auto;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }
    .image-wrapper {
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        height: auto;
        overflow: hidden;
        box-shadow: none !important;
        position: relative;
    }
    .main-img {
        border: none !important;
        border-radius: 0 !important;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 !important;
        padding: 0 !important;
    }
    .about-section-modern {
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible;
        background-color: transparent;
        box-shadow: none;
    }
    .about-container-modern {
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: none;
    }
    .about-content-modern {
        padding: 40px 5%;
        flex: 1 1 100%;
        width: 100%;
        background-color: #ffffff;
        order: 2;
    }
    .floating-badge {
        display: none !important;
    }
    .mobile-hero-section {
        display: none;
    }
    .hero-section {
        display: none;
    }
    .hero-image {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .btn-large {
        max-width: 100%;
    }
}

/* ==========================================================================
   MODERN ABOUT SECTION STYLES
   ========================================================================== */
.about-section-modern {
    padding: 60px 5%;
    margin-top: -40px;
    background-color: #ffffff;
    position: relative;
    z-index: 5;
}

.about-container-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Left Side: Visual --- */
.about-visual-modern {
    flex: 1 1 450px;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    /* Soft purple shadow for depth */
    box-shadow: 0 20px 40px rgba(155, 13, 131, 0.1); 
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    border: 8px solid #ffffff;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: #9b0d83; /* Purple */
    color: #ffffff;
    padding: 24px 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(255, 136, 55, 0.2);
    border-left: 6px solid #ff8837; /* Orange Accent */
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
}

/* --- Right Side: Content --- */
.about-content-modern {
    flex: 1 1 550px;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight-purple {
    color: #9b0d83; /* Purple */
}

.accent-line {
    width: 80px;
    height: 5px;
    background-color: #ff8837; /* Orange */
    margin-bottom: 30px;
    border-radius: 3px;
}

.lead-text {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* --- Feature Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: #fffaf7; /* Very light tint */
    border-radius: 12px;
    border: 1px solid rgba(255, 136, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(155, 13, 131, 0.08);
}

.icon-box {
    background-color: #ff8837; /* Orange */
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-text h4 {
    font-size: 1.1rem;
    color: #222222;
    margin-bottom: 6px;
    font-weight: 700;
}

.card-text p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .about-container-modern {
        flex-direction: column;
    }
    .about-visual-modern {
        margin-bottom: 50px;
        width: 100%;
        max-width: 600px;
    }
    .floating-badge {
        right: 20px;
        bottom: -20px;
        padding: 16px 24px;
    }
    .badge-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-content-modern {
        padding: 40px 5%;
        flex: 1 1 100%;
        width: 100%;
        background-color: #ffffff;
        order: 2;
    }
    .about-visual-modern {
        margin-bottom: 0;
        max-width: none;
        order: 1;
    }
    .floating-badge {
        display: none !important;
    }
    .about-container-modern {
        gap: 0;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .section-heading {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   SERVICES SECTION STYLES
   ========================================================================== */
.services-section {
    padding: 100px 5%;
    background-color: #f8f9fc; /* Very light, clean gray background */
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Header Area --- */
.services-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.highlight-orange-italic {
    color: #ff8837; /* Orange */
    font-style: italic;
}

.services-subtitle {
    color: #666666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-box {
    background-color: #ffffff;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    font-size: 1.6rem;
    color: #9b0d83; /* Purple theme applied to icons */
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background-color: #9b0d83; /* Purple */
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(155, 13, 131, 0.2);
}

.service-content h3 {
    font-size: 1.3rem;
    color: #222222;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-content p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Responsive Rules for Services Section --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #ffffff;
        padding: 30px 20px;
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    }
    
    .service-icon-box {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 5%;
    }
    .services-header .section-title {
        font-size: 2.2rem;
    }
}


/* ==========================================================================
   PREMIUM WHY CHOOSE US STYLES (WITH BACKGROUND PARTICLES)
   ========================================================================== */
.why-choose-premium {
    position: relative;
    padding: 40px 5%; 
    background-color: #ffffff;
    overflow: hidden; /* Keeps background particles inside the section */
}

/* --- Background Particles Layout --- */
.bg-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Keep behind content */
    pointer-events: none; /* Ensures particles don't block user clicks */
}

.bg-shape {
    position: absolute;
}

/* 1. Large Soft Orange Glow */
.soft-glow-orange {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 136, 55, 0.08) 0%, rgba(255, 136, 55, 0) 70%);
    top: -150px;
    right: -100px;
}

/* 2. Giant Faded Purple Ring */
.giant-ring-purple {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid rgba(155, 13, 131, 0.05); /* Very faint purple border */
    bottom: -50px;
    left: -80px;
}

/* 3. Modern Dot Matrix Pattern */
.dot-matrix {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(255, 136, 55, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    top: 40%;
    right: 5%;
    opacity: 0.6;
}

/* --- Content Container (Must sit above background) --- */
.choose-container-premium {
    position: relative;
    z-index: 2; /* Sits above the bg-particles */
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Clean Header --- */
.choose-header-premium {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.premium-heading {
    font-size: 3.2rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight-purple {
    color: #9b0d83; /* Purple */
}

.premium-intro {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.7;
}

/* --- Features Grid --- */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px; 
}

.premium-feature-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.premium-feature-card:hover {
    transform: translateY(-8px);
}

/* --- Catchy Icon Stage & Particles --- */
.icon-stage {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 35px auto;
}

.main-icon-box {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.premium-feature-card:hover .main-icon-box {
    transform: rotate(0deg) scale(1.05);
}

.orange-bg {
    background: linear-gradient(135deg, #ff8837 0%, #e67527 100%);
    box-shadow: 0 15px 30px rgba(255, 136, 55, 0.3);
}

.purple-bg {
    background: linear-gradient(135deg, #9b0d83 0%, #7a0966 100%);
    box-shadow: 0 15px 30px rgba(155, 13, 131, 0.3);
}

/* --- The Small Floating Particles --- */
.particle {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
}

.dot-orange { width: 14px; height: 14px; background-color: #ff8837; }
.dot-purple { width: 14px; height: 14px; background-color: #9b0d83; }
.dot-small { width: 8px; height: 8px; background-color: #d1d5db; }

.ring-orange {
    width: 24px; height: 24px;
    border: 3px solid #ff8837;
    background-color: transparent;
}

.ring-purple {
    width: 24px; height: 24px;
    border: 3px solid #9b0d83;
    background-color: transparent;
}

/* Particle Positions */
.top-right { top: -10px; right: -15px; }
.top-left { top: -10px; left: -15px; }
.bottom-right { bottom: -10px; right: -15px; }
.bottom-left { bottom: -10px; left: -15px; }
.left-mid { top: 40%; left: -25px; }
.right-mid { top: 40%; right: -25px; }
.top-mid { top: -25px; left: 40%; }

/* --- Text Content --- */
.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .premium-features-grid { grid-template-columns: repeat(2, 1fr); }
    .premium-feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .premium-heading { font-size: 2.5rem; }
    .premium-features-grid { grid-template-columns: 1fr; }
    .premium-feature-card:last-child { max-width: 100%; }
    .bg-particles-container { display: none; } /* Hide large bg shapes on mobile to save space */
}

/* ==========================================================================
   STICKY CALL BUTTON
   ========================================================================== */
.sticky-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9f52 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 136, 55, 0.4), inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
    animation: premiumPulse 3s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sticky-call-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #ff7d1a 100%);
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(255, 136, 55, 0.6), inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.sticky-call-btn .call-text {
    display: none;
}

@media (max-width: 768px) {
    .sticky-call-btn {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   COPYRIGHT FOOTER STYLES
   ========================================================================== */
.site-footer {
    background-color: #111111; /* Sleek dark background */
    border-top: 4px solid #9b0d83; /* Purple brand accent line */
}

.footer-bottom {
    padding: 25px 5%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: #999999;
    font-size: 0.95rem;
    margin: 0;
}

.brand-text {
    color: #ff8837; /* Orange highlight for brand name */
    font-weight: 600;
}

/* --- Legal Links --- */
.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff8837; /* Orange on hover */
}

/* --- Social Icons --- */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #222222; /* Slightly lighter dark gray for contrast */
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #9b0d83; /* Purple on hover */
    transform: translateY(-3px); /* Subtle lift effect */
}

/* --- Responsive Rules --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 25px;
    }

    .footer-links {
        justify-content: center;
    }
}
/* ==========================================================================
   BOTTOM CTA SECTION STYLES
   ========================================================================== */
.bottom-cta-section {
    position: relative;
    padding: 80px 5% 40px;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden; /* Keeps background icons from causing scrollbars */
}

.cta-wrapper {
    position: relative;
    z-index: 2; /* Keeps buttons above background icons */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto 70px auto;
    flex-wrap: wrap;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222222;
}

.cta-action-btn {
    width: 300px; /* Fixed width to match the image perfectly */
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    gap: 8px;
}

/* Premium styling for call buttons (with phone icon) */
.cta-block:last-child .cta-action-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9f52 100%);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(255, 136, 55, 0.35), inset 0 -2px 6px rgba(0, 0, 0, 0.1);
    animation: premiumPulse 3s infinite;
}

.cta-block:last-child .cta-action-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #ff7d1a 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 136, 55, 0.5), inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}

/* Premium styling for book button */
.btm-cta-block .cta-action-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c4178f 100%);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(155, 13, 131, 0.35), inset 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.btm-cta-block .cta-action-btn:hover {
    background: linear-gradient(135deg, var(--secondary-hover) 0%, #a01575 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(155, 13, 131, 0.5), inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}

/* --- Decorative Background Icons --- */
.bg-icon {
    position: absolute;
    font-size: 8rem;
    z-index: 0;
    pointer-events: none; /* Prevents icons from blocking clicks */
}

.left-icon {
    left: 15%;
    bottom: 50px;
    color: rgba(155, 13, 131, 0.05); /* Very faint purple */
    transform: rotate(-15deg);
}

.right-icon {
    right: 15%;
    bottom: 50px;
    color: rgba(255, 136, 55, 0.08); /* Very faint orange */
}

/* --- Go To Top Button --- */
.go-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #888888;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.go-to-top i {
    font-size: 0.9rem;
}

.go-to-top:hover {
    color: #ff8837; /* Orange on hover */
    transform: translateY(-3px); /* Gentle upward bounce on hover */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .left-icon { left: 5%; }
    .right-icon { right: 5%; }
}

@media (max-width: 768px) {
    .cta-wrapper {
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .cta-action-btn {
        width: 100%;
        min-width: 280px;
    }
    
    /* Hide decorative icons on mobile to keep it clean */
    .bg-icon {
        display: none; 
    }
}
/* ==========================================================================
   MASTER RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --- Tablet Layout (Max-width: 1024px) --- */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero-section {
        padding: 40px 5%;
        flex-direction: column;
        text-align: center;
    }
    .hero-content { margin-bottom: 40px; }
    .description { margin: 0 auto 30px auto; }
    .action-area { align-items: center; }

    /* About Section */
    .about-container-modern { flex-direction: column; }
    .about-visual-modern {
        margin-bottom: 50px;
        width: 100%;
        max-width: 600px;
    }
    .floating-badge {
        right: 20px;
        bottom: -20px;
        padding: 16px 24px;
    }
    .badge-number { font-size: 2rem; }

    /* Services & Why Choose Us Grids */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .premium-feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --- Mobile Layout (Max-width: 768px) --- */
@media (max-width: 768px) {
    /* Navigation Menu */
    .desktop-only { display: none; }
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        position: absolute;
        top: 100%; 
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: left 0.4s ease;
        gap: 20px;
        z-index: 99;
    }
    .nav-links.active { left: 0; }
    
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 80%;
        margin-top: 10px;
    }
    .mobile-nav-buttons .btn { width: 100%; }

    /* About Section */
    .about-container-modern {
        display: block;
    }

    /* Hero adjustments */
    .hero-video-container { max-width: 100%; }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #ffffff;
        padding: 30px 20px;
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    }
    .service-icon-box { margin-bottom: 10px; }

    /* Why Choose Us Section */
    .premium-heading { font-size: 2.5rem; }
    .premium-features-grid { grid-template-columns: 1fr; }
    .premium-feature-card:last-child { max-width: 100%; }
    .bg-particles-container { display: none; } /* Hide large bg shapes on mobile */

    /* Bottom CTA Section */
    .bg-icon { display: none; } /* Hide decorative icons on mobile */
    .cta-wrapper { 
        gap: 40px; 
        margin-bottom: 50px; 
    }
    .cta-action-btn { 
        width: 100%; 
        min-width: 280px; 
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 25px;
    }
    .footer-links { justify-content: center; }
}

/* --- Small Phones (Max-width: 480px) --- */
@media (max-width: 480px) {
    /* Global Typography & Buttons */
    h1 { font-size: 2rem; }
    .btn-large { width: 100%; max-width: 100%; }
    
    /* About Badge Fixes */
    .floating-badge { 
        right: 5px; 
        bottom: -15px; 
        padding: 10px 15px; 
    }
    .about-visual-modern { margin-bottom: 30px; }
    
    /* Section Padding Adjustments */
    .services-section { padding: 60px 5%; }
    .services-header .section-title { font-size: 2.2rem; }
    
    .features-grid { grid-template-columns: 1fr; }
}
.btm-cta-block{
    display: none !important;
}