:root {
    --bg-dark: #0f1014;
    --bg-darker: #08080a;
    --text-main: #f5f5f7;
    --text-muted: #a1a1aa;
    
    /* Branding colors from logo - CMYK vibes */
    --color-cyan: #00bef3;
    --color-magenta: #e81d62; 
    --color-yellow: #ffd00b;

    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
    -webkit-tap-highlight-color: rgba(0, 190, 243, 0.12);
}
body.nav-menu-open {
    overflow: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.highlight { 
    background: linear-gradient(90deg, var(--color-cyan), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards ease-out;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .about-hero-img,
    .about-img-container {
        animation: none !important;
    }
    .hero-bg {
        transform: none !important;
    }
    .logo:hover {
        transform: none;
        filter: none;
    }
    .contact-box {
        transition: none;
    }
    .contact-box:hover {
        transform: none;
    }
    .btn.primary:hover,
    .btn.secondary:hover {
        transform: none;
    }
    .footer-links-list a:hover {
        transform: none;
    }
    .info-block:hover {
        transform: none;
    }
    .info-block:hover i {
        transform: none;
    }
    .a-feature:hover .a-icon,
    .why-item:hover .icon-wrap {
        transform: none;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 14px 5%;
    padding-top: max(14px, env(safe-area-inset-top));
    background: rgba(15, 16, 20, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.navbar.navbar--scrolled {
    background: rgba(10, 11, 15, 0.97);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    border-bottom-color: rgba(0, 190, 243, 0.14);
}
.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.5px;
    color: inherit;
    text-decoration: none;
    min-width: 0;
    transition: transform 0.35s ease, filter 0.35s ease;
}
.logo:hover {
    transform: scale(1.02);
    filter: brightness(1.06);
}
.logo .sky { color: var(--color-cyan); font-size: 1.75rem; margin-right: 5px;}
.logo .print { color: var(--text-main); margin-right: 5px; }
.logo .sub { font-size: 0.82rem; font-weight: 400; color: var(--color-magenta); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}
.nav-toggle:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0, 190, 243, 0.35);
}
.nav-toggle-bar {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-main);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.navbar.nav-is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar.nav-is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.navbar.nav-is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
    display: flex;
    gap: clamp(16px, 3vw, 30px);
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.site-nav ul a {
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}
.site-nav ul a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-magenta));
    transition: width 0.3s ease;
}
.site-nav ul a:hover,
.site-nav ul a:focus-visible {
    color: var(--color-cyan);
}
.site-nav ul a:hover::after,
.site-nav ul a:focus-visible::after {
    width: 100%;
}
.btn-nav::after {
    display: none;
}
.btn-nav {
    background: var(--color-magenta);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff !important;
}

/* Hero */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 0 clamp(16px, 5%, 48px);
    position: relative;
    padding-top: max(88px, calc(env(safe-area-inset-top) + 72px));
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 190, 243, 0.3) 0%, rgba(232, 29, 98, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
    animation: heroBgDrift 22s ease-in-out infinite alternate;
}

@keyframes heroBgDrift {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(-36px, 28px) scale(1.07); opacity: 0.88; }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    touch-action: manipulation;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn.primary {
    background: linear-gradient(135deg, var(--color-magenta), #ff3068);
    color: white;
    box-shadow: 0 10px 20px rgba(232, 29, 98, 0.3);
}
.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(232, 29, 98, 0.4);
}
.btn.secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    border-color: rgba(0, 190, 243, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.btn.secondary:active {
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.stat-item {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
}
.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-item p {
    font-size: 0.9rem !important;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0 !important;
}

/* Float Animations for decorations */
@keyframes continuous-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Headings */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}
.section-heading h2 {
    font-size: 2.8rem;
    font-weight: 800;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}
.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--color-yellow);
    border-radius: 2px;
    transition: width 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-heading.is-revealed h2::after {
    width: 60px;
}
.section-heading p { color: var(--text-muted); font-size: 1.1rem; }

/* About Section */
.about-section {
    padding: 100px 5%;
    background: #ffffff;
    color: #111;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    animation: aboutFrameGlow 5s ease-in-out infinite;
}

@keyframes aboutFrameGlow {
    0%, 100% { box-shadow: 0 15px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(0, 190, 243, 0); }
    50% { box-shadow: 0 20px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0, 190, 243, 0.2); }
}

.about-hero-img {
    width: 100%;
    height: auto;
    display: block;
    animation: continuous-float 6s ease-in-out infinite;
}
.about-text-desc {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 62ch;
}
.about-heading {
    text-align: left;
    margin-bottom: 25px;
}
.about-content .faq-title {  /* reuse title style but assure color is dark */
    color: #111 !important; 
}
.about-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}
.a-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}
.a-icon {
    background: #ff5722; /* Vibrant orange/red from screenshot */
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.a-feature:hover .a-icon {
    transform: scale(1.06) rotate(-4deg);
    box-shadow: 0 10px 24px rgba(255, 87, 34, 0.35);
}
.a-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}
.a-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}
.about-check-list {
    list-style: none;
    padding: 0;
}
.about-check-list li {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
}
.text-red {
    color: #ff3b30;
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Services Section */
.services {
    padding: 100px 5%;
    background: var(--bg-darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}
.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 190, 243, 0.4);
    box-shadow: 0 10px 30px rgba(0, 190, 243, 0.1);
}
.service-card-thumb {
    margin: -30px -20px 16px -20px;
    height: 195px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
}
.service-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.12);
    transition: transform 0.45s ease;
}
.service-card:hover .service-card-thumb img {
    transform: scale(1.18);
}
.service-card:nth-child(3n + 1) .service-card-thumb { box-shadow: inset 0 -3px 0 var(--color-cyan); }
.service-card:nth-child(3n + 2) .service-card-thumb { box-shadow: inset 0 -3px 0 var(--color-magenta); }
.service-card:nth-child(3n) .service-card-thumb { box-shadow: inset 0 -3px 0 var(--color-yellow); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Why Us Section */
.why-choose-us {
    padding: 100px 5%;
    background: var(--bg-dark);
}
.why-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.icon-wrap {
    background: rgba(255, 208, 11, 0.1);
    color: var(--color-yellow);
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.why-item:hover .icon-wrap {
    transform: scale(1.08);
    background: rgba(255, 208, 11, 0.18);
    box-shadow: 0 0 0 1px rgba(255, 208, 11, 0.25);
}
.why-item h4 { font-size: 1.3rem; margin-bottom: 5px; }
.why-item p { color: var(--text-muted); font-size: 0.95rem; }

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}
.clients-section .section-heading {
    margin-bottom: 50px;
}
.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.clients-marquee::before, .clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
}
.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}
.clients-track {
    display: flex;
    width: max-content;
    gap: 40px;
    padding-left: 40px; /* offset the loop visually */
    margin-bottom: 20px;
}
.track-left {
    animation: scroll-marquee 40s linear infinite;
}
.track-right {
    animation: scroll-marquee-reverse 40s linear infinite;
}
.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 80px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.4s ease;
    cursor: default;
    white-space: nowrap;
}
.client-logo:hover {
    color: var(--color-cyan);
    border-color: rgba(0, 190, 243, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(0, 190, 243, 0.1);
    transform: translateY(-5px);
}
.client-logo i {
    font-size: 1.5rem;
    color: var(--color-magenta);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); } /* Scrolls exactly one set width + half gap */
}

@keyframes scroll-marquee-reverse {
    0% { transform: translateX(calc(-50% - 20px)); }
    100% { transform: translateX(0); }
}

/* Testimonial strip above FAQ (reference layout) */
.faq-testimonial-strip {
    position: relative;
    background: #fff;
    color: #1a1a1a;
    padding: 88px 5% 72px;
    overflow: hidden;
}

.faq-testimonial-glow {
    position: absolute;
    right: -10%;
    top: 10%;
    width: min(55vw, 480px);
    height: 75%;
    background: radial-gradient(ellipse at center, rgba(232, 90, 120, 0.18) 0%, rgba(255, 200, 210, 0.06) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.faq-testimonial-blob {
    position: absolute;
    width: min(42vw, 340px);
    height: min(42vw, 340px);
    top: -120px;
    left: -100px;
    background: linear-gradient(145deg, #ff7a2e 0%, #ffb24d 55%, #ffc878 100%);
    border-radius: 42% 58% 48% 52% / 52% 41% 59% 48%;
    opacity: 0.92;
    z-index: 0;
}

.faq-testimonial-quote-mark {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-58%);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(6rem, 22vw, 14rem);
    line-height: 1;
    color: rgba(0, 0, 0, 0.06);
    font-weight: 700;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.faq-testimonial-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

.faq-testimonial-grid {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.faq-testimonial-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.faq-testimonial-photo-wrap {
    position: relative;
    width: min(100%, 300px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: faqPhotoFloat 6s ease-in-out infinite;
}

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

.faq-testimonial-photo-halo {
    position: absolute;
    inset: -28%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 45%,
        rgba(0, 190, 243, 0.22) 0%,
        rgba(232, 29, 98, 0.12) 38%,
        transparent 65%
    );
    filter: blur(18px);
    pointer-events: none;
    z-index: 0;
    animation: faqPhotoHalo 5s ease-in-out infinite;
}

@keyframes faqPhotoHalo {
    0%, 100% { opacity: 0.65; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1.05); }
}

.faq-testimonial-photo-spin {
    position: absolute;
    inset: -7%;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    transform-origin: 50% 50%;
    background: conic-gradient(
        from 0deg,
        var(--color-cyan),
        var(--color-magenta),
        var(--color-yellow),
        var(--color-cyan)
    );
    opacity: 0.55;
    animation: faqPhotoSpin 12s linear infinite;
    -webkit-mask-image: radial-gradient(
        farthest-side,
        transparent calc(56% - 2px),
        #000 56%,
        #000 calc(72% + 2px),
        transparent 73%
    );
    mask-image: radial-gradient(
        farthest-side,
        transparent calc(56% - 2px),
        #000 56%,
        #000 calc(72% + 2px),
        transparent 73%
    );
}

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

.faq-testimonial-flair {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95);
}

.faq-testimonial-flair--1 {
    left: -2px;
    top: 22%;
    background: var(--color-cyan);
    animation: faqFlairBob 3.2s ease-in-out infinite;
}

.faq-testimonial-flair--2 {
    right: 4%;
    top: 8%;
    width: 9px;
    height: 9px;
    background: var(--color-magenta);
    animation: faqFlairBob2 3.8s ease-in-out 0.4s infinite;
}

.faq-testimonial-flair--3 {
    right: -4px;
    bottom: 26%;
    width: 8px;
    height: 8px;
    background: var(--color-yellow);
    animation: faqFlairBob3 4.1s ease-in-out 0.9s infinite;
}

@keyframes faqFlairBob {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    50% { transform: translate(4px, -6px) scale(1.12); opacity: 1; }
}

@keyframes faqFlairBob2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(-5px, 5px) scale(1.15); opacity: 1; }
}

@keyframes faqFlairBob3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
    50% { transform: translate(-4px, -7px) scale(1.1); opacity: 1; }
}

.faq-testimonial-orbit {
    position: absolute;
    inset: -8%;
    border: 1px solid rgba(200, 160, 230, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: faqOrbitPulse 4.5s ease-in-out infinite;
}

.faq-testimonial-orbit::after {
    content: '';
    position: absolute;
    inset: 10%;
    border: 1px solid rgba(200, 160, 230, 0.22);
    border-radius: 50%;
    animation: faqOrbitInner 5.5s ease-in-out infinite;
}

@keyframes faqOrbitPulse {
    0%, 100% { transform: scale(1); opacity: 0.85; border-color: rgba(200, 160, 230, 0.32); }
    50% { transform: scale(1.04); opacity: 1; border-color: rgba(0, 190, 243, 0.35); }
}

@keyframes faqOrbitInner {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.06); opacity: 1; }
}

.faq-testimonial-photo-bg {
    position: absolute;
    inset: 6%;
    background: linear-gradient(160deg, #e9d8f5 0%, #dcc9ef 45%, #d4b8ea 100%);
    border-radius: 50%;
    z-index: 3;
    animation: faqPhotoBgShimmer 8s ease-in-out infinite;
}

@keyframes faqPhotoBgShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.06); }
}

.faq-testimonial-photo {
    position: relative;
    z-index: 4;
    width: 78%;
    height: 78%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 190, 243, 0.12),
        0 0 28px rgba(232, 29, 98, 0.08);
    animation: faqPhotoShadow 5s ease-in-out infinite;
}

@keyframes faqPhotoShadow {
    0%, 100% {
        box-shadow:
            0 18px 50px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(0, 190, 243, 0.1),
            0 0 22px rgba(232, 29, 98, 0.06);
    }
    50% {
        box-shadow:
            0 22px 56px rgba(0, 0, 0, 0.14),
            0 0 0 1px rgba(0, 190, 243, 0.22),
            0 0 36px rgba(232, 29, 98, 0.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-testimonial-photo-wrap,
    .faq-testimonial-photo-halo,
    .faq-testimonial-photo-spin,
    .faq-testimonial-orbit,
    .faq-testimonial-orbit::after,
    .faq-testimonial-photo-bg,
    .faq-testimonial-photo,
    .faq-testimonial-flair,
    .faq-testimonial-flair--2,
    .faq-testimonial-flair--3 {
        animation: none !important;
    }
    .faq-testimonial-photo-spin {
        transform: rotate(0deg);
        opacity: 0.35;
    }
    .faq-testimonial-orbit,
    .faq-testimonial-orbit::after {
        transform: none;
    }
}

.faq-testimonial-social {
    display: flex;
    gap: 0;
    background: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-testimonial-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 36px;
    color: #222;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.faq-testimonial-social a:hover {
    color: #ff3344;
    transform: translateY(-2px);
}

.faq-testimonial-copy {
    padding-left: clamp(0px, 2vw, 24px);
}

.faq-testimonial-copy h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #222;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

/* Rotating English testimonial lines (one at a time, auto slide) */
.faq-testimonial-rotator {
    position: relative;
    max-width: 520px;
    min-height: clamp(5.75rem, 18vw, 7.25rem);
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 51, 68, 0.06) 0%, rgba(0, 190, 243, 0.06) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-testimonial-rotator-line {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 16px;
    margin: 0;
    font-size: clamp(0.95rem, 2.1vw, 1.08rem);
    font-weight: 600;
    color: #3a3a3a;
    line-height: 1.55;
    opacity: 0;
    transform: translateX(22px);
    animation: faqRotatorLine 20s ease-in-out infinite;
}

.faq-testimonial-rotator-line:nth-child(1) { animation-delay: 0s; }
.faq-testimonial-rotator-line:nth-child(2) { animation-delay: -5s; }
.faq-testimonial-rotator-line:nth-child(3) { animation-delay: -10s; }
.faq-testimonial-rotator-line:nth-child(4) { animation-delay: -15s; }

@keyframes faqRotatorLine {
    0% { opacity: 0; transform: translateX(22px); }
    2% { opacity: 1; transform: translateX(0); }
    21% { opacity: 1; transform: translateX(0); }
    25% { opacity: 0; transform: translateX(-16px); }
    100% { opacity: 0; transform: translateX(-16px); }
}

.faq-testimonial-rotator:hover .faq-testimonial-rotator-line {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .faq-testimonial-rotator {
        min-height: 0;
    }
    .faq-testimonial-rotator-line {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        padding-bottom: 12px;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    .faq-testimonial-rotator-line:last-child {
        padding-bottom: 0;
    }
}

.faq-testimonial-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.faq-testimonial-name span {
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 3px solid #ff3344;
}

.faq-testimonial-role {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 28px;
}

.faq-testimonial-pager {
    display: flex;
    align-items: baseline;
    gap: 28px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #bbb;
}

.faq-testimonial-pager .pager-item {
    cursor: default;
    padding-bottom: 6px;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.faq-testimonial-pager .pager-item.is-active {
    color: #111;
    border-bottom-color: #ff3344;
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background: #fff; /* Changed from dark to white */
    color: #000;
    position: relative;
}

.faq-top {
    text-align: center;
    margin-bottom: 60px;
}

.faq-badge {
    background: #ff3344;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.highlight-text-light {
    position: relative;
    display: inline-block;
}
.highlight-text-light::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #3b82f6);
    border-radius: 2px;
}

/* Decorative Ornaments */
.decor-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Soft shadow like screenshot */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.decor-ring::before {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M 50 10 Q 70 30 90 20 M 50 10 L 50 30 M 80 50 Q 60 70 90 90" stroke="%23ffba08" stroke-width="2" fill="none" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
    opacity: 0.8;
}
.ring-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.ring-left {
    top: 25%;
    left: 10%;
}
.ring-right {
    bottom: 0%;
    right: 15%;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot-left-top { background: #ff3344; top: 15%; left: 10%; }
.dot-right-top { background: #4ade80; top: 15%; right: 10%; }
.dot-left-bottom { background: #ff3344; bottom: -5%; left: 9%; }
.dot-right-bottom { background: #ff3344; bottom: -5%; right: 10%; }

.faq-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000; /* Dark text for question */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #666;
}

.faq-question i {
    color: #000;
    font-size: 1.2rem;
}
.icon-plus { display: block; }
.icon-minus { display: none; }

.faq-item.active .icon-plus { display: none; }
.faq-item.active .icon-minus { display: block; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 0 25px 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Work Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-dark); 
    overflow: hidden;
}
.gallery-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}
.gallery-marquee::before, .gallery-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.gallery-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.gallery-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}
.gallery-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scroll-gallery 35s linear infinite;
    padding-left: 20px;
}
@media (hover: hover) and (pointer: fine) {
    .gallery-track:hover {
        animation-play-state: paused;
    }
}
.gallery-item {
    /* Set width to show 5 items on the screen exactly */
    width: calc(20vw - 24px); 
    min-width: 250px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
    cursor: pointer;
}
.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.4s ease;
}
.gallery-item:hover img {
    filter: brightness(1.1);
}

@keyframes scroll-gallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); } /* Half the track = one full set before loop */
}

/* Contact Section */
    .contact {
        padding: 56px clamp(16px, 4%, 24px) max(56px, env(safe-area-inset-bottom));
    background: linear-gradient(135deg, var(--bg-darker), #150a11);
    display: flex;
    justify-content: center;
}
.contact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.contact-box:hover {
    border-color: rgba(0, 190, 243, 0.22);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(232, 29, 98, 0.08);
    transform: translateY(-2px);
}
.contact-box h2 { font-size: 2.5rem; margin-bottom: 10px; }
.contact-box p { color: var(--text-muted); margin-bottom: 40px; }
.contact-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.info-block {
    background: rgba(255,255,255,0.05);
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.info-block:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(0, 190, 243, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 190, 243, 0.12);
}
.info-block:hover i {
    transform: scale(1.08);
}
.info-block.main-number {
    background: rgba(232, 29, 98, 0.1);
    border-color: rgba(232, 29, 98, 0.3);
}
.info-block.main-number:hover { background: rgba(232, 29, 98, 0.2); }
.info-block i {
    font-size: 1.8rem;
    color: var(--color-cyan);
    transition: transform 0.35s ease;
}
.info-block.main-number i { color: var(--color-magenta); }
.info-block .label { display: block; font-size: 0.85rem; color: var(--text-muted); }
.info-block strong { font-size: 1.2rem; }

/* Complex Footer */
.complex-footer {
    background: #050505;
    color: #fff;
    padding: 80px 5% 0;
    font-family: var(--font-main);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
}
.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}
.footer-col .about-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-contact-item i {
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 190, 243, 0.4);
}
.social-icon i {
    font-size: 1.1rem;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 15px;
}
.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.footer-links-list a:hover {
    color: var(--color-cyan);
    transform: translateX(4px);
}
.awards {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.award-number {
    font-size: 2rem;
    color: #fff;
    font-weight: 800;
}
.footer-images {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.f-img-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}
.footer-fire {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.highlight-text {
    color: var(--color-magenta);
}
.footer-bottom-strip {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 0 8px;
    flex-wrap: wrap;
    gap: 30px;
}
.f-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}
.f-bottom-left h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.f-subtext {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.f-address {
    font-size: 0.9rem;
    color: #fff;
}
.f-email {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 5% calc(28px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}
.footer-copyright p {
    margin: 0;
    font-size: 0.8rem;
    color: #5c5c66;
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }
    .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
    }
    .hero-content h1 {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-container {
        max-width: 520px;
        margin: 0 auto;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-inner {
        max-width: none;
    }
    .nav-toggle {
        display: flex;
    }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(10, 11, 14, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.38s ease, visibility 0.38s;
        z-index: 10;
    }
    .navbar.nav-is-open .site-nav {
        max-height: min(85vh, 440px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        visibility: visible;
    }
    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 8px 5% 20px;
        flex-wrap: nowrap;
    }
    .site-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .site-nav ul li:last-child {
        border-bottom: none;
        padding-top: 8px;
    }
    .site-nav ul a {
        display: block;
        padding: 14px 4px;
        font-size: 1rem;
    }
    .site-nav ul a.btn-nav {
        text-align: center;
        padding: 12px 18px;
        border-radius: 12px;
    }
    .navbar {
        position: fixed;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .nav-toggle {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .logo {
        min-width: 0;
        max-width: calc(100vw - 120px);
    }

    .navbar.nav-is-open .site-nav {
        max-height: min(calc(85vh - env(safe-area-inset-bottom)), 520px);
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }

    /* Hero Section */
    .hero {
        padding-top: max(76px, calc(env(safe-area-inset-top) + 56px));
        text-align: center;
        align-items: center;
        justify-content: center;
        min-height: auto;
        padding-bottom: 48px;
    }
    .hero-content { margin: 0 auto; width: 100%; max-width: 100%; }
    .hero-content h1 { font-size: clamp(1.85rem, 8.5vw, 2.65rem); line-height: 1.15; }
    .hero-content p { font-size: 1rem; margin-bottom: 28px; max-width: none; }

    .hero-bg {
        width: min(100vw, 420px);
        height: min(100vw, 420px);
        right: -25%;
        top: -10%;
        opacity: 0.85;
    }

    .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
    .btn { padding: 15px 20px; width: 100%; border-radius: 14px; font-size: 1rem; }

    .hero-stats {
        justify-content: center;
        gap: 28px 36px;
    }
    .stat-item h3 { font-size: 2rem; }

    .features-row { flex-direction: column; align-items: stretch; gap: 12px; }
    .feature-badge { justify-content: center; padding: 12px; border-radius: 12px; }

    /* Global Elements */
    .section-heading { margin-bottom: 32px; padding: 0 4px; }
    .section-heading h2 { font-size: clamp(1.65rem, 5.5vw, 2rem); }
    .section-heading p { font-size: 0.95rem; }

    .about-section { padding: 56px clamp(16px, 4%, 24px); }
    .about-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-heading {
        text-align: center;
    }
    .about-content .faq-title { font-size: clamp(1.35rem, 5vw, 1.75rem) !important; }
    .about-text-desc {
        font-size: 0.98rem;
        line-height: 1.65;
        max-width: none;
    }
    .about-features-list {
        flex-direction: column;
        gap: 22px;
    }
    .a-feature {
        min-width: 0;
        flex: 1 1 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .a-icon {
        margin-bottom: 0;
    }

    .services, .why-choose-us, .faq-testimonial-strip, .faq-section, .contact {
        padding: 56px clamp(16px, 4%, 24px);
    }

    .contact {
        padding-bottom: max(56px, calc(env(safe-area-inset-bottom) + 48px));
    }

    .faq-testimonial-strip {
        padding-top: 48px;
        padding-bottom: 40px;
    }

    .faq-testimonial-blob {
        width: 200px;
        height: 200px;
        top: -70px;
        left: -70px;
        opacity: 0.85;
    }

    .faq-testimonial-quote-mark {
        font-size: clamp(4.5rem, 40vw, 8rem);
        left: 4%;
        transform: translateY(-50%);
    }

    .faq-testimonial-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .faq-testimonial-copy {
        padding-left: 0;
    }

    .faq-testimonial-rotator {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        min-height: 7rem;
    }

    .faq-testimonial-pager {
        justify-content: center;
    }

    .gallery-section {
        padding: 56px clamp(12px, 4vw, 20px) 64px;
    }
    .gallery-track {
        padding-left: 12px;
        gap: 14px;
    }
    .gallery-item {
        width: min(82vw, 280px);
        min-width: 140px;
        height: clamp(180px, 48vw, 240px);
    }
    .gallery-marquee::before,
    .gallery-marquee::after {
        width: 12%;
    }

    .clients-section {
        padding: 56px 0 64px;
    }
    .client-logo {
        width: min(200px, 70vw);
        height: auto;
        min-height: 64px;
        padding: 14px 12px;
        font-size: 0.88rem;
        white-space: normal;
        text-align: center;
        line-height: 1.25;
    }

    /* FAQ Mobile hiding */
    .decor-ring { display: none; }
    .faq-top { position: relative; padding: 0 4px; }
    .faq-title { font-size: clamp(1.45rem, 5vw, 2rem); }
    .faq-subtitle br { display: none; }
    .faq-question {
        padding: 18px 0;
        font-size: 0.98rem;
        gap: 12px;
        min-height: 52px;
        align-items: center;
    }
    .faq-question span { flex: 1; min-width: 0; }
    .faq-badge {
        font-size: 0.78rem;
        padding: 7px 16px;
    }

    .faq-testimonial-social a {
        min-width: 44px;
        min-height: 44px;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }

    /* Layout Adjustments */
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        max-width: 100%;
    }
    .service-card {
        padding: 20px 12px;
        border-radius: 14px;
    }
    .service-card h3 {
        font-size: 1rem;
        line-height: 1.25;
        margin-bottom: 6px;
    }
    .service-card p {
        font-size: 0.82rem;
        line-height: 1.4;
    }
    .service-card-thumb {
        margin: -20px -12px 12px -12px;
        height: 115px;
        border-radius: 14px 14px 0 0;
    }

    .why-grid { grid-template-columns: 1fr; gap: 24px; }
    .why-item { flex-direction: column; text-align: center; align-items: center; }
    .icon-wrap { margin-bottom: 12px; width: 72px; height: 72px; font-size: 1.75rem; }

    /* Contact Box */
    .contact-box {
        padding: 32px 18px 36px;
        border-radius: 18px;
    }
    .contact-box h2 { font-size: clamp(1.45rem, 5vw, 1.85rem); }
    .contact-box p { margin-bottom: 28px; font-size: 0.95rem; }
    .contact-info { flex-direction: column; gap: 12px; }
    .info-block {
        flex-direction: row;
        text-align: left;
        gap: 14px;
        border-radius: 14px;
        padding: 16px 18px;
        width: 100%;
        justify-content: flex-start;
    }
    .info-block i { flex-shrink: 0; }
    .info-block strong { font-size: 0.95rem; }

    /* Footer */
    .complex-footer {
        padding: 48px clamp(16px, 4%, 24px) 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 40px;
    }
    .footer-col {
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
    .footer-col:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
    .footer-col h4 {
        margin-bottom: 16px;
        font-size: 1.05rem;
    }
    .footer-map iframe {
        height: 180px !important;
        border-radius: 12px !important;
    }
    .footer-bottom-strip {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        margin-top: 32px;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .f-bottom-left h5 { font-size: 1.1rem; }
    .f-address { font-size: 0.88rem; line-height: 1.55; }
    .f-email { font-size: 0.95rem; }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 22px 14px;
    }
    .service-card-thumb {
        margin: -22px -14px 12px -14px;
        height: 145px;
    }
    .service-card h3 {
        font-size: 1.08rem;
    }
    .service-card p {
        font-size: 0.86rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.65rem, 9vw, 2.35rem);
    }
    .gallery-item {
        width: min(88vw, 300px);
        min-width: 120px;
        height: clamp(168px, 52vw, 220px);
    }
    .clients-section .section-heading {
        padding-left: clamp(12px, 4vw, 20px);
        padding-right: clamp(12px, 4vw, 20px);
    }
    .faq-testimonial-rotator {
        min-height: 8rem;
        padding: 14px 14px;
    }
    .faq-testimonial-rotator-line {
        left: 14px;
        right: 14px;
    }
    .contact-box {
        padding: 28px 14px 32px;
    }
    .service-card-thumb {
        height: 138px;
    }
}

@media (max-width: 380px) {
    .logo {
        font-size: 1.2rem;
        max-width: calc(100vw - 108px);
    }
    .logo .sky { font-size: 1.45rem; }
    .logo .sub { font-size: 0.72rem; }
    .stat-item h3 { font-size: 1.75rem; }
    .hero-stats { gap: 20px 24px; }
}

