/* ══════════════════════════════════════════
   REVIVAL ALUMINIUM & GLASS — Stylesheet
   60% Cloud Dancer (#F4F5F0)
   30% Egyptian Blue (#10389B)
   10% Saffron (#F0C845)
   ══════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
    --cloud: #F4F5F0;
    --cloud-darker: #E8EAE2;
    --blue: #10389B;
    --blue-dark: #0c2d80;
    --blue-light: #1a47b8;
    --saffron: #F0C845;
    --saffron-dark: #d4a800;
    --text-dark: #0d1b3e;
    --text-mid: #3a4a6b;
    --text-light: #6b7a99;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(16, 56, 155, 0.10);
    --shadow-lg: 0 12px 48px rgba(16, 56, 155, 0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cloud);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--white);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

p {
    color: var(--text-mid);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--saffron);
    color: var(--text-dark);
    box-shadow: 0 4px 16px rgba(240, 200, 69, 0.4);
}

.btn-primary:hover {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 200, 69, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--saffron);
    color: var(--text-dark);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--saffron-dark);
    transform: translateY(-1px);
}

/* ─── Section Header ─── */
.section-tag {
    display: inline-block;
    background: rgba(16, 56, 155, 0.1);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header p {
    margin-top: 14px;
    font-size: 1.05rem;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.75);
}

.section-header.light .section-tag {
    background: rgba(240, 200, 69, 0.2);
    color: var(--saffron);
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 24px rgba(16, 56, 155, 0.12);
    padding: 12px 0;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--saffron);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color var(--transition);
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--saffron);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-links a:not(.btn-nav):hover {
    color: var(--saffron);
}

.nav-links a:not(.btn-nav):hover::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    background: #0c2d80;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(240, 200, 69, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

/* Decorative glass grid */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(12, 45, 128, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 120px;
    max-width: 760px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 200, 69, 0.15);
    border: 1px solid rgba(240, 200, 69, 0.35);
    color: var(--saffron);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-headline {
    margin-bottom: 24px;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
}

.hero-headline em {
    font-style: italic;
    color: var(--saffron);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 580px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 20px 32px;
    width: fit-content;
}

.stat-item {
    text-align: center;
    padding: 0 24px;
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--saffron);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    animation: bounce 2.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ─── Trust Bar ─── */
.trust-bar {
    background: var(--blue);
    padding: 18px 0;
    overflow: hidden;
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-inner>span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-name {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--saffron);
    opacity: 0.7;
}

/* ─── About ─── */
.about {
    background: var(--cloud);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-placeholder {
    background: var(--cloud-darker);
    border-radius: var(--radius-lg);
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px dashed rgba(16, 56, 155, 0.2);
}

.about-img-placeholder p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.about-badge strong {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.about-badge small {
    color: var(--text-light);
    font-size: 0.78rem;
}

.about-text {
    padding-left: 8px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-list {
    list-style: none;
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ─── Services ─── */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--cloud);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1.5px solid transparent;
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover .service-icon {
    background: var(--blue);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(16, 56, 155, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon svg {
    stroke: var(--blue);
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
}

/* ─── Projects ─── */
.projects {
    background: var(--blue);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 360px;
    gap: 20px;
}

.project-card.large {
    grid-column: span 1;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.project-card img {
    transition: transform 0.6s ease;
    height: 360px;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(12, 45, 128, 0.92) 0%, transparent 100%);
    padding: 28px 24px 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-tag {
    display: inline-block;
    background: var(--saffron);
    color: var(--text-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.project-overlay h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.projects-cta {
    text-align: center;
    margin-top: 48px;
}

/* ─── Why Us ─── */
.why-us {
    background: var(--cloud);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.why-text h2 {
    margin-bottom: 16px;
}

.why-text>p {
    margin-bottom: 36px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature h4 {
    color: var(--text-dark);
}

.why-feature p {
    font-size: 0.9rem;
}

.why-visual {
    position: relative;
}

.why-img-placeholder {
    background: var(--cloud-darker);
    border-radius: var(--radius-lg);
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px dashed rgba(16, 56, 155, 0.2);
}

.why-img-placeholder p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.why-counter-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--blue);
    color: var(--white);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
}

.counter-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--saffron);
}

.counter-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ─── Process ─── */
.process {
    background: var(--white);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    padding: 0 16px;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(16, 56, 155, 0.08);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    margin-bottom: -16px;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(16, 56, 155, 0.08);
    margin: 0 auto 16px;
}

.process-step h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.process-step p {
    font-size: 0.88rem;
}

.process-arrow {
    margin-top: 64px;
    opacity: 0.35;
    flex-shrink: 0;
}

/* ─── Testimonials ─── */
.testimonials {
    background: var(--blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testi-card>p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--saffron);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.testi-author small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
}

/* ─── Contact ─── */
.contact {
    background: var(--cloud);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info>p {
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--white);
}

.contact-details strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.contact-details span {
    color: var(--text-mid);
    font-size: 0.9rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #1fad54;
    transform: translateY(-2px);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid var(--cloud-darker);
    border-radius: 8px;
    background: var(--cloud);
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: var(--white);
}

.full-btn {
    grid-column: span 2;
    width: 100%;
    justify-content: center;
}

/* ─── Footer ─── */
.footer {
    background: var(--text-dark);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--saffron);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.footer-col h5 {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li,
.footer-col ul a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--saffron);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--saffron);
}

/* ─── WhatsApp Float ─── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

/* ─── Reveal Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {

    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-badge {
        right: 0;
    }

    .why-counter-card {
        left: 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--blue);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--white) !important;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .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);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        display: none;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full,
    .full-btn {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .trust-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }

    .hero-stats {
        width: 100%;
    }

    .about-badge {
        position: static;
        margin-top: 16px;
    }

    .why-counter-card {
        position: static;
        margin-top: 16px;
    }
}

/* ─── Top Info Bar ─── */
.topbar {
    background: var(--text-dark);
    padding: 9px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.7);
}

.topbar-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-social {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    transition: color var(--transition);
}

.topbar-social:hover {
    color: var(--saffron);
}

/* ─── Hero Video ─── */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.9;
}

/* ─── Tabbed Services ─── */
.services-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.services-header {
    max-width: 520px;
}

.services-header h2 {
    margin-bottom: 8px;
}

.services-tabs-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
}

.service-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--cloud);
    border-radius: var(--radius);
    padding: 8px;
}

.stab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
}

.stab:hover {
    background: var(--cloud-darker);
    color: var(--text-dark);
}

.stab.active {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(16, 56, 155, 0.25);
}

.stab svg {
    flex-shrink: 0;
}

.service-panels {
    min-height: 280px;
}

.spanel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.spanel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spanel-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scard {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid transparent;
    transition: var(--transition);
}

.scard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 56, 155, 0.12);
}

.scard-img-placeholder {
    height: 120px;
    background: var(--cloud);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--cloud-darker);
}

.scard h4 {
    padding: 14px 16px 4px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.scard p {
    padding: 0 16px 16px;
    font-size: 0.82rem;
    color: var(--text-mid);
}

/* ─── Process Timeline ─── */
.process-timeline {
    max-width: 760px;
    margin: 0 auto;
}

.pt-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 28px;
}

.pt-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pt-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(16, 56, 155, 0.3);
}

.pt-dot.saffron {
    background: var(--saffron);
}

.pt-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, rgba(16, 56, 155, 0.4), rgba(16, 56, 155, 0.05));
    margin: 8px auto 0;
    min-height: 32px;
}

.pt-body {
    padding-bottom: 48px;
}

.pt-step.last .pt-body {
    padding-bottom: 0;
}

.pt-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(16, 56, 155, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.pt-body h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pt-body p {
    font-size: 0.9rem;
    max-width: 540px;
}

/* ─── FAQ ─── */
.faq {
    background: var(--cloud);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 72px;
    align-items: start;
}

.faq-text h2 {
    margin-bottom: 14px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1.5px solid var(--cloud-darker);
}

.faq-item:first-child {
    border-top: 1.5px solid var(--cloud-darker);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--blue);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    stroke: var(--text-light);
}

.faq-item.active .faq-q {
    color: var(--blue);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    stroke: var(--blue);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.faq-item.active .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ─── Additional responsive for new sections ─── */
@media (max-width: 1024px) {
    .services-tabs-layout {
        grid-template-columns: 1fr;
    }

    .service-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .spanel-cards {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .services-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .spanel-cards {
        grid-template-columns: 1fr;
    }
}

/* ─── About Collage (Konta-style) ─── */
.about-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 460px;
}

.collage-main {
    height: 100%;
}

.collage-placeholder {
    height: 100%;
    background: var(--cloud-darker);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(16, 56, 155, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.collage-placeholder span {
    font-size: 0.82rem;
    color: var(--text-light);
    text-align: center;
}

.collage-placeholder.small {
    height: 100%;
}

.collage-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.collage-secondary {
    flex: 1;
}

.collage-badge-block {
    background: var(--blue);
    border-radius: var(--radius);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
}

.collage-badge-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--saffron);
    line-height: 1;
}

.collage-badge-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* ─── Stats Counter Bar (Konta-style) ─── */
.stats-bar {
    background: var(--white);
    border-top: 1px solid var(--cloud-darker);
    border-bottom: 1px solid var(--cloud-darker);
    padding: 48px 0;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

.sbar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    justify-content: center;
}

.sbar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(16, 56, 155, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sbar-icon svg {
    stroke: var(--blue);
}

.sbar-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.sbar-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 4px;
}

.sbar-divider {
    width: 1px;
    height: 60px;
    background: var(--cloud-darker);
}

/* ─── Dark CTA Strip (Wireframe-style) ─── */
.cta-strip {
    background: var(--text-dark);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(240, 200, 69, 0.06);
}

.cta-strip::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(16, 56, 155, 0.15);
}

.cta-strip-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-strip-text h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.cta-strip-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 460px;
}

.cta-strip-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.cta-strip-tel {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.cta-strip-tel:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

/* ─── Responsive for new components ─── */
@media (max-width: 768px) {
    .about-collage {
        grid-template-columns: 1fr;
        height: auto;
    }

    .collage-main {
        height: 220px;
    }

    .collage-side {
        flex-direction: row;
    }

    .collage-secondary {
        height: 160px;
        flex: 1;
    }

    .collage-badge-block {
        flex: 0 0 120px;
    }

    .stats-bar-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .sbar-divider {
        display: none;
    }

    .sbar-item {
        padding: 0 16px;
        justify-content: flex-start;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-bar-inner {
        grid-template-columns: 1fr;
    }

    .sbar-item {
        justify-content: center;
    }
}