/* ============================================================
   SITE-OVERRIDES.CSS — E-Commerce site-specific styles
   Complements Shared CSS (design-system, components, layout, animations)
   ============================================================ */

/* ── Variables ── */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #f72585;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --success-color: #4cc9f0;
    --border-color: #e0e0e0;
}

/* ── Base ── */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* ── Header / Navbar ── */
header.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    transition: all 0.4s ease !important;
    backdrop-filter: blur(10px);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
}

header.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 12px 20px !important;
    position: static !important;
}

header.navbar.scrolled {
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    color: var(--primary-color) !important;
    transition: transform 0.3s ease !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Desktop nav */
header.navbar nav {
    display: none;
}

@media (min-width: 992px) {
    header.navbar nav {
        display: block !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    list-style: none !important;
    gap: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
}

.navbar-nav > li {
    position: relative;
    flex-shrink: 0;
}

.navbar-nav > li > a {
    display: block !important;
    padding: 0.5rem 0.7rem !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: var(--dark-color) !important;
    text-decoration: none !important;
    border-radius: 6px;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
    white-space: nowrap;
    line-height: 1.4 !important;
}

.navbar-nav > li > a:hover {
    color: var(--primary-color) !important;
    background: rgba(67, 97, 238, 0.06);
}

.navbar-nav > li > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    left: 0.7rem;
    right: 0.7rem;
    bottom: 2px;
    transition: width 0.3s ease;
}

.navbar-nav > li > a:hover:after {
    width: calc(100% - 1.4rem);
}

/* Services dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    cursor: pointer;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.has-dropdown:hover > .dropdown {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--dark-color) !important;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dropdown li a:hover {
    background: rgba(67, 97, 238, 0.08);
    color: var(--primary-color) !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA button in nav */
.navbar-nav .btn {
    margin-left: 8px;
    padding: 0.45rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-outline:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.btn-sm {
    padding: 0.4rem 1.1rem !important;
    font-size: 0.82rem !important;
}

/* Mobile hamburger */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--dark-color);
    z-index: 10;
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile menu panel */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 999;
    padding: 80px 20px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu > ul > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu > ul > li > a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark-color) !important;
    text-decoration: none;
}

.mobile-menu > ul > li > a:hover {
    color: var(--primary-color) !important;
}

.mobile-menu ul ul {
    padding-left: 15px;
}

.mobile-menu ul ul li a {
    display: block;
    padding: 10px 0;
    font-size: 0.92rem;
    color: #555 !important;
    text-decoration: none;
}

.mobile-menu ul ul li a:hover {
    color: var(--primary-color) !important;
}

/* ── Floating Enquire Button ── */
.enquire-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 998 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    padding: 14px 24px !important;
    background: var(--accent-color) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(247, 37, 133, 0.4) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
}

.enquire-float:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(247, 37, 133, 0.5) !important;
    background: #d81b60 !important;
}

.enquire-float i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .enquire-float {
        bottom: 20px !important;
        right: 20px !important;
        padding: 12px 20px !important;
        font-size: 0.85rem !important;
    }
}

/* ── Buttons ── */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-accent:hover {
    background-color: #d81b60;
    border-color: #d81b60;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    background: transparent;
}

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

.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* ── Hero Slider ── */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-top: 65px;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
}

.slider-item.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.85) 0%, rgba(58, 12, 163, 0.8) 100%);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 15px;
    max-width: 650px;
}

.slider-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* ── Section Title ── */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* ── Services Carousel ── */
.services-carousel {
    padding: 100px 0;
    background-color: var(--light-color);
}

.carousel-item {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 8s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-caption {
    background: rgba(26, 41, 128, 0.9);
    padding: 30px;
    border-radius: 10px;
    bottom: 40px;
    left: 10%;
    right: 10%;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.carousel-item.active .carousel-caption {
    transform: translateY(0);
    opacity: 1;
}

.carousel-caption h3 {
    color: white;
    font-size: 2rem;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 8px !important;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    transform: scale(1.3);
}

/* ── Why Choose Us ── */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(to bottom, white 0%, #f9f9ff 100%);
}

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover:before {
    opacity: 0.05;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-color);
}

.feature-card:hover h4, .feature-card:hover p {
    color: white;
}

.feature-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card h4, .feature-card p {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

/* ── Technology Stack ── */
.technology {
    padding: 100px 0;
    background-color: var(--light-color);
}

.tech-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.tech-card:hover:before {
    transform: translateY(0);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tech-card:hover .tech-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.tech-icon {
    font-size: 55px;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

/* ── Pricing ── */
.pricing {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9f9ff 0%, white 100%);
}

.pricing-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    background: white;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    transform: translateY(-10px);
    border: 2px solid var(--accent-color);
}

.pricing-card.popular:hover {
    transform: translateY(-20px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 40px;
    font-weight: 600;
    transform: rotate(45deg);
    font-size: 0.9rem;
    z-index: 10;
}

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.pricing-header.popular {
    background-color: var(--secondary-color);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-body {
    padding: 40px 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    padding-left: 10px;
    background-color: rgba(76, 201, 240, 0.05);
}

.pricing-features li i {
    color: var(--success-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* ── Process ── */
.process {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.process:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(67, 97, 238, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
}

/* ── Testimonials ── */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}

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

.testimonial-card:before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimonial-role {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

/* ── FAQ ── */
.faq {
    padding: 100px 0;
    background: linear-gradient(to bottom, white 0%, #f9f9ff 100%);
}

.faq .accordion-item {
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.faq .accordion-button {
    font-weight: 600;
    padding: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq .accordion-button:not(.collapsed) {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    box-shadow: none;
}

.faq .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.faq .accordion-button:after {
    transition: transform 0.3s ease;
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Modal System ── */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-box, .modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-box,
.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-color);
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--secondary-color);
}

.modal-box h2, .modal-content h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}

.modal-box h2:after, .modal-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.modal-box h2:after {
    left: 0;
    transform: none;
}

.modal-box p, .modal-content p {
    color: var(--gray-color);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-box .btn, .modal-content .btn {
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
}

/* ── Payment QR Section inside Modal ── */
.payment-info {
    text-align: center;
    padding: 20px 0;
}

.payment-info img {
    max-width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    margin-bottom: 15px;
}

.payment-info .upi-details {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.payment-info .upi-details p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.payment-info .upi-details strong {
    color: var(--secondary-color);
}

/* ── Success Modal ── */
.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    text-align: center;
    display: block;
    margin-bottom: 15px;
}

.modal-box .text-center, .modal-content .text-center {
    text-align: center;
}

.modal-box .text-center:after, .modal-content .text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .slider-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 70vh;
    }
    .slider-content h1 {
        font-size: 2.5rem;
    }
    .slider-content p {
        font-size: 1.1rem;
    }
    .carousel-item {
        height: 400px;
    }
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        margin-top: 70px;
    }
    .slider-content {
        text-align: center;
        padding: 0 30px;
    }
    .slider-content h1 {
        font-size: 2.2rem;
    }
    .carousel-item {
        height: 350px;
    }
    .carousel-caption {
        bottom: 20px;
        padding: 20px;
    }
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .slider-nav.prev {
        left: 15px;
    }
    .slider-nav.next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 50vh;
    }
    .slider-content h1 {
        font-size: 1.8rem;
    }
    .slider-content p {
        font-size: 1rem;
    }
    .carousel-item {
        height: 300px;
    }
    .carousel-caption {
        bottom: 10px;
        padding: 15px;
    }
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .popular-badge {
        right: -30px;
        padding: 6px 30px;
        font-size: 0.8rem;
    }
}
