/* ========================================
   PROFESSIONAL WEBSITE STYLES
   DecodeLifeWithAkshadda
======================================== */

/* Root Variables */
:root {
    /* Color Palette - Sophisticated & Elegant */
    --primary-dark: #1a1a2e;
    --primary-navy: #16213e;
    --accent-gold: #d4af37;
    --accent-gold-light: #e8c468;
    --accent-purple: #6c5ce7;
    --accent-purple-light: #a29bfe;
    
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-light: #b2bec3;
    --text-white: #ffffff;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --bg-overlay: rgba(26, 26, 46, 0.85);
    
    --border-light: #e1e8ed;
    --border-medium: #dfe6e9;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.navbar.scrolled {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    gap: 2rem;
}

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

.logo-icon {
    font-size: 1.75rem;
    color: #3b82f6;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.5px;
    margin: 0;
}

.logo-tagline {
    font-size: 0.65rem;
    color: #3b82f6;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    font-family: var(--font-body);
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    transform: translateY(-1px);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #3b82f6;
    transition: all var(--transition-fast);
}

/* ========================================
   STICKY OFFER BAR
======================================== */
.sticky-offer-bar {
    position: fixed;
    top: -150px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    z-index: 998;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-top: 2px solid #ff6b6b;
    transition: top var(--transition-slow);
}

.sticky-offer-bar.visible {
    top: 76px;
}

.sticky-offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0 0.4rem 0;
    gap: 2rem;
    min-height: 50px;
}

.sticky-offer-text {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.sticky-offer-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.85rem;
    border-radius: 30px;
    animation: badge-pulse 2s infinite;
    display: inline-flex;
    align-items: center;
    align-self: center;
    line-height: 1;
}

.sticky-offer-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    line-height: 1;
    align-self: center;
}

.sticky-price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 500;
    line-height: 1;
}

.sticky-offer-price i {
    font-size: 1rem;
}

.sticky-price-new {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.btn-sticky-cta {
    background: var(--text-white);
    color: #e74c3c;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    white-space: nowrap;
    animation: btn-shake-subtle 3s infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: center;
    line-height: 1;
}

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

.btn-sticky-cta:hover {
    background: #fff5f5;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: none;
}

@keyframes btn-shake-subtle {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: var(--text-white);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

.btn-nav-cta {
    background: #3b82f6;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transition: all var(--transition-normal);
    animation: nav-btn-glow 3s infinite;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background: rgba(59, 130, 246, 0.25);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    animation: none;
    border: 1px solid #3b82f6;
}

@keyframes nav-btn-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    }
}

.btn-submit {
    width: 100%;
}

.btn-service {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.btn-primary-service {
    background: var(--primary-dark);
    color: var(--text-white);
}

.btn-primary-service:hover {
    background: var(--primary-navy);
    transform: translateY(-3px);
}

.btn-outline-service {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--border-medium);
}

.btn-outline-service:hover {
    background: var(--bg-light);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 120px 0 80px;
    color: var(--text-white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Numbers Background */
.floating-numbers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    perspective: 1000px;
}

.floating-number {
    position: absolute;
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: rgba(59, 130, 246, 0.3);
    animation: float-up 10s ease-in-out infinite;
    animation-fill-mode: both;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

@keyframes float-up {
    0% {
        transform: translateY(120vh) translateZ(0px) scale(0.8);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(50vh) translateZ(50px) scale(1.2);
        opacity: 0.6;
    }
    95% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-20vh) translateZ(100px) scale(0.8);
        opacity: 0;
    }
}

.floating-number:nth-child(odd) {
    animation-duration: 12s;
}

.floating-number:nth-child(even) {
    animation-duration: 10s;
}

.floating-number:nth-child(3n) {
    animation-duration: 14s;
}

.floating-number:nth-child(4n) {
    animation-duration: 11s;
}

.floating-number:nth-child(5n) {
    animation-duration: 13s;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Offer Container */
.offer-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.98));
    border-radius: 20px;
    padding: 3rem;
    margin: 2.5rem auto;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
    position: relative;
    color: var(--text-primary);
    border: 2px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

@keyframes offer-glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
    }
    50% {
        box-shadow: 0 25px 70px rgba(59, 130, 246, 0.35);
    }
}

.offer-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    animation: badge-pulse 2s infinite;
}

.badge-label {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--text-white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.offer-content h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.price-container {
    margin-bottom: 2.5rem;
    text-align: center;
}

.price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.discount-label {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--text-white);
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.original-price {
    font-size: 2rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 600;
}

.price-arrow {
    color: #3b82f6;
    font-size: 1.75rem;
}

.final-price {
    font-size: 3.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.offer-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.offer-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.offer-features li:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(255, 255, 255, 1));
    border-color: #3b82f6;
    border-width: 2px;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
    font-weight: 600;
}

.offer-features li:hover::before {
    left: 100%;
}

.offer-features li:hover i {
    color: #2563eb;
    transform: scale(1.4);
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 6px rgba(59, 130, 246, 0.6));
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.offer-features i {
    color: #3b82f6;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-weight: 600;
}

.offer-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.offer-cta .btn {
    width: 100%;
    max-width: 500px;
    justify-content: center;
    font-size: 1.05rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
}

/* ========================================
   MODERN OFFER SECTION
======================================== */
.offer-container-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.95));
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    position: relative;
    border: 2px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.offer-badge-modern {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    animation: badge-bounce 2s infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-badge-modern i {
    font-size: 1rem;
    animation: fire-flicker 1.5s infinite;
}

@keyframes badge-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes fire-flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.offer-header-modern {
    text-align: center;
    margin-bottom: 2.5rem;
}

.offer-title-modern {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.offer-subtitle-modern {
    font-size: 1.05rem;
    color: #3b82f6;
    font-weight: 500;
    margin: 0;
}

.price-showcase-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.price-card-old,
.price-card-new {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 160px;
}

.price-card-old {
    border: 2px solid #e5e7eb;
}

.price-card-new {
    border: 2px solid #3b82f6;
    position: relative;
}

.price-label-small {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-old-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-new-large {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.save-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.price-arrow-modern {
    font-size: 2rem;
    color: #3b82f6;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2.5rem 0;
}

.feature-item-modern {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.feature-item-modern i {
    font-size: 1.5rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.feature-item-modern span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.offer-cta-modern {
    margin-top: 2.5rem;
    text-align: center;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-modern-primary i {
    transition: transform 0.3s ease;
}

.btn-modern-primary:hover i {
    transform: translateX(5px);
}


/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.star-rating {
    margin-top: 0.5rem;
}

.star-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-medium);
}

/* ========================================
   SECTIONS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-title-about {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    line-height: 1.3;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #3b82f6;
    margin: 1.5rem auto;
}

.section-divider.left {
    margin-left: 0;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    transition: all var(--transition-normal);
    filter: brightness(0.3) saturate(1.2);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.7));
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scale(1.1);
    filter: brightness(0.4);
}

.service-card.service-special:hover {
    transform: none;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3), 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: #34d399;
    border-width: 3px;
}

.service-card.service-special:hover::before {
    transform: none;
    filter: brightness(0.35) saturate(1.2);
}

.service-card.featured-service {
    border: 2px solid #3b82f6;
}

.service-card.featured-service::after {
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.35), rgba(26, 26, 46, 0.65));
}

/* Tarot + Numerology Session - Tarot cards with life themes (Position 1) */
.service-card:nth-child(1)::before {
    background-image: url('https://images.unsplash.com/photo-1510511459019-5dda7724fd87?w=1200&q=80');
}

/* Numerology Report - Vedic grid/chart/numerology symbols (Position 2) */
.service-card.featured-service::before {
    background-image: url('https://images.unsplash.com/photo-1509228468518-180dd4864904?w=1200&q=80');
}

/* Baby Name Numerology - Cute baby in parent's hands (Position 3) */
.service-card:nth-child(3)::before {
    background-image: url('https://images.unsplash.com/photo-1515488042361-ee00e0ddd4e4?w=1200&q=80');
    filter: brightness(0.35) contrast(1.1) saturate(1.2);
}

.service-card.service-special {
    border: 2px solid #10b981;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3), 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
}

.service-card.service-special::after {
    background: linear-gradient(to bottom, rgba(16, 46, 35, 0.25), rgba(16, 46, 35, 0.50));
}

.service-card.service-special .service-badge-special {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5), 0 0 20px rgba(16, 185, 129, 0.3);
    animation: badge-pulse 2s infinite;
}

.service-card.service-special .service-details {
    background: rgba(16, 185, 129, 0.3);
    border-left-color: #34d399;
}

.service-card.service-special .service-details i {
    color: #34d399;
}

.service-card.service-special .service-title {
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9), 0 0 25px rgba(16, 185, 129, 0.6);
    background: linear-gradient(to right, rgba(16, 185, 129, 0.25), rgba(255, 255, 255, 0.18), rgba(16, 185, 129, 0.25));
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.service-card.service-special .service-description {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.service-card.service-special .price-new {
    color: #34d399;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 25px rgba(16, 185, 129, 0.7);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}


.service-badge-special {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--text-white);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    animation: badge-pulse 2s infinite;
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    margin-top: 0;
    font-weight: 700;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(255, 255, 255, 0.15), rgba(59, 130, 246, 0.2));
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

.service-description {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.service-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(59, 130, 246, 0.3);
    border-left: 3px solid #60a5fa;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.service-details i {
    color: #60a5fa;
    font-size: 1rem;
}

.service-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: #3b82f6;
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

.service-pricing {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.pricing-row.single {
    justify-content: center;
}

.pricing-row.highlight {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    padding: 0.5rem;
    margin: 0 -0.5rem 0.75rem;
    border-radius: 4px;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.price-old {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.price-new {
    font-size: 2rem;
    font-weight: 700;
    color: #60a5fa;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(59, 130, 246, 0.6);
}

/* ========================================
   VEDIC NUMEROLOGY EXCELLENCE SECTION
======================================== */
.vedic-product {
    padding: 80px 0;
    background: var(--bg-white);
}

.vedic-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.section-title-vedic {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vedic-info-frame {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.8), rgba(255, 255, 255, 0.9));
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.vedic-info-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
}

.vedic-text-content {
    position: relative;
    z-index: 1;
}

.vedic-paragraph {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.vedic-paragraph strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.vedic-paragraph em {
    color: #3b82f6;
    font-style: italic;
    font-weight: 600;
}

.vedic-final {
    margin-bottom: 0;
    font-weight: 500;
}

/* ========================================
   COMING SOON BANNER
======================================== */
.coming-soon-banner {
    padding: 0.75rem 0; /* Reduced from 1.25rem */
    position: relative;
    overflow: hidden;
    margin: 1rem 0; /* Reduced from 1.5rem */
}

.coming-soon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1200&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    z-index: 0;
}

.coming-soon-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(139, 92, 246, 0.6));
    z-index: 0;
}

.banner-announcements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the square ads */
    gap: 1rem;
    position: relative;
    z-index: 1;
    max-width: 900px; /* Limit total width */
    margin: 0 auto; /* Center the container */
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem; /* Adjusted for square */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(147, 51, 234, 0.3);
    width: 280px; /* Fixed square width */
    aspect-ratio: 1; /* Make it square */
    text-align: center;
    flex-shrink: 0;
}

.banner-icon {
    width: 50px; /* Adjusted for square */
    height: 50px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(124, 58, 237, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    border: 2px solid rgba(168, 85, 247, 0.5);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.8));
    flex-shrink: 0;
    margin-bottom: 0.25rem;
}

.banner-text {
    flex: 1;
    color: var(--text-white);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.banner-text h3 {
    font-size: 0.95rem; /* Further reduced for square */
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(147, 51, 234, 0.8), 0 4px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to right, rgba(168, 85, 247, 0.2), rgba(255, 255, 255, 0.15), rgba(168, 85, 247, 0.2));
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1.3;
}

.banner-text p {
    font-size: 0.75rem; /* Further reduced for square */
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    line-height: 1.3; /* Tighter line height */
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner-badge {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: var(--text-white);
    padding: 0.4rem 0.8rem; /* Adjusted for square */
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.75rem; /* Further reduced for square */
    animation: badge-pulse 2s infinite;
    flex-shrink: 0;
    border: 2px solid rgba(168, 85, 247, 0.5);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.4);
    margin-top: auto; /* Push to bottom in flex layout */
}

/* ========================================
   PROCESS SECTION - SLIDER
======================================== */
.process {
    padding: 70px 0;
    background: var(--bg-light);
}

.process-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-slider-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.process-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.process-slide.prev {
    transform: translateX(-100%) scale(0.95);
}

.slide-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    transition: transform 0.8s ease;
}

.slide-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.7));
}

.process-slide.active .slide-background {
    transform: scale(1.1);
}

.slide-bg-1 {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1200&q=80');
}

.slide-bg-2 {
    background-image: url('https://images.unsplash.com/photo-1586281380349-632531db7ed4?w=1200&q=80');
}

.slide-bg-3 {
    background-image: url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?w=1200&q=80');
}

.slide-bg-4 {
    background-image: url('https://images.unsplash.com/photo-1484480974693-6ca0a78fb36b?w=1200&q=80');
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
}

.slide-number {
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.3;
    font-family: var(--font-heading);
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.slide-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(59, 130, 246, 0.5);
    color: var(--text-white);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(59, 130, 246, 0.2), rgba(255, 255, 255, 0.1));
    padding: 0.75rem 2rem;
    border-radius: 8px;
    display: inline-block;
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-medium);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background: #3b82f6;
    width: 40px;
    border-radius: 6px;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tagline {
    font-size: 1.1rem;
    color: #3b82f6;
    font-weight: 600;
    margin-top: 0.5rem;
    font-style: italic;
}

.founder-story-frame-with-image {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.8), rgba(255, 255, 255, 0.9));
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem; /* Reduced from 3rem */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2rem; /* Reduced from 3rem */
    align-items: flex-start;
}

.founder-story-frame-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
}

.founder-image-section {
    flex-shrink: 0;
    width: 220px; /* Reduced from 280px */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.founder-image-wrapper-integrated {
    position: relative;
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    width: 180px; /* Reduced from 240px */
    height: 180px; /* Reduced from 240px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image-circle {
    width: 160px; /* Reduced from 220px */
    height: 160px; /* Reduced from 220px */
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid #3b82f6; /* Reduced from 5px */
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
    display: block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
}

.image-frame {
    position: absolute;
    top: -8px; /* Adjusted */
    left: -8px; /* Adjusted */
    width: 180px; /* Reduced from 240px */
    height: 180px; /* Reduced from 240px */
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    z-index: 1;
}

.founder-name {
    font-size: 1.25rem; /* Reduced from 1.5rem */
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0.75rem 0 0.25rem; /* Reduced from 1rem */
    width: 100%;
}

.founder-designation {
    font-size: 0.95rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 0;
    width: 100%;
}

.story-content-integrated {
    flex: 1;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.founder-profile {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.founder-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.founder-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid #3b82f6;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.image-overlay i {
    font-size: 5rem;
    color: #3b82f6;
    opacity: 0.3;
}

.certification-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.certification-badge i {
    font-size: 2rem;
    color: #3b82f6;
}

.certification-badge span {
    font-weight: 600;
    color: var(--primary-dark);
}

.certification-badge-compact {
    margin-top: 0;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-white);
    width: fit-content;
}

.certification-badge-compact i {
    font-size: 1rem;
}

.certification-badge-compact span {
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.founder-story-frame {
    flex: 1;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.8), rgba(255, 255, 255, 0.9));
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.founder-story-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
}

.story-content {
    position: relative;
    z-index: 1;
}

.story-paragraph {
    font-size: 0.9rem; /* Reduced from 1rem */
    color: var(--text-secondary);
    margin-bottom: 1rem; /* Reduced from 1.25rem */
    line-height: 1.6; /* Reduced from 1.8 */
    text-align: justify;
}

.story-paragraph em {
    color: #3b82f6;
    font-style: italic;
    font-weight: 600;
}

.story-paragraph strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.story-highlight {
    color: #3b82f6;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    display: inline;
}

.story-final {
    margin-bottom: 0;
    font-weight: 500;
}

.about-text {
    text-align: left;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-description em {
    color: #3b82f6;
    font-style: italic;
    font-weight: 600;
}

.about-description strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.credentials {
    margin-top: 3rem;
}

.credential-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.credential-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.credential-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.credential-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.95));
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
    text-align: center;
    backdrop-filter: blur(10px);
}

.quote-icon-modern {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    margin-bottom: 2rem;
}

.testimonial-rating i {
    color: #3b82f6;
    font-size: 1.25rem;
    margin: 0 0.15rem;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.testimonial-text-modern {
    color: var(--text-primary);
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 500;
    position: relative;
    padding: 0 1rem;
}

.testimonial-text-modern::before {
    content: '"';
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.2);
    position: absolute;
    left: -10px;
    top: -20px;
    font-family: Georgia, serif;
}

.testimonial-text-modern::after {
    content: '"';
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.2);
    position: absolute;
    right: -10px;
    bottom: -30px;
    font-family: Georgia, serif;
}

.testimonial-name {
    color: #3b82f6;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    pointer-events: none;
}

.slider-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.2;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   BOOKING SECTION
======================================== */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.booking-info {
    text-align: left;
}

.booking-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.security-note i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.security-note span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Modern Contact Info */
.contact-info-modern {
    margin-bottom: 3rem;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item-modern:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-3px);
}

.contact-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-details-modern h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-details-modern p {
    color: #3b82f6;
    margin: 0;
    font-weight: 500;
    font-size: 0.95rem;
}

.security-note-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.security-note-modern i {
    color: #10b981;
    font-size: 1.25rem;
}

.security-note-modern span {
    color: #065f46;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Booking Form */
.booking-form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
    border: 2px solid rgba(59, 130, 246, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* ========================================
   CONTACT SECTION - MODERN SOCIAL LINKS
======================================== */
.contact {
    padding: 70px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.social-links-modern {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.social-link-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 200px;
}

.social-link-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.social-link-modern.facebook:hover {
    border-color: #1877f2;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.05), rgba(24, 119, 242, 0.1));
}

.social-link-modern.facebook:hover i {
    color: #1877f2;
}

.social-link-modern.instagram:hover {
    border-color: #e1306c;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.05), rgba(225, 48, 108, 0.1));
}

.social-link-modern.instagram:hover i {
    color: #e1306c;
}

.social-link-modern i {
    font-size: 2.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.social-link-modern span {
    transition: color 0.3s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: #3b82f6;
    color: var(--text-white);
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link i {
    font-size: 1.25rem;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
    justify-items: start;
}

.footer-brand {
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
}

.footer-logo h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.7rem;
    color: #3b82f6;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.9;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section h4 {
    color: #3b82f6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: left;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
    width: 100%;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer-contact {
    text-align: left;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.footer-contact i {
    color: #3b82f6;
    margin-top: 0.25rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-social-modern {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
    align-items: center;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social-icon.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.footer-social-icon.facebook:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.footer-social-icon.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.footer-social-icon.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

/* ========================================
   POLICY MODAL
======================================== */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.policy-modal.active {
    display: flex;
}

.policy-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
}

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

.policy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.policy-modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.policy-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.policy-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.policy-modal-body {
    padding: 2rem;
    overflow-y: auto;
    line-height: 1.8;
}

.policy-modal-body h3 {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.policy-modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.policy-modal-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.policy-modal-body ul li {
    margin-bottom: 0.5rem;
}

.policy-modal-body a {
    color: #3b82f6;
    text-decoration: underline;
}

.policy-modal-body a:hover {
    color: #2563eb;
}

/* ========================================
   BLOGS PAGE
======================================== */
.blogs-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.blogs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blogs-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blogs-hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.blogs-research-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.blogs-research-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1200&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.2);
    opacity: 0.3;
    z-index: 0;
}

.blogs-research-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.blogs-research-icon {
    font-size: 3.5rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.blogs-research-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.blogs-research-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    text-align: left;
}

.blogs-research-text strong {
    color: #3b82f6;
    font-weight: 600;
}

.blogs-research-update {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.blogs-research-update i {
    color: #3b82f6;
    font-size: 1.3rem;
    margin-top: 0.2rem;
    animation: spin 3s linear infinite;
}

.blogs-research-update strong {
    color: #60a5fa;
    font-weight: 600;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.blogs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.blog-category i {
    font-size: 0.9rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-date i,
.blog-read-time i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.blog-author-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 600;
}

.blog-author-mini i {
    font-size: 0.9rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 1rem;
    color: #2563eb;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-coming-soon {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    font-weight: 500;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    padding: 2rem;
}

.blog-modal.active {
    display: flex;
}

.blog-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
}

.blog-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
    display: flex;
    justify-content: flex-end;
}

.blog-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.blog-modal-close:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transform: rotate(90deg);
}

.blog-modal-body {
    padding: 2rem 3rem 3rem;
    overflow-y: auto;
    line-height: 1.8;
}

.blog-full-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
}

.blog-full-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-full-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.blog-full-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-full-content ul li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.blog-full-content ul li strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.blog-full-content em {
    color: #3b82f6;
    font-style: italic;
    font-weight: 600;
}

.blog-full-content strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.blog-closing {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-dark);
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.6), rgba(255, 255, 255, 0.8));
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    margin-top: 2rem;
}

.blog-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.blog-cta p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.blog-cta .btn {
    display: inline-flex;
}

/* Individual Blog Article Page */
.blog-article-page {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.blog-article-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-breadcrumb {
    margin-bottom: 2rem;
}

.blog-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-breadcrumb a:hover {
    gap: 0.75rem;
    color: #2563eb;
}

.blog-article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-category-single {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    color: #3b82f6;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blog-article-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #3b82f6;
}

.blog-author i {
    font-size: 0.9rem;
}

.blog-article-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.blog-article-content .blog-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
}

.blog-article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.blog-article-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.blog-article-content ul {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.blog-article-content ul li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.blog-article-content ul li strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.blog-article-content em {
    color: #3b82f6;
    font-style: italic;
    font-weight: 600;
}

.blog-article-content strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.blog-article-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.blog-article-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.blog-article-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.blog-share-buttons {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(249, 250, 251, 0.8);
    border-radius: 12px;
    text-align: center;
}

.blog-share-buttons h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
}

.share-buttons-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.share-btn.instagram {
    background: linear-gradient(135deg, #e1306c, #c13584);
}

.share-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.share-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.share-btn.facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.share-btn.copy-link {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.share-btn.copy-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.blog-back-link {
    margin-top: 2rem;
    text-align: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-3px);
}

.blog-share-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.6), rgba(255, 255, 255, 0.8));
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.15);
}

.btn-share-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-share-blog:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-share-blog i {
    font-size: 1rem;
}

.share-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 1.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }

    .section-title-about {
        font-size: 1.85rem;
    }
    
    .about-content,
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .booking-info {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .booking-form-container {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
    }
    
    .booking-form {
        width: 100%;
        max-width: 100%;
    }
    
    .vedic-info-frame {
        padding: 2rem;
    }
    
    .section-title-vedic {
        font-size: 1.85rem;
    }
    
    .vedic-paragraph {
        text-align: left;
    }
    
    .banner-announcements {
        max-width: 100%;
        gap: 0.75rem;
    }
    
    .banner-content {
        width: 240px; /* Smaller square for mobile */
        padding: 1rem 0.75rem;
        gap: 0.5rem;
    }
    
    .banner-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .banner-text h3 {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }
    
    .banner-text p {
        font-size: 0.7rem;
    }
    
    .banner-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }
    
    
    .blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .blogs-hero-title {
        font-size: 2.25rem;
    }
    
    .blogs-research-title {
        font-size: 2rem;
    }
    
    .blogs-research-text {
        font-size: 1.05rem;
    }
    
    .blog-modal-body {
        padding: 1.5rem 2rem 2rem;
    }
    
    .blog-full-content h2 {
        font-size: 1.85rem;
    }
    
    .banner-text h3 {
        font-size: 1.25rem;
    }
    
    .banner-text p {
        font-size: 0.95rem;
    }
    
    .banner-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .banner-announcements {
        gap: 1rem;
    }
    
    .coming-soon-banner {
        padding: 1rem 0;
        margin: 1rem 0;
    }
    
    .process-slider-wrapper {
        height: 500px;
    }
    
    .slide-content {
        padding: 2rem;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        justify-items: start;
    }
    
    .footer-content .footer-section,
    .footer-content .footer-brand {
        text-align: left;
        width: 100%;
    }
    
    .footer-content .footer-section h4,
    .footer-content .footer-section ul {
        text-align: left;
    }
    
    .footer-content .footer-contact {
        text-align: left;
        justify-content: flex-start;
    }
    
    .footer-content .footer-contact li {
        justify-content: flex-start;
    }
    
    .footer-content .footer-social-modern {
        justify-content: flex-start;
    }
}

@media (max-width: 968px) {
    .sticky-offer-bar.visible {
        top: 75px;
    }
    
    .sticky-offer-content {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 0 0.3rem 0;
        min-height: 40px;
        align-items: center;
    }
    
    .sticky-offer-text {
        flex-direction: row;
        gap: 0.5rem;
        text-align: left;
        align-items: center;
        flex: 1;
        min-width: 0;
    }
    
    .sticky-offer-label {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .sticky-offer-price {
        font-size: 0.85rem;
        white-space: nowrap;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        gap: 0.5rem;
    }
    
    .sticky-offer-price i {
        font-size: 0.7rem;
    }
    
    .sticky-price-old {
        font-size: 0.75rem;
    }
    
    .sticky-price-new {
        font-size: 1rem;
    }
    
    .btn-sticky-cta {
        justify-content: center;
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .sticky-btn-text-full {
        display: none;
    }
    
    .sticky-btn-text-mobile {
        display: inline;
    }
    
    .btn-sticky-cta i {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column;
        padding: 2rem;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1.5rem;
    }
    
    .btn-nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        white-space: normal;
        padding: 1rem 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.55rem;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .offer-container {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
    
    .offer-content h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .offer-features li {
        font-size: 0.9rem;
    }
    
    .price-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .offer-container-modern {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    .offer-badge-modern {
        right: 20px;
        top: -15px;
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }

    .offer-title-modern {
        font-size: 1.5rem;
    }

    .offer-subtitle-modern {
        font-size: 0.95rem;
    }

    .price-showcase-modern {
        flex-direction: column;
        gap: 1rem;
    }

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

    .btn-modern-primary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    
    .footer-content .footer-section,
    .footer-content .footer-brand {
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    .footer-content .footer-logo {
        justify-content: center;
    }
    
    .footer-content .footer-section h4 {
        text-align: center;
    }
    
    .footer-content .footer-section ul {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .footer-content .footer-section ul li {
        display: flex;
        justify-content: center;
    }
    
    .footer-content .footer-section ul li a {
        justify-content: center;
    }
    
    .footer-content .footer-contact {
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .footer-content .footer-contact li {
        justify-content: center;
    }
    
    .footer-content .footer-social-modern {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .policy-modal-content {
        width: 95%;
    }
    
    .policy-modal-header {
        padding: 1.5rem;
    }
    
    .policy-modal-header h2 {
        font-size: 1.35rem;
    }
    
    .policy-modal-body {
        padding: 1.5rem;
    }
    
    .section-divider.left {
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-slide {
        padding: 2.5rem 2rem;
    }

    .quote-icon-modern {
        font-size: 2.5rem;
    }

    .testimonial-text-modern {
        font-size: 1.05rem;
        padding: 0 0.5rem;
    }

    .testimonial-text-modern::before,
    .testimonial-text-modern::after {
        font-size: 2rem;
    }

    .testimonial-rating i {
        font-size: 1.1rem;
    }

    .testimonial-name {
        font-size: 1.15rem;
    }
    
    .founder-story-frame-with-image {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem; /* Reduced from 2rem */
        gap: 1.5rem; /* Reduced from 2rem */
    }
    
    .founder-image-section {
        width: 100%;
        max-width: 200px; /* Reduced from 280px */
    }
    
    .founder-image-wrapper-integrated {
        width: 150px; /* Reduced from 200px */
        height: 150px; /* Reduced from 200px */
        margin-bottom: 0.75rem;
    }
    
    .founder-image-circle {
        width: 130px; /* Reduced from 180px */
        height: 130px; /* Reduced from 180px */
        border: 3px solid #3b82f6;
    }
    
    .image-frame {
        width: 150px; /* Reduced from 200px */
        height: 150px; /* Reduced from 200px */
        top: -6px;
        left: -6px;
    }
    
    .founder-name {
        font-size: 1.1rem; /* Reduced for mobile */
    }
    
    .story-paragraph {
        font-size: 0.85rem; /* Reduced for mobile */
        line-height: 1.5;
        margin-bottom: 0.875rem;
    }
    
    .story-content-integrated {
        width: 100%;
    }
    
    .founder-profile {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .founder-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .founder-story-frame {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1rem;
    }
    
    .logo-tagline {
        font-size: 0.5rem;
    }
    
    .btn-nav-cta {
        font-size: 0.8rem;
        padding: 0.875rem 1rem;
    }
    
    .sticky-offer-content {
        padding: 0.5rem 0;
        min-height: auto;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .sticky-offer-text {
        flex: 1 1 100%;
        justify-content: center;
        gap: 0.5rem;
    }

    .sticky-offer-label {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
        white-space: nowrap;
    }
    
    .sticky-offer-price {
        gap: 0.4rem;
        white-space: nowrap;
    }
    
    .sticky-offer-price i {
        font-size: 0.6rem;
    }
    
    .sticky-price-old {
        font-size: 0.7rem;
    }
    
    .sticky-price-new {
        font-size: 1rem;
    }
    
    .btn-sticky-cta {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        width: 100%;
        flex: 1 1 100%;
        word-wrap: break-word;
    }
    
    .sticky-btn-text-full {
        display: none;
    }
    
    .sticky-btn-text-mobile {
        display: inline;
    }
    
    .btn-sticky-cta i {
        display: none;
    }

    .offer-container-modern {
        padding: 1.5rem 1rem;
    }

    .offer-badge-modern {
        right: 10px;
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .offer-title-modern {
        font-size: 1.25rem;
    }

    .price-old-large {
        font-size: 1.5rem;
    }

    .price-new-large {
        font-size: 2rem;
    }

    .feature-item-modern {
        padding: 0.75rem 1rem;
    }

    .feature-item-modern i {
        font-size: 1.25rem;
    }

    .feature-item-modern span {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.65rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .section-title-about {
        font-size: 1.5rem;
    }
    
    .final-price {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .booking {
        padding: 60px 0;
    }
    
    .booking-wrapper {
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .booking-info {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .booking-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .booking-form-container {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .booking-form {
        width: 100%;
        max-width: 100%;
        gap: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
    
    .contact-item-modern {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    
    .contact-details-modern h4 {
        font-size: 1rem;
    }
    
    .contact-details-modern p {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .security-note-modern {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .social-links-modern {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .social-link-modern {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .social-links {
        flex-direction: column;
        width: 100%;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info-modern {
        margin-bottom: 2rem;
    }
    
    .testimonial-slide {
        padding: 2rem 1.5rem;
    }

    .quote-icon-modern {
        font-size: 2rem;
    }

    .testimonial-text-modern {
        font-size: 0.95rem;
        line-height: 1.8;
        padding: 0 0.25rem;
    }

    .testimonial-text-modern::before,
    .testimonial-text-modern::after {
        font-size: 1.5rem;
    }

    .testimonial-rating i {
        font-size: 1rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .slider-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .founder-image-wrapper-integrated {
        width: 170px;
        height: 170px;
    }
    
    .founder-image-circle {
        width: 150px;
        height: 150px;
    }
    
    .image-frame {
        width: 170px;
        height: 170px;
    }
    
    .founder-story-frame-with-image {
        padding: 1.25rem; /* Further reduced for small mobile */
        gap: 1.25rem;
    }
    
    .founder-image-section {
        max-width: 100%;
        width: 100%;
    }
    
    .founder-image-wrapper-integrated {
        width: 130px; /* Further reduced for small mobile */
        height: 130px;
    }
    
    .founder-image-circle {
        width: 110px; /* Further reduced for small mobile */
        height: 110px;
    }
    
    .image-frame {
        width: 130px; /* Further reduced for small mobile */
        height: 130px;
    }
    
    .founder-name {
        font-size: 1rem; /* Further reduced for small mobile */
    }
    
    .founder-designation {
        font-size: 0.85rem;
    }
    
    .founder-story-frame {
        padding: 1.5rem;
    }
    
    .story-paragraph {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .social-link-modern {
        padding: 1.5rem 2rem;
        min-width: auto;
    }
    
    .social-link-modern i {
        font-size: 2rem;
    }
    
    .vedic-info-frame {
        padding: 1.5rem;
    }
    
    .section-title-vedic {
        font-size: 1.5rem;
    }
    
    .vedic-paragraph {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .about-header {
        margin-bottom: 2.5rem;
    }
    
    .section-tagline {
        font-size: 0.95rem;
    }
    
    .certification-badge-compact {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .blogs-hero {
        padding: 100px 0 60px;
    }
    
    .blogs-hero-title {
        font-size: 1.75rem;
    }
    
    .blogs-hero-description {
        font-size: 1rem;
    }
    
    .blogs-research-section {
        padding: 40px 0;
    }
    
    .blogs-research-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .blogs-research-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .blogs-research-text {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .blogs-research-update {
        font-size: 0.9rem;
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .blogs-research-update i {
        font-size: 1.1rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.25rem;
    }
    
    .blog-modal {
        padding: 1rem;
    }
    
    .blog-modal-body {
        padding: 1rem 1.5rem 2rem;
    }
    
    .blog-full-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-full-content h3 {
        font-size: 1.25rem;
    }
    
    .blog-article-page {
        padding: 100px 0 60px;
    }
    
    .blog-article-title {
        font-size: 2rem;
    }
    
    .blog-article-content {
        padding: 2rem;
    }
    
    .blog-article-content h2 {
        font-size: 1.5rem;
    }
    
    .share-buttons-group {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Pulse animation for CTA button */
@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    }
}

.pulse-animation {
    animation: pulse-button 2s infinite;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #60a5fa;
}

