/* ==========================================================================
   Clean White Corporate Design System (#FFFFFF)
   Apple, Stripe, Framer & Vercel Light Mode Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Exact Requested Color Tokens */
    --color-primary: #2563EB;
    --color-primary-hover: #1d4ed8;
    --color-secondary: #3B82F6;
    --color-accent: #06B6D4;
    --color-success: #10B981;
    
    --color-text-heading: #0F172A;
    --color-text-body: #64748B;
    --color-text-muted: #94a3b8;
    
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F8FAFC;
    --color-border: #E2E8F0;
    
    /* Gradients (Used strictly for CTAs & active button highlights) */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --gradient-accent: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --gradient-hero-light: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #EFF6FF 100%);
    --gradient-text-light: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);

    /* Glassmorphism & Light Shadows */
    --glass-bg-header: rgba(255, 255, 255, 0.9);
    --glass-border-light: 1px solid #E2E8F0;
    --glass-blur: blur(20px);
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);
    --shadow-glow-blue: 0 8px 25px rgba(37, 99, 235, 0.3);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background-color: var(--color-bg-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-heading);
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Gradient Text Mask */
.text-gradient-3d {
    background: var(--gradient-text-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-hero-light {
    background: var(--gradient-hero-light);
    position: relative;
}

/* 3D Perspective Stage */
.perspective-stage {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.preserve-3d {
    transform-style: preserve-3d;
}

/* Ambient Gradient Blobs (Light Mode) */
@keyframes blobFloat1 {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.08); }
    66% { transform: translate(-20px, 20px) scale(0.92); }
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: rgba(37, 99, 235, 0.15);
    top: -10%;
    left: -10%;
    animation: blobFloat1 12s ease-in-out infinite;
}

.blob-2 {
    width: 450px;
    height: 450px;
    background: rgba(6, 182, 212, 0.12);
    bottom: -10%;
    right: -10%;
    animation: blobFloat1 15s ease-in-out infinite reverse;
}

/* 3D Hero Keyframe Animations */
@keyframes float3dLaptop {
    0%, 100% { transform: rotateY(-10deg) rotateX(6deg) translateY(0px); }
    50% { transform: rotateY(-6deg) rotateX(3deg) translateY(-15px); }
}

.hero-3d-laptop {
    animation: float3dLaptop 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.floating-3d-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-lg);
    border-radius: 1.25rem;
    padding: 14px 20px;
    transform-style: preserve-3d;
}

/* Interactive 3D Tilt Card (White Theme) */
.card-3d-tilt {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.card-3d-tilt:hover {
    transform: translateY(-8px) rotateX(3deg) rotateY(-2deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.icon-box-3d {
    width: 60px;
    height: 60px;
    border-radius: 1.25rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card-3d-tilt:hover .icon-box-3d {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow-blue);
}

/* Tech Stack White Pill */
.tech-pill-3d {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-heading);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.tech-pill-3d:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

/* Pricing Cards */
.pricing-3d-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.75rem;
    padding: 2.5rem 2rem;
    transition: all 0.35s ease;
}

.pricing-3d-card.popular {
    border: 2px solid var(--color-primary);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
    transform: scale(1.03);
}

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

/* Code Snippet Light Card */
.code-snippet-3d {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 1rem;
    padding: 1.25rem;
    font-size: 0.85rem;
    color: #38bdf8;
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn-glow-3d {
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 700;
    border: none;
    padding: 14px 34px;
    border-radius: 50rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow-blue);
}

.btn-glow-3d:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
}

.btn-glass-3d {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--color-text-heading);
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-glass-3d:hover {
    background: #f8fafc;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* ==========================================================================
   CLEAN LIGHT HEADER STYLING
   ========================================================================== */

.glass-header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid #e2e8f0;
    padding: 6px 0;
}

.glass-header-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 4px 0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-link-3d {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-heading) !important;
    padding: 6px 12px !important;
    position: relative;
    transition: color 0.25s ease;
}

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

.nav-link-3d::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link-3d:hover::after, .nav-link-3d.active::after {
    transform: scaleX(1);
}

/* Light Mega Menu Dropdown */
.mega-menu-dropdown {
    width: 680px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    padding: 1.5rem;
    margin-top: 10px;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.mega-menu-item:hover {
    background: #f8fafc;
    transform: translateX(4px);
}

.mega-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.6rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mega-menu-item:hover .mega-menu-icon {
    background: var(--color-primary);
    color: #ffffff;
}

/* Mobile Drawer Light Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    overflow-y: auto;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-link {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-heading);
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    display: block;
    text-decoration: none;
}

.mobile-drawer-link:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   PERSISTENT FLOATING ACTION BUTTONS
   ========================================================================== */

.floating-action-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.floating-btn-item {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
}

.floating-btn-item:hover {
    transform: scale(1.12) translateY(-3px);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.float-whatsapp {
    background: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.float-call {
    background: #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.float-top {
    background: #ffffff;
    color: #0f172a !important;
    border: 1px solid #e2e8f0;
}

/* ==========================================================================
   CLEAN LIGHT CORPORATE FOOTER STYLING
   ========================================================================== */

.footer-modern-section {
    background: #f8fafc;
    color: #64748b;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.footer-column-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--color-primary);
}

.footer-link-item {
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 4px 0;
    font-size: 0.925rem;
}

.footer-link-item:hover {
    color: #2563eb;
    transform: translateX(4px);
    text-decoration: none;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.footer-social-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-stat-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

/* Portfolio Card v2 - Website Brand Blue Theme & Quick Action Overlay */
.portfolio__card-v2 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 380px;
    display: block;
}

.portfolio__card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.18);
}

.portfolio__card-v2-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.portfolio__card-v2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    display: block;
}

.portfolio__card-v2:hover .portfolio__card-v2-img {
    transform: scale(1.05);
}

.portfolio-action-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border-radius: 50%;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.portfolio-action-btn:hover {
    transform: scale(1.12);
}

.portfolio__card-v2-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 20px 20px 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(37, 99, 235, 0.82) 60%, rgba(37, 99, 235, 0) 100%);
    text-align: center;
    z-index: 2;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.portfolio__card-v2-title {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.2px;
}

.portfolio__card-v2-title a {
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.portfolio__card-v2-title a:hover {
    opacity: 0.9;
}

/* ==========================================================================
   ABOUT US PAGE — Premium Component Styles
   ========================================================================== */

/* Process Step Card */
.about-process-step {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.about-process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.about-process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.about-process-step:hover .about-process-number {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow-blue);
}

/* Team Member Card */
.about-team-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
}

.about-team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.about-team-card .team-img-wrapper {
    height: 80px;
    background: var(--gradient-accent);
    position: relative;
}

.about-team-card .team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-md);
    background: #f8fafc;
}

.about-team-card .team-info {
    padding: 2.75rem 1.5rem 1.75rem;
    text-align: center;
}

/* Testimonial Card for About Page */
.testimonial-card-about {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.35s ease;
    height: 100%;
}

.testimonial-card-about:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.testimonial-card-about .quote-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card-about .testi-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.testimonial-card-about .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.testimonial-card-about .testi-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

/* Core Values Card */
.about-value-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.about-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow-blue);
}

/* Industry Card */
.about-industry-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.about-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.about-industry-icon {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    background: rgba(37, 99, 235, 0.06);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
}

.about-industry-card:hover .about-industry-icon {
    background: var(--gradient-primary);
    color: #ffffff;
}

/* Certification Badge */
.about-cert-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.about-cert-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.about-cert-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Stat Highlight */
.about-stat-highlight {
    text-align: center;
    padding: 1.5rem;
}

.about-stat-highlight .stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-text-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stat-highlight .stat-label {
    font-size: 0.875rem;
    color: var(--color-text-body);
    font-weight: 500;
}

/* Why Choose - Differentiator List */
.about-diff-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
}

.about-diff-item .diff-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Mission/Vision/Values trio cards */
.about-mvv-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.about-mvv-card:hover::before {
    opacity: 1;
}

.about-mvv-icon {
    width: 56px;
    height: 56px;
    border-radius: 1.25rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.about-mvv-card:hover .about-mvv-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow-blue);
}

/* ==========================================================================
   CONTACT US PAGE — Premium Component Styles
   ========================================================================== */

/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow-blue);
}

/* Inquiry Type Card */
.contact-inquiry-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-inquiry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-inquiry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.contact-inquiry-card:hover::before {
    opacity: 1;
}

.contact-inquiry-icon {
    width: 56px;
    height: 56px;
    border-radius: 1.25rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.contact-inquiry-card:hover .contact-inquiry-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow-blue);
}

/* Enhanced Contact Form */
.contact-form-premium .form-control,
.contact-form-premium .form-select {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.925rem;
    color: var(--color-text-heading);
    transition: all 0.25s ease;
}

.contact-form-premium .form-control:focus,
.contact-form-premium .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    outline: none;
}

.contact-form-premium .form-control::placeholder {
    color: var(--color-text-muted);
}

.contact-form-premium textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form-premium .form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-heading);
    margin-bottom: 6px;
}

/* Form Response Messages */
.contact-form-alert {
    border-radius: 0.75rem;
    padding: 14px 18px;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.contact-form-alert.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.contact-form-alert.alert-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

.contact-form-alert.show {
    display: flex;
}

/* Trust Badge */
.contact-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.contact-trust-badge .trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Map Container */
.contact-map-container {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.contact-map-container iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

/* Social Media Link */
.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--color-text-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.contact-social-link:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-blue);
}

/* ============================================================
   About Us - Our Story Visual Component
   ============================================================ */
.about-story-visual {
    position: relative;
    padding: 12px;
}

.about-story-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 32px;
    z-index: 0;
    filter: blur(20px);
}

.about-story-visual .main-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-story-visual:hover .main-img-wrapper {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.22), 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.about-story-visual .main-img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-story-visual:hover .main-img {
    transform: scale(1.03);
}

.about-story-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.08);
    border-radius: 20px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-story-badge:hover {
    transform: scale(1.04);
}

.about-story-badge .badge-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.45);
    flex-shrink: 0;
}

.about-story-badge .badge-text {
    line-height: 1.25;
}

.about-story-badge .badge-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    display: block;
}

.about-story-badge .badge-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 575.98px) {
    .about-story-badge {
        right: 10px;
        bottom: -15px;
        padding: 10px 14px;
    }
    .about-story-badge .badge-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .about-story-badge .badge-number {
        font-size: 1rem;
    }
}

