/* ============================================
   INNER PAGES - Unified Premium Styles
   Shared components for About, Services, and all inner pages
   ============================================ */

/* ========================================
   SHARED HERO SECTION BASE
   ======================================== */
.inner-hero,
.about-hero,
.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.inner-hero-bg,
.about-hero-bg,
.services-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #0A1F44 100%);
    z-index: -1;
}

/* Hero Mesh Animation */
.inner-hero-bg .hero-mesh,
.about-hero-bg .hero-mesh,
.services-hero-bg .hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(6, 182, 212, 0.15) 0px, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(37, 99, 235, 0.1) 0px, transparent 50%);
    animation: meshFlow 15s ease-in-out infinite;
}

@keyframes meshFlow {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.8;
    }
}

/* Hero Pattern */
.inner-hero-bg .hero-pattern,
.about-hero-bg .hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
}

.services-hero-bg .hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Floating Shapes (About) */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: -50px;
    animation-delay: 10s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Hero Orbs (Services) */
.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.15);
    top: -100px;
    right: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.1);
    bottom: -50px;
    left: 10%;
    animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.1);
    top: 40%;
    left: -50px;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(15px, 25px) scale(1.1);
    }
}

/* Hero Content */
.inner-hero-content,
.about-hero-content,
.services-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   BREADCRUMB - Shared Component
   ======================================== */
.breadcrumb {
    margin-bottom: 32px;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumb li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #06B6D4;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb li[aria-current="page"],
.breadcrumb li:last-child {
    color: #06B6D4;
}

/* ========================================
   HERO TAG - Shared Component
   ======================================== */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.hero-tag .tag-dot {
    width: 8px;
    height: 8px;
    background: #06B6D4;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-tag .tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06B6D4;
}

.hero-tag .tag-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.hero-tag .tag-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: tagShine 3s ease-in-out infinite;
}

@keyframes tagShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

/* ========================================
   HERO TITLES - Shared
   ======================================== */
.inner-hero-title,
.about-hero-title,
.services-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.inner-hero-title .title-line,
.about-hero-title .title-line,
.services-hero-title .title-line {
    display: block;
}

.inner-hero-subtitle,
.about-hero-subtitle,
.services-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-3px);
}

.hero-badge svg {
    color: #06B6D4;
}

/* ========================================
   WAVE DIVIDERS - Shared
   ======================================== */
.wave-divider--hero,
.wave-divider--services {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
}

.wave-divider--hero svg,
.wave-divider--services svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   SECTION HEADERS - Shared Component
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #2563EB;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.section-title-large {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0A1F44;
    line-height: 1.3;
}

.section-title--light {
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    margin-top: 12px;
}

/* ========================================
   GRADIENT ANIMATED TEXT - Shared
   ======================================== */
.gradient-text-animated {
    background: linear-gradient(90deg, #06B6D4 0%, #2563EB 25%, #06B6D4 50%, #2563EB 75%, #06B6D4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s linear infinite;
}

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

    100% {
        background-position: 200% center;
    }
}

/* ========================================
   CTA SECTION - Shared Component
   ======================================== */
.commitment-cta,
.services-cta,
.inner-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #06B6D4 0%, #2563EB 50%, #1E3A8A 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.5) 2px, transparent 2px);
    background-size: 60px 60px;
}

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

.cta-content .section-tag--light {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Outline Light Button */
.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

/* ========================================
   GLOW EFFECTS - Shared Keyframes
   ======================================== */
@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes iconGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

/* About Intro Section */
.about-intro {
    padding: 100px 0;
    background: #FFFFFF;
}

.intro-content {
    display: grid;
    gap: 80px;
    align-items: start;
}

.intro-text .section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #2563EB;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.intro-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: #0A1F44;
    margin-bottom: 24px;
}

.intro-title .highlight {
    background: linear-gradient(90deg, #06B6D4, #2563EB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-body {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-body:last-child {
    margin-bottom: 0;
}

/* Intro Visual */
.intro-visual {
    position: relative;
    margin: 3rem 0 0 0;
}

.visual-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 32px;
    padding: 48px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(6, 182, 212, 0.05);
}

.visual-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.visual-icon {
    text-align: center;
    margin-bottom: 40px;
}

.visual-icon svg {
    animation: iconRotate 20s linear infinite;
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px 10px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(37, 99, 235, 0.05));
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #64748B;
    margin-top: 4px;
}

/* Vision & Mission Section */
.vision-mission-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.vm-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    z-index: -1;
}

.vm-bg .vm-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(6, 182, 212, 0.06) 0px, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.04) 0px, transparent 50%);
}

.vm-bg .vm-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(45deg, #0A1F44 25%, transparent 25%),
        linear-gradient(-45deg, #0A1F44 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #0A1F44 75%),
        linear-gradient(-45deg, transparent 75%, #0A1F44 75%);
    background-size: 40px 40px;
}

/* VM Cards Grid */
.vm-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.vm-card:hover {
    transform: translateY(-12px) rotateX(5deg) scale(1.02);
}

.vm-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(6, 182, 212, 0.05);
    border-radius: 32px;
}

.vm-card-border {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #06B6D4, #2563EB, #06B6D4);
    background-size: 200% 200%;
    border-radius: 34px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: borderGradient 3s linear infinite;
}

.vm-card:hover .vm-card-border {
    opacity: 1;
}

.vm-card-content {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
}

.vm-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 28px;
}

.vm-icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    animation: iconGlow 3s ease-in-out infinite;
}

.vm-icon {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 50%;
    box-shadow:
        0 15px 30px rgba(6, 182, 212, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: transform 0.5s ease;
}

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

.vm-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 16px;
}

.vm-card-text {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 24px;
}

.vm-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vm-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(37, 99, 235, 0.08));
    border-radius: 100px;
    font-size: 0.9rem;
    color: #0A1F44;
    font-weight: 500;
    transition: all 0.3s ease;
}

.vm-highlight:hover {
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    color: white;
}

.vm-highlight .highlight-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-radius: 50%;
    color: white;
    font-size: 0.7rem;
}

.vm-highlight:hover .highlight-icon {
    background: white;
    color: #2563EB;
}

/* Commitments Section */
.commitments-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.commitment-card {
    position: relative;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-radius: 26px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.commitment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(6, 182, 212, 0.15);
}

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

.commitment-icon-wrapper {
    margin-bottom: 24px;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 50%;
    transition: all 0.5s ease;
}

.commitment-card:hover .commitment-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
}

.commitment-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.commitment-card:hover .commitment-title {
    color: #FBBF24;
}

.commitment-text {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.commitment-card:hover .commitment-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Why Choose Section (About) */
.why-choose-about {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 100%);
    z-index: -1;
}

.why-bg .why-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(6, 182, 212, 0.15) 0px, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(37, 99, 235, 0.1) 0px, transparent 50%);
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-feature {
    position: relative;
    display: flex;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

/* Why Feature Glow Effect */
.why-feature-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Why Feature Animated Border */
.why-feature::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.7), rgba(139, 92, 246, 0.7), rgba(6, 182, 212, 0.7));
    background-size: 300% 300%;
    border-radius: 21px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow:
        0 30px 70px rgba(6, 182, 212, 0.25),
        0 15px 40px rgba(139, 92, 246, 0.15),
        0 0 1px rgba(255, 255, 255, 0.6);
}

.why-feature:hover .why-feature-glow {
    opacity: 1;
}

.why-feature:hover::before {
    opacity: 1;
    animation: featureBorderFlow 3s linear infinite;
}

@keyframes featureBorderFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.feature-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ========================================
   SERVICES PAGE SPECIFIC STYLES
   ======================================== */

/* Main Service Section */
.service-main {
    padding: 100px 0;
    background: #FFFFFF;
}

.service-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-main-text .section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #2563EB;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-main-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: #0A1F44;
    margin-bottom: 24px;
}

.service-main-title .highlight {
    background: linear-gradient(90deg, #06B6D4, #2563EB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-main-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-main-body {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Service Visual Card */
.service-visual-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 32px;
    padding: 60px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(6, 182, 212, 0.05);
}

.service-visual-card .visual-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.service-illustration {
    text-align: center;
    margin-bottom: 30px;
}

.service-illustration svg {
    width: 200px;
    height: 200px;
}

.wifi-signal {
    animation: wifiPulse 2s ease-in-out infinite;
}

@keyframes wifiPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Floating Features */
.floating-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.floating-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0A1F44;
    transition: all 0.3s ease;
}

.floating-feature:hover {
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.floating-feature .feature-icon {
    font-size: 1.2rem;
}

/* Smart Features Section */
.smart-features {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    z-index: -1;
}

.features-bg .features-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(6, 182, 212, 0.06) 0px, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(37, 99, 235, 0.04) 0px, transparent 50%);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover {
    transform: translateY(-12px) rotateX(5deg) scale(1.02);
}

.feature-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

.feature-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(6, 182, 212, 0.05);
    border-radius: 32px;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.7), rgba(139, 92, 246, 0.7), rgba(6, 182, 212, 0.7));
    background-size: 300% 300%;
    border-radius: 34px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
    animation: borderGlow 3s linear infinite;
}

.feature-card-content {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 32px;
}

.feature-icon-large {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.feature-icon-large .icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    animation: iconGlow 3s ease-in-out infinite;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
}

.feature-list .check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Fan Animation */
.fan-blades-feature {
    transform-origin: center;
    animation: fanRotate 8s linear infinite;
}

.feature-card--fan:hover .fan-blades-feature {
    animation-duration: 2s;
}

@keyframes fanRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Why Automation Section (Services) */
.why-automation {
    padding: 100px 0;
    background: #FFFFFF;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.3);
}

.why-card-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
}

.why-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 8px;
}

.why-card-text {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
}

.why-card--featured {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(37, 99, 235, 0.05));
    border-color: rgba(6, 182, 212, 0.2);
}

/* Key Benefits Section */
.key-benefits {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.benefits-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 100%);
}

.benefits-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.5) 2px, transparent 2px);
    background-size: 60px 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.benefit-card {
    position: relative;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.benefit-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-card-glow {
    opacity: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.7), rgba(139, 92, 246, 0.7), rgba(6, 182, 212, 0.7));
    background-size: 300% 300%;
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.benefit-card:hover::before {
    opacity: 1;
    animation: borderGlow 3s linear infinite;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 20px;
    margin: 0 auto 20px;
    color: #06B6D4;
    transition: all 0.5s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    color: #FFFFFF;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card--featured {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intro-visual {
        order: -1;
    }

    .vm-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .service-main-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-main-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .inner-hero,
    .about-hero,
    .services-hero {
        min-height: 50vh;
        padding: 120px 0 80px;
    }

    .inner-hero-title,
    .about-hero-title,
    .services-hero-title {
        font-size: 2rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .visual-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vm-card-content {
        padding: 32px 24px;
    }

    .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-number {
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card--featured {
        grid-column: span 1;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-content {
        padding: 32px 24px;
    }
}

/* ========================================
   PRODUCTS PAGE SPECIFIC STYLES
   ======================================== */

/* Products Showcase Section (From Index) */
.products-showcase-section {
    padding: 100px 0;
    background: #F8FAFC;
}

/* Product Showcase Container */
.product-showcase {
    display: flex;
    justify-content: center;
}

/* Product Card */
.product-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(6, 182, 212, 0.05);
    max-width: 500px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 35px 60px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(6, 182, 212, 0.1);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    z-index: 2;
}

/* Product Image */
.product-image {
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    padding: 60px 40px;
    display: flex;
    justify-content: center;
}

.product-image svg {
    width: 200px;
    height: 250px;
    transition: all 0.4s ease;
}

.product-card:hover .product-image svg {
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    padding: 32px;
    text-align: center;
}

.product-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 8px;
}

.product-code {
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 24px;
}

/* Product Specs Pills */
.product-specs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
}

.product-specs li {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0A1F44;
    transition: all 0.3s ease;
}

.product-specs li:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(37, 99, 235, 0.15));
    border-color: rgba(6, 182, 212, 0.3);
}

/* Product Features Section */
.product-features {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Product Specs Section */
.product-specs-section {
    padding: 100px 0;
    background: #FFFFFF;
}

/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================== */

/* Contact Main Section */
.contact-main {
    padding: 100px 0;
    background: #FFFFFF;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Section */
.contact-info {
    padding-right: 40px;
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 16px;
}

.contact-info-desc {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.8;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateX(8px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(6, 182, 212, 0.1);
}

.contact-card--address,
.contact-card--hours {
    cursor: default;
}

.contact-card--address:hover,
.contact-card--hours:hover {
    transform: none;
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 16px;
    color: #06B6D4;
    flex-shrink: 0;
}

.contact-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0A1F44;
}

.contact-card-subvalue {
    font-size: 0.9rem;
    color: #64748B;
}

.contact-card-arrow {
    color: #06B6D4;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Social Links */
.contact-social {
    padding-top: 20px;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
}

.contact-social-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 16px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    color: #0A1F44;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.contact-form-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.contact-form-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 32px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(6, 182, 212, 0.05);
}

.contact-form-content {
    position: relative;
    z-index: 1;
    padding: 48px;
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: #64748B;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0A1F44;
}

.form-label .required {
    color: #EF4444;
}

.form-input {
    padding: 16px 20px;
    background: #FFFFFF;
    border: 2px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    color: #0A1F44;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: #94A3B8;
}

.form-input:focus {
    border-color: #06B6D4;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

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

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

/* Map Section */
.contact-map {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.map-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #0A1F44 100%);
}

.map-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
}

.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(6, 182, 212, 0.1);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
}

.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 10;
}

.map-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 400px;
}

.map-info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-radius: 16px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.map-info-content {
    flex: 1;
}

.map-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 4px;
}

.map-info-address {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* FAQ Section */
.contact-faq {
    padding: 100px 0;
    background: #F8FAFC;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.faq-card {
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(6, 182, 212, 0.08);
}

.faq-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
}

/* ========================================
   COMING SOON PAGE STYLES
   ======================================== */

.coming-soon {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Background */
.coming-soon-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cs-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 30%, #0A1F44 70%, #1E293B 100%);
}

.cs-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    animation: meshFloat 15s ease-in-out infinite alternate;
}

.cs-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Floating Orbs */
.cs-floating {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cs-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    top: -100px;
    right: 10%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.cs-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    bottom: -50px;
    left: 5%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.cs-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: orbFloat3 16s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -30px) scale(1.15);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, -40px) scale(1.2);
    }
}

/* Animated Lines */
.cs-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cs-line {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.3), transparent);
    animation: lineMove 8s ease-in-out infinite;
}

.cs-line-1 {
    height: 200px;
    left: 15%;
    top: -100px;
    animation-delay: 0s;
}

.cs-line-2 {
    height: 150px;
    right: 20%;
    top: -75px;
    animation-delay: 2s;
}

.cs-line-3 {
    height: 180px;
    left: 40%;
    top: -90px;
    animation-delay: 4s;
}

@keyframes lineMove {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Content */
.coming-soon-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Light Breadcrumb */
.breadcrumb--light ol li,
.breadcrumb--light ol li a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb--light ol li::after {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb--light ol li:last-child {
    color: rgba(255, 255, 255, 0.9);
}

/* Icon */
.cs-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 32px;
}

.cs-icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    border-radius: 50%;
}

.cs-icon {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 32px;
    backdrop-filter: blur(10px);
}

/* Light Hero Tag */
.hero-tag--light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-tag--light .tag-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Title */
.cs-title {
    margin-bottom: 24px;
}

.cs-title-line {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.cs-title-line:last-child {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

/* Description */
.cs-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Features Preview */
.cs-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cs-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cs-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
}

.cs-feature-icon {
    font-size: 2rem;
}

.cs-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Notify Form */
.cs-notify {
    margin-bottom: 40px;
}

.cs-notify-title {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.cs-notify-form {
    max-width: 480px;
    margin: 0 auto;
}

.cs-input-group {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.cs-input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    font-size: 1rem;
    color: #FFFFFF;
    outline: none;
}

.cs-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cs-input-group .btn {
    flex-shrink: 0;
}

/* Social Links */
.cs-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.cs-social-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.cs-social-links {
    display: flex;
    gap: 12px;
}

.cs-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.cs-social-link:hover {
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Back Link */
.cs-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cs-back-link:hover {
    color: #06B6D4;
}

.cs-back-link svg {
    transition: transform 0.3s ease;
}

.cs-back-link:hover svg {
    transform: translateX(-4px);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card--featured {
        grid-column: span 2;
    }

    .value-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intro-visual {
        order: -1;
    }

    .vm-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .service-main-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-main-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact Page - 991px */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        padding-right: 0;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .inner-hero,
    .about-hero,
    .services-hero {
        min-height: 50vh;
        padding: 120px 0 80px;
    }

    .inner-hero-title,
    .about-hero-title,
    .services-hero-title {
        font-size: 2rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .visual-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vm-card-content {
        padding: 32px 24px;
    }

    .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-number {
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card--featured {
        grid-column: span 1;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-content {
        padding: 32px 24px;
    }

    .value-products-grid {
        grid-template-columns: 1fr;
    }

    .value-card-content {
        padding: 32px 24px;
    }

    /* Contact Page - 767px */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-content {
        padding: 32px 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .map-info-card {
        flex-direction: column;
        text-align: center;
        max-width: 300px;
    }

    .map-overlay {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Coming Soon Page - 767px */
    .cs-input-group {
        flex-direction: column;
    }

    .cs-input-group .btn {
        width: 100%;
    }

    .cs-features {
        gap: 16px;
    }

    .cs-feature {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .breadcrumb ol {
        font-size: 0.8rem;
    }

    .hero-tag {
        padding: 8px 16px;
    }

    .hero-tag .tag-text {
        font-size: 0.8rem;
    }

    .section-title-large {
        font-size: 1.75rem;
    }

    .intro-title,
    .service-main-title {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .value-features-pills {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    .inner-hero-bg .hero-mesh,
    .about-hero-bg .hero-mesh,
    .about-hero-bg .shape,
    .services-hero-bg .hero-mesh,
    .services-hero-bg .orb,
    .visual-glow,
    .visual-icon svg,
    .vm-icon-glow,
    .hero-tag .tag-glow,
    .wifi-signal,
    .fan-blades-feature,
    .feature-card-glow,
    .benefit-card-glow,
    .why-feature-glow,
    .light-rays,
    .fan-blades,
    .illustration-glow,
    .value-bg-mesh,
    .contact-form-glow,
    .cs-orb,
    .cs-mesh,
    .cs-line,
    .cs-icon-glow {
        animation: none;
    }

    .vm-card:hover,
    .commitment-card:hover,
    .why-feature:hover,
    .feature-card:hover,
    .why-card:hover,
    .benefit-card:hover,
    .value-product-card:hover,
    .contact-card:hover,
    .faq-card:hover,
    .cs-feature:hover {
        transform: none;
    }
}