/* ============================================
   MASTER TECH SERVICE — Premium Dark Design System
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #0d1225;
    --bg-card: rgba(13, 18, 37, 0.7);
    --bg-glass: rgba(13, 18, 37, 0.5);
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 212, 255, 0.15);

    --text-primary: #e8ecf4;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    --accent-cyan: #00d4ff;
    --accent-purple: #7c3aed;
    --accent-teal: #06b6d4;
    --accent-green: #25d366;
    --light-bg: #f8fafc;
    --light-bg-alt: #eef6fb;
    --light-card: #ffffff;
    --light-border: rgba(15, 23, 42, 0.1);
    --light-text: #111827;
    --light-text-secondary: #475569;
    --light-text-muted: #64748b;

    --gradient-main: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-reverse: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-glow-cyan: 0 0 30px rgba(0, 212, 255, 0.15);
    --shadow-glow-purple: 0 0 30px rgba(124, 58, 237, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ---- Gradient Text Utility ---- */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Section Headers ---- */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.35s var(--ease-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-glow);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

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

/* ---- Scroll Reveal Animations ---- */
.reveal {
    opacity: 0;
    transition: all 0.8s var(--ease-smooth);
    transition-delay: var(--delay, 0s);
}

.reveal.visible {
    opacity: 1;
}

.fade-up {
    transform: translateY(40px);
}

.fade-up.visible {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-left.visible {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(50px);
}

.fade-right.visible {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.8);
}

.scale-in.visible {
    transform: scale(1);
}

/* ============================================
   FLOATING BLOBS
   ============================================ */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
}

.blob-1 {
    top: -10%;
    right: -10%;
    animation: floatBlob 20s ease-in-out infinite;
}

.blob-2 {
    bottom: 10%;
    left: -15%;
    animation: floatBlob 25s ease-in-out infinite reverse;
}

.blob-3 {
    top: 40%;
    left: 30%;
    animation: floatBlob 30s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes floatBlob {

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

    25% {
        transform: translate(40px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(30px, 40px) rotate(3deg);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.navbar-logo img {
    height: 100px;
    /* Adjust as needed */
    width: auto;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-accent {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-cta {
    display: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.85rem;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
        var(--bg-primary);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(0, 212, 255, 0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 420px;
    position: relative;
}

.hero-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.1));
}

/* Hero SVG Animations */
.ring-pulse {
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: 0.2;
        transform-origin: center;
    }

    50% {
        opacity: 0.5;
    }
}

.drum-spin {
    animation: drumSpin 8s linear infinite;
    transform-origin: 200px 215px;
}

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

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

.water-wave {
    animation: waterWave 2s ease-in-out infinite;
}

@keyframes waterWave {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

.control-glow {
    animation: controlGlow 2s ease-in-out infinite;
}

@keyframes controlGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.8));
    }
}

.status-blink {
    animation: statusBlink 1.5s ease-in-out infinite;
}

@keyframes statusBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Sparkle animation for About SVG */
.sparkle {
    animation: sparkleAnim 2s ease-in-out infinite;
}

@keyframes sparkleAnim {

    0%,
    100% {
        opacity: 0.2;
        r: 1.5;
    }

    50% {
        opacity: 1;
        r: 3;
    }
}

/* Floating Stats Badges */
.hero-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stat-badge {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 14px 20px;
    text-align: center;
    pointer-events: auto;
    box-shadow: var(--shadow-card);
}

.stat-badge-1 {
    top: 5%;
    right: 0;
}

.stat-badge-2 {
    bottom: 15%;
    left: -5%;
}

.stat-badge-3 {
    bottom: 5%;
    right: 5%;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* Hero wave divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-bg-alt) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services .section-title,
.areas .section-title,
.testimonials .section-title,
.contact .section-title,
.services .service-title,
.testimonials .author-name,
.contact .contact-info h3,
.contact .contact-item h4 {
    color: var(--light-text);
}

.services .section-subtitle,
.areas .section-subtitle,
.testimonials .section-subtitle,
.contact .section-subtitle,
.services .service-desc,
.services .service-list li,
.testimonials .testimonial-text,
.testimonials .author-location,
.contact .contact-info-sub,
.contact .contact-item p,
.contact .form-group label {
    color: var(--light-text-secondary);
}

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

.service-card {
    position: relative;
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 40px;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.service-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-cyan);
}

.service-card:nth-child(2):hover {
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: var(--shadow-glow-purple);
}

.service-card:nth-child(3):hover {
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
}

.service-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.4s;
    opacity: 0;
}

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

.service-card:nth-child(2) .service-card-glow {
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
}

.service-card:nth-child(3) .service-card-glow {
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.btn-service {
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
}

.btn-service:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--accent-cyan);
}

.btn-service-purple {
    border-color: rgba(124, 58, 237, 0.2);
    color: var(--accent-purple);
}

.btn-service-purple:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--accent-purple);
}

.btn-service-teal {
    border-color: rgba(6, 182, 212, 0.2);
    color: var(--accent-teal);
}

.btn-service-teal:hover {
    background: rgba(6, 182, 212, 0.08);
    border-color: var(--accent-teal);
}

/* ============================================
   BRANDS MARQUEE
   ============================================ */
.brands {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.marquee-wrapper {
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 32px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.brand-item {
    flex-shrink: 0;
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease-smooth);
    cursor: default;
}

.brand-item:hover {
    color: var(--text-primary);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.08);
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, var(--light-bg-alt) 0%, var(--light-bg) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.areas-card {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.areas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0.5;
}

.areas-map-icon {
    margin-bottom: 24px;
}

.area-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-pill {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-text-secondary);
    background: #f8fafc;
    border: 1px solid var(--light-border);
    border-radius: 50px;
    transition: all 0.3s var(--ease-smooth);
}

.area-pill:hover {
    color: var(--light-text);
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
}

.area-pill.highlight {
    background: var(--gradient-subtle);
    border-color: rgba(0, 212, 255, 0.15);
    color: var(--accent-cyan);
    font-weight: 600;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-media-glow {
    position: absolute;
    inset: -12% -6%;
    background:
        radial-gradient(circle at 30% 25%, rgba(0, 212, 255, 0.22), transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(124, 58, 237, 0.22), transparent 55%);
    filter: blur(40px);
    z-index: 0;
    border-radius: 50%;
    animation: aboutGlow 8s ease-in-out infinite alternate;
}

@keyframes aboutGlow {
    from {
        transform: scale(0.95) translateY(0);
        opacity: 0.8;
    }

    to {
        transform: scale(1.05) translateY(-8px);
        opacity: 1;
    }
}

.about-image-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 14px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.18), rgba(124, 58, 237, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.about-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

.about-image-shine {
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-20deg);
    animation: shineSweep 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shineSweep {
    0% {
        left: -60%;
    }

    55%,
    100% {
        left: 130%;
    }
}

.about-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(13, 18, 37, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.45);
    color: #fff;
}

.about-badge-rating {
    bottom: 18px;
    left: -10px;
}

.about-badge-verified {
    top: 18px;
    right: -10px;
}

.about-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 1rem;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
}

.about-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.about-badge-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.about-badge-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: all 0.3s var(--ease-smooth);
}

.about-feature:hover {
    border-color: rgba(0, 212, 255, 0.15);
    background: rgba(0, 212, 255, 0.03);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-bg-alt) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.testimonial-card {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    background: linear-gradient(135deg, #00d4ff, #06b6d4);
    flex-shrink: 0;
}

.author-avatar.purple {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.author-avatar.teal {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.author-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.faq-item.active {
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-smooth);
    color: var(--text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--light-bg-alt) 0%, var(--light-bg) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 40px;
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    transition: all 0.3s var(--ease-smooth);
}

.contact-item:hover {
    border-color: rgba(0, 212, 255, 0.15);
    background: rgba(0, 212, 255, 0.03);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 12px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.contact-item-icon.purple {
    background: rgba(124, 58, 237, 0.08);
    color: var(--accent-purple);
}

.contact-item-icon.teal {
    background: rgba(6, 182, 212, 0.08);
    color: var(--accent-teal);
}

.contact-item-icon.cyan {
    background: rgba(0, 212, 255, 0.08);
    color: var(--accent-cyan);
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form-card {
    padding: 40px;
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    color: var(--light-text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all 0.3s var(--ease-smooth);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--light-card);
    color: var(--light-text);
}

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

.form-error {
    display: none;
    font-size: 0.78rem;
    color: #ef4444;
    font-weight: 500;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.form-group.error .form-error {
    display: block;
}

.btn-block {
    margin-top: 4px;
}

.services .service-desc,
.services .service-list li,
.testimonials .testimonial-text,
.testimonials .author-location,
.contact .contact-info-sub,
.contact .contact-item p,
.contact .form-group label {
    color: var(--light-text-secondary);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 500px;
}

.cta-btn {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
    }

    50% {
        box-shadow: 0 4px 40px rgba(0, 212, 255, 0.4);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 24px 0;
    border-top: 1px solid var(--border-glass);
    position: relative;
    z-index: 1;
}

.footer-inner {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FLOATING ACTIONS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 56px;
    height: 56px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s var(--ease-smooth);
    animation: whatsappBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappBounce {

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

    50% {
        transform: translateY(-6px);
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-smooth);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-illustration {
        max-width: 300px;
    }

    .hero-stats {
        position: relative;
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
    }

    .stat-badge {
        position: static;
    }

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

    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-visual {
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-content p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 14, 39, 0.95);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        padding: 100px 24px 40px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        transform: translateY(-20px) scale(0.98);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for links */
    .nav-links.open li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.open li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.open li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.open li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.open li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.open li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links.open li.mobile-cta {
        transition-delay: 0.45s;
    }

    .nav-link {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 700;
        padding: 10px;
        width: 100%;
        display: inline-block;
        text-align: center;
        color: var(--text-secondary);
        transition: color 0.3s;
    }

    .nav-link.active,
    .nav-link:hover {
        color: var(--text-primary);
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

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

    .mobile-cta {
        display: flex;
        justify-content: center;
        margin-top: 32px;
        width: 100%;
    }

    .mobile-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1.15rem;
    }

    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-badge {
        padding: 10px 16px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 28px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .about-image-frame {
        max-width: 320px;
    }

    .about-badge-rating {
        left: 0;
    }

    .about-badge-verified {
        right: 0;
    }

    .blob {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-illustration {
        max-width: 260px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .stat-badge {
        width: 100%;
        max-width: 100%;
        padding: 12px 8px;
    }

    .stat-badge:nth-child(3) {
        grid-column: span 2;
        max-width: 100%;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .area-pill {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .contact-info,
    .contact-form-card {
        padding: 24px;
    }

    .cta-inner {
        padding: 28px;
    }
}