/* ===================================
   RISING STAR DIGITAL - MAIN CSS
   Ultra Premium International Design
   =================================== */

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

:root {
    --primary: #ec4899;
    --primary-dark: #db2777;
    --secondary: #f59e0b;
    --accent: #f59e0b;
    --navy: #0f172a;
    --navy-mid: #1e3a8a;
    --navy-dark: #020617;
    --pink: #ec4899;
    --pink-light: #f9a8d4;
    --yellow: #f59e0b;
    --yellow-light: #fbbf24;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f0f4ff;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #ec4899 60%, #f59e0b 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    --gradient-navy: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-premium: 0 32px 64px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
    --border-radius-lg: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.02em;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* ===================================
   PREMIUM NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(226, 232, 240, 1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    transition: var(--transition);
}

.logo-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.2);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    background: white;
    padding: 2px;
}

.logo:hover .logo-image {
    transform: scale(1.1);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.logo-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #7c3aed, #ec4899, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

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

.logo-text {
    background: linear-gradient(135deg, #7c3aed, #ec4899, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius);
    padding: 1.5rem 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.05), rgba(236, 72, 153, 0.05));
    color: var(--primary);
    transform: translateX(4px);
}

.dropdown-menu a i {
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #6d28d9 0%, #be185d 50%, #d97706 100%);
}

.btn-nav.active {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-lg);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================================
   PREMIUM HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 40%, #1a1040 70%, #0f172a 100%);
    padding: 160px 24px 140px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(236, 72, 153, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(245, 158, 11, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-bg-shapes { 
    position: absolute; 
    inset: 0; 
    z-index: 0; 
    overflow: hidden; 
}

.hbs {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatBlob 20s ease-in-out infinite;
}

.hbs-1 { 
    width: 700px; 
    height: 700px; 
    background: linear-gradient(135deg, #1e3a8a, #2563eb); 
    top: -300px; 
    right: -200px; 
    animation-delay: 0s;
}

.hbs-2 { 
    width: 500px; 
    height: 500px; 
    background: linear-gradient(135deg, #ec4899, #f472b6); 
    bottom: -200px; 
    left: -150px; 
    animation-delay: 5s;
}

.hbs-3 { 
    width: 350px; 
    height: 350px; 
    background: linear-gradient(135deg, #f59e0b, #fbbf24); 
    top: 40%; 
    left: 10%; 
    animation-delay: 10s;
}

.hbs-4 { 
    width: 250px; 
    height: 250px; 
    background: linear-gradient(135deg, #1e3a8a, #ec4899); 
    top: 20%; 
    right: 20%; 
    animation-delay: 15s;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25%  { transform: translate(60px, -60px) scale(1.1) rotate(90deg); }
    50%  { transform: translate(-40px, 40px) scale(0.9) rotate(180deg); }
    75%  { transform: translate(40px, -40px) scale(1.05) rotate(270deg); }
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge-wrap { 
    margin-bottom: 2rem; 
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-lg);
}

.badge-dot {
    width: 10px; 
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

@keyframes pulseDot {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); 
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); 
    }
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    text-align: center;
    width: 100%;
}

.typed-line {
    display: block;
    min-height: 1.3em;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #7c3aed 25%, #ec4899 50%, #fbbf24 75%, #fde047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
    0%   { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.typed-cursor {
    display: inline-block;
    color: #ec4899;
    font-weight: 300;
    animation: blink 1s step-end infinite;
    margin-left: 3px;
    -webkit-text-fill-color: #ec4899;
}

@keyframes blink { 
    0%, 100% { opacity: 1; } 
    50% { opacity: 0; } 
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    text-align: center;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

.hero-btn-primary {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: var(--white);
    padding: 1.25rem 2.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.hero-btn-primary .btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.hero-btn-primary:hover .btn-glow { 
    transform: translateX(100%); 
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.6);
    background: linear-gradient(135deg, #6d28d9, #db2777);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1.25rem 2.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.hero-btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1.25rem 2.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-4px);
    backdrop-filter: blur(8px);
}

/* Trust Bar */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.hero-trust i { color: #fbbf24; margin-right: 5px; }
.trust-dot { opacity: 0.3; }

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 780px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, #fff 0%, #f9a8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-item p {
    font-size: 0.82rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.scroll-dot {
    width: 2px;
    height: 12px;
    background: var(--pink);
    border-radius: 2px;
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0%   { transform: translateY(-12px); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translateY(40px); opacity: 0; }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: 120px 20px;
    background: var(--light);
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #ec4899);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
    color: var(--pink);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.cs1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cs2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

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

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

.cta-buttons .hero-btn-primary,
.cta-buttons .hero-btn-outline {
    flex-shrink: 0;
    white-space: nowrap;
    min-width: auto;
}

/* Enhanced CTA Section */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1.25rem 2.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #020617;
    color: var(--white);
    padding: 80px 20px 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 2px;
    background: white;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.footer-col p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--pink);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.contact-info li i {
    color: var(--pink);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: var(--white);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light);
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #0f172a 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ===================================
   ABOUT STORY
   =================================== */
.about-story {
    padding: 100px 20px;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* ===================================
   MISSION & VISION
   =================================== */
.mission-vision {
    padding: 100px 20px;
    background: var(--light);
}

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

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.mv-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===================================
   TEAM SECTION
   =================================== */
.team-section {
    padding: 100px 20px;
}

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

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-placeholder {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: var(--white);
    transition: var(--transition);
}

.team-member:hover .member-placeholder {
    transform: scale(1.05);
}

.team-member h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.member-role {
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-choose {
    padding: 100px 20px;
    background: var(--light);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.feature-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===================================
   RESPONSIVE - ABOUT PAGE
   =================================== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .mv-grid,
    .team-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   VIDEO HERO BACKGROUND
   =================================== */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(236, 72, 153, 0.9) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-us-section {
    padding: 120px 20px;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-us-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.usp-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.usp-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--dark);
    border-bottom: 1px solid var(--light);
}

.usp-list li:last-child {
    border-bottom: none;
}

.usp-list i {
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-us-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: moveGrid 20s linear infinite;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter-section {
    padding: 80px 20px;
    background: var(--light);
}

.newsletter-content {
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.newsletter-text p {
    color: var(--gray);
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--light);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--navy);
}

.newsletter-form button {
    white-space: nowrap;
}

/* ===================================
   ENHANCED CTA SECTION
   =================================== */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

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

/* ===================================
   FOOTER ENHANCEMENTS
   =================================== */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-newsletter h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.footer-newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
}

.footer-newsletter-form input::placeholder {
    color: var(--gray-light);
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--pink);
}

.footer-newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--pink);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter-form button:hover {
    background: var(--pink-light);
    transform: scale(1.1);
}

.footer-newsletter-mini {
    margin-top: 2rem;
}

.footer-newsletter-mini h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-newsletter-mini .footer-newsletter-form {
    max-width: 100%;
    gap: 0.5rem;
}

.footer-newsletter-mini .footer-newsletter-form input {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.footer-newsletter-mini .footer-newsletter-form button {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
}

.footer-map {
    margin-bottom: 3rem;
}

.map-placeholder {
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ===================================
   HOVER EFFECTS & ANIMATIONS
   =================================== */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.service-card:hover::after {
    left: 100%;
}

/* Smooth Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-primary:hover {
    animation: pulse 0.5s ease;
}

/* Gradient Animation */


/* ===================================
   RESPONSIVE - NEW SECTIONS
   =================================== */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .newsletter-content {
        padding: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
    }
    
    .footer-newsletter-form button {
        width: 100%;
        height: 50px;
        border-radius: 50px;
    }
    
    .image-placeholder {
        height: 300px;
        font-size: 4rem;
    }
    
    .usp-list li {
        font-size: 0.95rem;
    }
}

/* ===================================
   LOADING ANIMATION
   =================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light);
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */
[data-aos] {
    pointer-events: auto;
}

/* ===================================
   PREMIUM SHADOWS
   =================================== */
.premium-shadow {
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.02),
        0 4px 8px rgba(0,0,0,0.03),
        0 8px 16px rgba(0,0,0,0.04),
        0 16px 32px rgba(0,0,0,0.05);
}

/* ===================================
   GLASSMORPHISM EFFECT
   =================================== */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===================================
   HERO PARTICLES CANVAS
   =================================== */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===================================
   HERO BADGE WRAP & DOT
   =================================== */
.hero-badge-wrap {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease both;
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulseDot 1.5s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
    50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

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

/* ===================================
   HERO TYPED LINE
   =================================== */
.typed-line {
    display: block;
    min-height: 1.3em;
}

/* ===================================
   HERO TRUST BAR
   =================================== */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 3rem;
    font-size: 0.88rem;
    opacity: 0.85;
    color: var(--white);
}

.hero-trust i { color: #fbbf24; margin-right: 4px; }
.trust-dot { opacity: 0.4; font-size: 1.2rem; }

/* ===================================
   HERO BUTTONS
   =================================== */
.hero-btn-primary {
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(236,72,153,0.4);
}

.hero-btn-primary .btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.hero-btn-primary:hover .btn-glow { transform: translateX(100%); }

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #db2777, #d97706);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236,72,153,0.5);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

.hero-btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

/* ===================================
   TYPEWRITER / TEXT ROTATOR
   =================================== */
.typed-text {
    display: inline-block;
    min-width: 2px;
}

.typed-cursor {
    display: inline-block;
    color: #f472b6;
    font-weight: 300;
    animation: blink 0.75s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===================================
   OUR TEAM PAGE
   =================================== */
.team-page-section {
    padding: 120px 20px;
    background: var(--light);
}

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

.team-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.team-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background: var(--gradient-primary);
}

.team-card-img-placeholder {
    width: 100%;
    height: 280px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.team-card-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
}

.team-card-body {
    padding: 1.75rem 1.5rem;
}

.team-card-body h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.team-card-role {
    color: var(--pink);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-card-bio {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.team-card-social {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}

.team-card-social a {
    width: 38px;
    height: 38px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.team-card-social a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.team-departments {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.dept-filter {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--light);
    background: var(--white);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.dept-filter.active,
.dept-filter:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.team-join-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #ec4899 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    margin-top: 5rem;
}

.team-join-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.team-join-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .team-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    .team-card-img-placeholder {
        height: 220px;
    }
}

/* ===================================
   COMPREHENSIVE RESPONSIVE OVERHAUL
   =================================== */

/* ---- LARGE DESKTOP (1400px+) ---- */
@media (min-width: 1400px) {
    .hero-title { font-size: 5rem; }
    .container { max-width: 1320px; }
}

/* ---- TABLET LANDSCAPE (1024px) ---- */
@media (max-width: 1024px) {
    .nav-container { padding: 1rem 1.5rem; }
    .nav-menu { gap: 1.2rem; }
    .nav-link { font-size: 0.88rem; }

    .hero { padding: 100px 20px 70px; }
    .hero-title { font-size: 3.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .stat-number { font-size: 2.8rem; }

    .section-title { font-size: 2.4rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { padding: 2rem; }

    .why-us-grid { grid-template-columns: 1fr; gap: 3rem; }
    .image-placeholder { height: 380px; font-size: 6rem; }

    .newsletter-content { flex-direction: column; text-align: center; }
    .newsletter-form { min-width: 100%; }

    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

    .team-page-grid { grid-template-columns: repeat(3, 1fr); }
    .mv-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- TABLET PORTRAIT (768px) ---- */
@media (max-width: 768px) {

    /* --- NAVBAR --- */
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 2rem 2rem;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active { right: 0; }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light);
    }

    .nav-menu li:last-child { border-bottom: none; margin-top: 1rem; }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .nav-link::after { display: none; }

    .btn-nav {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
        padding: 0.9rem 1.5rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light);
        border-radius: 12px;
        padding: 0.5rem 0;
        margin: 0.5rem 0 1rem 1rem;
        min-width: unset;
    }

    .dropdown-menu a { padding: 0.6rem 1rem; font-size: 0.9rem; }

    /* Mobile overlay when menu open */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }
    .nav-overlay.active { display: block; }

    /* --- HERO --- */
    .hero { padding: 100px 16px 60px; min-height: auto; }
    .hero-title { font-size: 2.2rem; line-height: 1.3; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .hero-badge { font-size: 0.8rem; padding: 0.6rem 1.2rem; margin-bottom: 1.5rem; }

    .hero-cta { flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 3rem; }
    .hero-cta .btn,
    .hero-btn-primary, .hero-btn-secondary, .hero-btn-outline { width: 100%; max-width: 320px; justify-content: center; }

    .hero-trust { gap: 0.5rem; font-size: 0.78rem; }
    .trust-dot { display: none; }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    .stat-number { font-size: 2.2rem; }
    .stat-item p { font-size: 0.85rem; }

    .shape-1 { width: 250px; height: 250px; }
    .shape-2 { width: 200px; height: 200px; }
    .shape-3 { width: 150px; height: 150px; }

    /* --- SECTIONS --- */
    .section-title { font-size: 1.9rem; }
    .section-subtitle { font-size: 1rem; }

    .why-us-section { padding: 70px 16px; }
    .why-us-content h2 { font-size: 1.9rem; }
    .image-placeholder { height: 260px; font-size: 4rem; }
    .usp-list li { font-size: 0.92rem; gap: 0.75rem; }

    /* --- SERVICES --- */
    .services-section { padding: 70px 16px; }
    .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .service-card { padding: 2rem 1.5rem; }
    .service-card h3 { font-size: 1.3rem; }

    /* --- NEWSLETTER --- */
    .newsletter-section { padding: 50px 16px; }
    .newsletter-content { padding: 2rem 1.5rem; gap: 1.5rem; }
    .newsletter-text h3 { font-size: 1.5rem; }
    .newsletter-form { flex-direction: column; gap: 0.75rem; }
    .newsletter-form input,
    .newsletter-form button { width: 100%; }

    /* --- CTA --- */
    .cta-section { padding: 70px 16px; }
    .cta-content h2 { font-size: 1.9rem; }
    .cta-content p { font-size: 1rem; }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .cta-buttons .hero-btn-primary,
    .cta-buttons .hero-btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
    }

    /* --- PAGE HEADER --- */
    .page-header { padding: 130px 16px 70px; }
    .page-header h1 { font-size: 2.2rem; }
    .page-header p { font-size: 1rem; }

    /* --- ABOUT --- */
    .about-story { padding: 60px 16px; }
    .story-content h2 { font-size: 1.9rem; }
    .story-content p { font-size: 1rem; }

    .mission-vision { padding: 60px 16px; }
    .mv-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .mv-card { padding: 2rem 1.5rem; }
    .mv-card h3 { font-size: 1.5rem; }

    .team-section { padding: 60px 16px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .member-placeholder { width: 150px; height: 150px; font-size: 3rem; }
    .team-member h4 { font-size: 1.2rem; }

    .why-choose { padding: 60px 16px; }
    .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .feature-card { padding: 2rem 1.5rem; }

    /* --- TEAM PAGE --- */
    .team-page-section { padding: 70px 16px; }
    .team-page-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .team-card-img-placeholder { height: 200px; font-size: 3.5rem; }
    .team-card-body { padding: 1.25rem 1rem; }
    .team-card-body h4 { font-size: 1.1rem; }
    .team-departments { gap: 0.6rem; }
    .dept-filter { padding: 0.5rem 1rem; font-size: 0.82rem; }
    .team-join-cta { padding: 3rem 1.5rem; margin-top: 3rem; }
    .team-join-cta h3 { font-size: 1.6rem; }

    /* --- FOOTER --- */
    .footer { padding: 60px 16px 24px; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-newsletter { padding: 2rem 1.5rem; }
    .footer-newsletter-form { flex-direction: column; }
    .footer-newsletter-form button { width: 100%; height: 50px; border-radius: 50px; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .map-placeholder { height: 200px; }
    .social-links { flex-wrap: wrap; }
}

/* ---- MOBILE (480px) ---- */
@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .stat-number { font-size: 2rem; }

    .section-title { font-size: 1.7rem; }

    .team-page-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }

    .page-header h1 { font-size: 1.9rem; }

    .mv-card { padding: 1.75rem 1.25rem; }
    .service-card { padding: 1.75rem 1.25rem; }

    .btn { padding: 0.85rem 1.75rem; font-size: 0.95rem; }

    .footer-links { flex-direction: column; gap: 0.5rem; }
}

/* ---- SMALL MOBILE (360px) ---- */
@media (max-width: 360px) {
    .hero-title { font-size: 1.7rem; }
    .logo-text { font-size: 1.1rem; }
    .logo-icon { font-size: 1.5rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 1.8rem; }
}

/* ===================================
   SOCIAL MEDIA SIDEBAR
   =================================== */

/* Vertical Left Sidebar */
.left-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    background: #fff;
    border-radius: 0 16px 16px 0;
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
    z-index: 9998;
}

.sidebar-social {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.sidebar-social:hover {
    transform: scale(1.15) translateX(4px);
    opacity: 0.9;
}

.ps-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ps-youtube   { background: #ff0000; }
.ps-twitter   { background: #000000; }
.ps-facebook  { background: #1877f2; }
.ps-linkedin  { background: #0a66c2; }
.ps-tiktok    { background: linear-gradient(135deg, #010101, #69c9d0); }

@media (max-width: 480px) {
    .left-sidebar {
        top: auto;
        bottom: 90px;
        transform: none;
        padding: 0.5rem;
        gap: 0.4rem;
    }
    .left-sidebar .sidebar-social { width: 32px; height: 32px; font-size: 0.85rem; }
}

/* ===================================
   BTN BASE + TEXT-PINK
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #ec4899);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(30,58,138,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(30,58,138,0.4);
}

.text-pink {
    background: linear-gradient(90deg, #ec4899, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   CLIENTS LOGO STRIP
   =================================== */
.clients-strip {
    padding: 2.5rem 20px;
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
}

.clients-label {
    text-align: center;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.clients-logos span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.03em;
    transition: color 0.25s;
}

.clients-logos span i {
    font-size: 1.2rem;
}

.clients-logos span:hover {
    color: var(--navy);
}

.client-logo-box {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.25s, transform 0.25s;
    flex-shrink: 0;
}

.client-logo-box:hover {
    box-shadow: 0 6px 20px rgba(30,58,138,0.12);
    transform: translateY(-3px);
}

.client-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ===================================
   WHY US VISUAL CARDS
   =================================== */
.why-us-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
    min-height: 420px;
}

.visual-main-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(15,23,42,0.5);
    position: relative;
    z-index: 1;
}

.visual-main-card i {
    font-size: 2.5rem;
    color: #f9a8d4;
    margin-bottom: 1rem;
    display: block;
}

.visual-main-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.visual-main-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.visual-bar {
    height: 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    overflow: hidden;
}

.visual-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ec4899, #f472b6);
    border-radius: 50px;
    animation: barGrow 2s ease forwards;
}

@keyframes barGrow {
    from { width: 0; }
}

.visual-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 0.85rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

.visual-float-card i {
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vc1 { top: -20px; right: -20px; animation-delay: 0s; background: #ffffff; }
.vc2 { bottom: 60px; right: -30px; animation-delay: 1.3s; background: #ffffff; }
.vc3 { bottom: -20px; left: 20px; animation-delay: 0.7s; background: #ffffff; }

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

/* ===================================
   SERVICES CTA
   =================================== */
.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-section {
    padding: 100px 20px;
    background: var(--light);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-num {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e3a8a, #ec4899);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin: 0 auto 1.25rem;
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    color: var(--pink);
    font-size: 1.4rem;
    margin-top: 3rem;
    flex-shrink: 0;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 100px 20px;
    background: var(--white);
}

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

.testi-card {
    background: var(--light);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #e2e8f0;
    background: var(--white);
}

.testi-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testi-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testi-card > p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.97rem;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testi-author div strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 700;
}

.testi-author div span {
    font-size: 0.82rem;
    color: var(--gray);
}

.testi-cta {
    text-align: center;
}

/* ===================================
   CTA BG SHAPES
   =================================== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.cs1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cs2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* ===================================
   RESPONSIVE - MISSING SECTIONS
   =================================== */
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { gap: 1rem; }
    .visual-card-wrap { max-width: 100%; }
}

@media (max-width: 768px) {
    .clients-logos { gap: 1.5rem; }
    .clients-logos span { font-size: 0.88rem; }

    .visual-float-card { display: none; }
    .visual-card-wrap { min-height: auto; }
    .visual-main-card { padding: 2rem; }

    .process-grid { flex-direction: column; align-items: center; }
    .process-arrow { transform: rotate(90deg); margin: 0; padding: 0.25rem 0; }
    .process-step { max-width: 100%; width: 100%; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testi-card { padding: 2rem 1.5rem; }

    .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .process-section { padding: 60px 16px; }
    .testimonials-section { padding: 60px 16px; }
    .clients-strip { padding: 2rem 16px; }
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    padding: 80px 20px 100px;
    background: var(--light);
}

/* Toggle */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.toggle-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.save-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: #cbd5e1;
    border-radius: 50px;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    left: 4px;
    top: 4px;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.toggle-switch input:checked + .toggle-slider { background: var(--navy); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    margin-bottom: 5rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(15,23,42,0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.pricing-badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(236,72,153,0.4);
}

.pricing-card-header {
    margin-bottom: 1.75rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.pricing-card.featured .pricing-icon {
    background: rgba(255,255,255,0.15);
}

.pricing-card-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.pricing-card.featured .pricing-card-header h3 { color: var(--white); }

.pricing-card-header p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.pricing-card.featured .pricing-card-header p { color: rgba(255,255,255,0.7); }

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card.featured .pricing-price { border-bottom-color: rgba(255,255,255,0.15); }

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-price .currency { color: #f9a8d4; }

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.pricing-card.featured .pricing-price .amount { color: var(--white); }

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-price .period { color: rgba(255,255,255,0.6); }

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.92rem;
    color: var(--dark);
    border-bottom: 1px solid #f1f5f9;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255,255,255,0.9);
    border-bottom-color: rgba(255,255,255,0.08);
}

.pricing-features li i.fa-check { color: #10b981; font-size: 0.85rem; flex-shrink: 0; }
.pricing-features li i.fa-times { color: #ef4444; font-size: 0.85rem; flex-shrink: 0; }
.pricing-features li.disabled { opacity: 0.45; }

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    background: var(--light);
    color: var(--navy);
    border: 2px solid #e2e8f0;
}

.pricing-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.featured-btn {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    box-shadow: 0 8px 25px rgba(236,72,153,0.4);
}

.featured-btn:hover {
    background: #db2777;
    border-color: #db2777;
    transform: translateY(-2px);
}

/* Comparison Table */
.comparison-wrap {
    margin-bottom: 4rem;
}

.table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.92rem;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, #1e3a8a, #172554);
    color: var(--white);
}

.comparison-table th {
    padding: 1.2rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-table th:first-child { text-align: left; }

.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    color: var(--dark);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

.comparison-table tbody tr:hover { background: #f8fafc; }

.comparison-table .featured-col {
    background: rgba(30,58,138,0.04);
    font-weight: 700;
    color: var(--navy);
}

.text-green { color: #10b981; }
.text-red   { color: #ef4444; }

/* Custom Plan CTA */
.custom-plan-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    color: var(--white);
}

.custom-plan-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.custom-plan-content > i {
    font-size: 3rem;
    color: #f9a8d4;
    flex-shrink: 0;
}

.custom-plan-content > div { flex: 1; min-width: 200px; }

.custom-plan-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.custom-plan-content p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

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

/* Pricing FAQ */
.pricing-faq { margin-bottom: 2rem; }

.pfaq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pfaq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pfaq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pfaq-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pfaq-item h4 i { color: var(--pink); }

.pfaq-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Pricing Responsive */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .pfaq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .pricing-section { padding: 60px 16px 80px; }
    .custom-plan-content { flex-direction: column; text-align: center; }
    .custom-plan-content > i { font-size: 2.5rem; }
    .comparison-table th, .comparison-table td { padding: 0.75rem 1rem; font-size: 0.82rem; }
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog-section {
    padding: 80px 20px 100px;
    background: var(--light);
}

/* Filter Buttons */
.blog-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.blog-filter-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    background: var(--white);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

/* Featured Post */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    align-items: center;
}

.blog-featured-img {
    position: relative;
    height: 100%;
    min-height: 320px;
}

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.25);
}

.blog-cat-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--pink);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-featured-content {
    padding: 2.5rem 2.5rem 2.5rem 0;
}

.blog-meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-meta i { color: var(--pink); }

.blog-featured-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.blog-featured-content > p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.blog-card-img {
    position: relative;
    height: 200px;
}

.blog-card-img .blog-img-placeholder {
    min-height: 200px;
    font-size: 3.5rem;
}

.blog-card-body {
    padding: 1.75rem;
}

.blog-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.blog-card-body > p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--pink);
    gap: 0.7rem;
}

/* Blog Newsletter */
.blog-newsletter {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
}

.blog-newsletter-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-newsletter-content > i {
    font-size: 3rem;
    color: #f9a8d4;
    flex-shrink: 0;
}

.blog-newsletter-content > div { flex: 1; min-width: 180px; }

.blog-newsletter-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.blog-newsletter-content p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.blog-newsletter-content .newsletter-form {
    display: flex;
    gap: 0.75rem;
    min-width: 340px;
    flex-shrink: 0;
}

.blog-newsletter-content .newsletter-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.blog-newsletter-content .newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.blog-newsletter-content .newsletter-form input:focus { border-color: var(--pink); }

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-content { padding: 2rem; }
    .blog-featured-img { min-height: 260px; }
    .blog-img-placeholder { min-height: 260px; }
}

@media (max-width: 768px) {
    .blog-section { padding: 60px 16px 80px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-filters { gap: 0.5rem; }
    .blog-filter-btn { padding: 0.5rem 1rem; font-size: 0.82rem; }
    .blog-newsletter { padding: 2rem 1.5rem; }
    .blog-newsletter-content { flex-direction: column; text-align: center; }
    .blog-newsletter-content .newsletter-form { min-width: 100%; flex-direction: column; }
    .blog-featured-content h2 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .blog-card-img { height: 160px; }
    .blog-card-img .blog-img-placeholder { min-height: 160px; font-size: 2.5rem; }
}

/* ===================================
   ULTRA PREMIUM ENHANCEMENTS
   =================================== */

/* Premium Micro-Interactions */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* Premium Button Styles */
.btn-premium {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #db2777 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.btn-premium span,
.btn-premium i {
    position: relative;
    z-index: 1;
}

/* Premium Card Hover Effects */
.premium-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

/* Premium Typography */
.premium-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #0f172a 0%, #6366f1 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-subheading {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.8;
    letter-spacing: -0.01em;
}

/* Premium Glassmorphism */
.glass-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Premium Animations */
@keyframes premiumFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-20px) rotate(2deg); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) rotate(-1deg); 
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-15px) rotate(1deg); 
        opacity: 1;
    }
}

.premium-float {
    animation: premiumFloat 6s ease-in-out infinite;
}

/* Premium Gradient Text */
.gradient-premium {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 25%, #ec4899 50%, #f59e0b 75%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: gradientShift 8s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* Premium Loading States */
.premium-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: premiumSkeleton 1.5s infinite;
}

@keyframes premiumSkeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Premium Scroll Indicators */
.premium-scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(99, 102, 241, 0.1);
    z-index: 9999;
}

.premium-scroll-progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s ease;
}

/* Premium Cursor Effects */
.premium-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(99, 102, 241, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.premium-cursor.hover {
    transform: scale(2);
    background: rgba(236, 72, 153, 0.7);
}

/* Premium Section Dividers */
.premium-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.3) 50%, transparent 100%);
    margin: 5rem 0;
}

/* Premium Badge Styles */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(8px);
}

/* Premium Stats Counter */
.premium-stat {
    text-align: center;
    padding: 2rem;
}

.premium-stat-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.premium-stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Premium Testimonial Cards */
.premium-testimonial {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: rgba(99, 102, 241, 0.1);
    font-family: serif;
    line-height: 1;
}

.premium-testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Premium CTA Sections */
.premium-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.premium-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 100% 100%, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
}

.premium-cta > * {
    position: relative;
    z-index: 1;
}

/* Premium Form Styles */
.premium-form-group {
    position: relative;
    margin-bottom: 2rem;
}

.premium-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    outline: none;
}

.premium-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    background: var(--white);
}

.premium-label {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    color: var(--gray);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.premium-input:focus + .premium-label,
.premium-input:not(:placeholder-shown) + .premium-label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.875rem;
    color: var(--primary);
    background: var(--white);
    padding: 0 0.5rem;
}

/* Premium Mobile Optimizations */
@media (max-width: 768px) {
    .premium-heading {
        font-size: 2.5rem;
    }
    
    .premium-card {
        padding: 2rem;
    }
    
    .premium-cta {
        padding: 3rem 2rem;
        border-radius: 24px;
    }
    
    .btn-premium {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* Premium Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .premium-card {
        background: rgba(15, 23, 42, 0.9);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .premium-input {
        background: rgba(15, 23, 42, 0.9);
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Premium Accessibility */
.premium-focus-visible:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.premium-reduced-motion {
    animation: none !important;
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ===================================
   LOGO RESPONSIVE STYLING
   =================================== */

@media (max-width: 768px) {
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .footer-logo-image {
        width: 32px;
        height: 32px;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .footer-logo-image {
        width: 28px;
        height: 28px;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
}

/* Logo Loading State */
.logo-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: logoSkeleton 1.5s infinite;
}

.logo-image[src] {
    background: none;
    animation: none;
}

@keyframes logoSkeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Logo Error Fallback */
.logo-image[alt]:after {
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    color: var(--gray);
    text-align: center;
    display: none;
}

.logo-image:not([src]),
.logo-image[src=""] {
    display: none;
}

.logo-image:not([src]) + .logo-text::before,
.logo-image[src=""] + .logo-text::before {
    content: "⭐ ";
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ===================================
   NAVBAR RESPONSIVE UPDATES
   =================================== */

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }
    
    .nav-menu {
        margin-right: 0;
    }
    
    .hamburger {
        order: -1;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
}

/* Service detail pages - last lone card center */
.services-section .features-grid .feature-card:last-child:nth-child(3n+1) {
    grid-column: 2;
} */

/* Desktop nav layout */
.logo { order: 1; margin-right: auto; margin-left: 0; flex-shrink: 0; }
.nav-menu { order: 2; flex: 1; justify-content: center; }
.hamburger { order: 3; margin-left: auto; }

/* Hero stats flex fix */
.hero-stats {
    display: flex !important;
    flex-wrap: nowrap;
}

@media (max-width: 1024px) {
    .nav-container { padding: 0.5rem 1.5rem; gap: 1.5rem; }
    .nav-menu { gap: 1rem; }
    .nav-link { font-size: 0.82rem; }
    .logo-image { width: 55px; height: 55px; }
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-container { padding: 0.5rem 1.25rem; gap: 0; justify-content: space-between; }
    .logo { order: 1; margin-right: 0; }
    .hamburger { order: 2; display: flex; }
    .logo-image { width: 55px; height: 55px; border-width: 2px; }
    .footer-logo-image { width: 50px; height: 50px; }

    /* Nav menu slide from right */
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 78%; max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 1.5rem 2rem;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
        flex: none;
        order: 3;
        margin: 0;
        justify-content: flex-start;
    }
    .nav-menu.active { right: 0; }
    .nav-menu li { width: 100%; border-bottom: 1px solid #f0f4ff; }
    .nav-menu li:last-child { border-bottom: none; }
    .nav-link { display: block; padding: 0.9rem 0; font-size: 0.95rem; }
    .nav-link::after { display: none; }
    .btn-nav { display: block; text-align: center; padding: 0.8rem 1.2rem; margin-top: 0.5rem; }
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none;
        background: #f0f4ff; border-radius: 10px;
        padding: 0.4rem 0; margin: 0.4rem 0 0.8rem 1rem;
        min-width: unset;
    }
    .dropdown-menu a { padding: 0.55rem 1rem; font-size: 0.88rem; }

    /* Hero stats — 2x2 grid on mobile */
    .hero-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 1rem;
    }
    .stat-divider { display: none; }
    .stat-item { padding: 0.75rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
    .stat-number { font-size: 2rem; }

    /* Team grid last card */
    .team-page-grid .team-card:last-child:nth-child(3n+1) { grid-column: auto; }
    .team-page-grid { grid-template-columns: repeat(2, 1fr); }

    /* Contact grid */
    .contact-grid { grid-template-columns: 1fr !important; }
    .contact-info-box { position: static !important; }

    /* Pricing grid */
    .pricing-grid { grid-template-columns: 1fr !important; max-width: 100%; }
    .pricing-card.featured { transform: none !important; }

    /* Testimonials page grid */
    .testimonials-grid { grid-template-columns: 1fr !important; }

    /* Blog featured */
    .blog-featured { grid-template-columns: 1fr !important; }
    .blog-featured-content { padding: 1.5rem !important; }
    .blog-grid { grid-template-columns: 1fr !important; }

    /* Section padding reduce */
    .services-section, .process-section, .testimonials-section,
    .why-us-section, .team-page-section, .about-story,
    .mission-vision, .why-choose { padding: 60px 16px; }
    .page-header { padding: 110px 16px 60px; }
    .page-header h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .cta-content h2 { font-size: 1.8rem; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

@media (max-width: 480px) {
    .logo-image { width: 48px; height: 48px; }
    .nav-container { padding: 0.5rem 1rem; }
    .hero-title { font-size: 1.85rem; }
    .hero-subtitle { font-size: 0.92rem; }
    .hero-badge { font-size: 0.75rem; padding: 0.5rem 1rem; }
    .hero-btn-primary, .hero-btn-secondary, .hero-btn-outline { width: 100%; max-width: 300px; justify-content: center; }
    .section-title { font-size: 1.6rem; }
    .team-page-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .pfaq-grid { grid-template-columns: 1fr; }
    .footer-logo-image { width: 45px; height: 45px; }
    .process-step { max-width: 100%; width: 100%; }
    .comparison-table th, .comparison-table td { padding: 0.6rem 0.75rem; font-size: 0.78rem; }
    .left-sidebar { display: none; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.6rem; }
    .stat-number { font-size: 1.7rem; }
    .hero-stats { padding: 0.75rem; }
}

/* ===================================
   PREMIUM UI POLISH — NO COLOR CHANGE
   =================================== */

/* Navbar — glassmorphism upgrade */
.navbar {
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    border-bottom: 1px solid rgba(30,58,138,0.08) !important;
    box-shadow: 0 4px 30px rgba(30,58,138,0.08) !important;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 4px 24px rgba(30,58,138,0.12) !important;
}
.nav-link { font-size: 0.88rem; letter-spacing: 0.01em; }

/* Service cards — deeper shadow + smoother hover */
.service-card {
    border-radius: 28px !important;
    box-shadow: 0 2px 20px rgba(30,58,138,0.07), 0 1px 4px rgba(0,0,0,0.04) !important;
    border: 1px solid rgba(30,58,138,0.06) !important;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease !important;
}
.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 24px 60px rgba(30,58,138,0.15), 0 4px 12px rgba(236,72,153,0.08) !important;
}

/* Feature cards */
.feature-card {
    border-radius: 24px !important;
    box-shadow: 0 2px 16px rgba(30,58,138,0.07) !important;
    border: 1px solid rgba(30,58,138,0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(30,58,138,0.13) !important;
}

/* Mission/Vision cards */
.mv-card {
    border-radius: 24px !important;
    box-shadow: 0 2px 16px rgba(30,58,138,0.07) !important;
    border: 1px solid rgba(30,58,138,0.05) !important;
}
.mv-card:hover {
    box-shadow: 0 20px 50px rgba(30,58,138,0.13) !important;
}

/* Team cards */
.team-card {
    border-radius: 28px !important;
    box-shadow: 0 2px 20px rgba(30,58,138,0.08) !important;
    border: 1px solid rgba(30,58,138,0.06) !important;
    overflow: hidden;
}
.team-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 24px 60px rgba(30,58,138,0.15) !important;
}

/* Testimonial cards */
.testi-card {
    border-radius: 24px !important;
    box-shadow: 0 2px 16px rgba(30,58,138,0.06) !important;
    border: 1px solid rgba(30,58,138,0.06) !important;
}
.testi-card:hover {
    box-shadow: 0 20px 50px rgba(30,58,138,0.12) !important;
    border-color: rgba(236,72,153,0.15) !important;
}

/* Pricing cards */
.pricing-card {
    border-radius: 28px !important;
    box-shadow: 0 2px 20px rgba(30,58,138,0.07) !important;
}
.pricing-card:hover {
    box-shadow: 0 24px 60px rgba(30,58,138,0.15) !important;
}

/* Blog cards */
.blog-card {
    border-radius: 24px !important;
    box-shadow: 0 2px 16px rgba(30,58,138,0.07) !important;
    border: 1px solid rgba(30,58,138,0.05) !important;
}
.blog-card:hover {
    box-shadow: 0 20px 50px rgba(30,58,138,0.13) !important;
}

/* Process steps */
.process-step {
    border-radius: 24px !important;
    box-shadow: 0 2px 16px rgba(30,58,138,0.07) !important;
    border: 1px solid rgba(30,58,138,0.05) !important;
}
.process-step:hover {
    box-shadow: 0 16px 40px rgba(30,58,138,0.12) !important;
}

/* Newsletter box */
.newsletter-content {
    border-radius: 32px !important;
    box-shadow: 0 8px 40px rgba(30,58,138,0.1) !important;
    border: 1px solid rgba(30,58,138,0.06) !important;
}

/* Buttons — premium feel */
.btn-primary, .hero-btn-primary {
    letter-spacing: 0.01em;
    font-weight: 700;
}
.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 40px rgba(30,58,138,0.35) !important;
}

/* Section headers — tighter spacing */
.section-header { margin-bottom: 3.5rem; }
.section-badge {
    letter-spacing: 0.04em;
    font-size: 0.8rem;
    padding: 0.45rem 1.25rem;
}
.section-title { letter-spacing: -0.03em; line-height: 1.15; }

/* Page header — premium overlay */
.page-header {
    padding: 160px 20px 90px !important;
}
.page-header h1 { letter-spacing: -0.03em; line-height: 1.15; }

/* Footer — subtle top border glow */
.footer {
    border-top: 1px solid rgba(30,58,138,0.3);
}
.footer-col h4 {
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Visual main card */
.visual-main-card {
    border-radius: 28px !important;
    box-shadow: 0 24px 70px rgba(15,23,42,0.45) !important;
}

/* Pfaq items */
.pfaq-item {
    border-radius: 20px !important;
    box-shadow: 0 2px 14px rgba(30,58,138,0.07) !important;
    border: 1px solid rgba(30,58,138,0.05) !important;
}

/* Smooth scroll progress bar */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: var(--scroll-progress, 0%);
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #ec4899, #f59e0b);
    z-index: 9999;
    transition: width 0.1s linear;
}
