/* Import Outfit Google Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #FF6B00; /* Saffron */
    --secondary: #0F9D58; /* Green */
    --dark-bg: #0b0c10;
    --card-bg: rgba(26, 29, 38, 0.75);
    --card-border: rgba(255, 107, 0, 0.15);
    --text-light: #f3f4f6;
    --text-gray: #9ca3af;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', 'Noto Sans Devanagari', sans-serif;
    --font-body: 'Noto Sans Devanagari', 'Outfit', sans-serif;
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c3a 100%);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 5% 6rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255, 107, 0, 0.15) 0%, rgba(15, 157, 88, 0.05) 50%, var(--dark-bg) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.25;
    max-width: 900px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c3a 100%);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #17c271 100%);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(15, 157, 88, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 157, 88, 0.6);
}

/* Highlights Section */
.highlights-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.2);
}

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

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.highlight-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Sections General Styling */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Infinite Scroll Gallery */
.gallery-section {
    background: rgba(11, 12, 16, 0.5);
    padding: 4rem 0;
}

.infinite-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
}

.infinite-scroll-track {
    display: flex;
    width: max-content;
    animation: scrollRightToLeft 45s linear infinite;
}

.infinite-scroll-track:hover {
    animation-play-state: paused;
}

.gallery-card {
    width: 320px;
    margin: 0 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-card .card-info {
    padding: 1.25rem;
    text-align: center;
}

.gallery-card h4 {
    font-size: 1.1rem;
    color: var(--white);
}

/* Why Choose Us Section */
.why-choose-us {
    background: radial-gradient(circle at bottom right, rgba(15, 157, 88, 0.08), transparent 60%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 107, 0, 0.03);
    border-color: rgba(255, 107, 0, 0.3);
}

.feature-item .check {
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

/* Sample Audio Section */
.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.audio-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.audio-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
}

.audio-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.audio-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.audio-card h3 {
    font-size: 1.25rem;
}

.custom-player {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    background: #ff8c3a;
}

.progress-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    width: 0%;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-gray);
    font-family: var(--font-heading);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.05) 0%, rgba(26, 29, 38, 0.9) 100%);
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c3a 100%);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
    font-family: var(--font-heading);
}

.price-strike-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.save-badge {
    background-color: #fef3c7; /* Light yellow */
    color: #92400e; /* Dark yellowish orange/brown */
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.original-strike {
    font-size: 1.25rem;
    color: var(--text-gray);
    text-decoration: line-through;
    font-weight: 500;
}

.actual-price-row {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.actual-price-row .rupee-symbol {
    font-size: 1.75rem;
    color: var(--primary);
    vertical-align: super;
    margin-right: 0.15rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 1rem;
    color: #e2e8f0;
}

.pricing-features li.yes {
    color: var(--text-light);
}

.pricing-features li.no {
    color: var(--text-gray);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-features li .check {
    color: var(--secondary);
    font-weight: bold;
}

.pricing-features li .cross {
    color: #ef4444;
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* Testimonials Infinite Scroll Slider */
.testimonials-section {
    background: rgba(11, 12, 16, 0.3);
}

.testimonials-track {
    animation: scrollRightToLeft 55s linear infinite;
}

.testimonial-card {
    width: 380px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #e2e8f0;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    margin-top: auto;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Subpages Content Details Layout */
.content-detail-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-info h1 {
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.content-info p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.content-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.content-bullets li {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 1.1rem;
}

.content-bullets li span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(15, 157, 88, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.content-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Us & Lead Form */
.contact-section-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.contact-item p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: rgba(11, 12, 16, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c3a 100%);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.5);
}

/* Footer */
footer {
    background: #06070a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 5% 2rem;
}

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

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about h3 span {
    color: var(--primary);
}

.footer-about p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.footer-links-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col ul a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-col ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

/* Floating Elements (Sticky UI) */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none; /* Show only on mobile/tablet */
    grid-template-columns: 1fr 1fr;
    z-index: 999;
}

.sticky-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
}

.sticky-action-btn.call {
    background: var(--primary);
}

.sticky-action-btn.whatsapp {
    background: var(--secondary);
}

.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(15, 157, 88, 0.4);
    transition: var(--transition);
    z-index: 998;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Exit Intent Popup */
.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.exit-intent-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup-card {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.exit-intent-overlay.active .exit-popup-card {
    transform: scale(1);
}

.close-popup-btn {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-popup-btn:hover {
    color: var(--white);
}

.exit-popup-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.exit-popup-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Legal Pages Styling */
.legal-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.legal-container h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-container ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.legal-container ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
}

.legal-container ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.alert-box {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.alert-box h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.alert-box p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Keyframes */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsiveness */
@media (max-width: 992px) {
    .content-detail-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-section-container {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    header .nav-cta {
        display: none;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0b0c10;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow);
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    section {
        padding: 4rem 5%;
    }
    .sticky-bar {
        display: grid;
    }
    body {
        padding-bottom: 55px; /* Prevent content under sticky bar */
    }
    .floating-whatsapp {
        bottom: 5.5rem; /* Move up to prevent overlap with sticky bar */
        right: 1.5rem;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing & Urgent Offers */
.price-original {
    font-size: 1.35rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-right: 0.5rem;
    font-weight: 500;
}
.discount-tag {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-weight: 700;
    margin-left: 0.5rem;
}
.countdown-banner {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(239, 68, 68, 0.15) 100%);
    border: 1px dashed var(--primary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.countdown-banner h3 {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}
.countdown-banner p {
    font-size: 1.1rem;
    color: var(--text-light);
}
.countdown-time {
    font-weight: 800;
    color: #ef4444;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: inline-block;
    margin-top: 0.25rem;
}
