/* =========================================================
   AARON ELECTRICS — STYLESHEET
   60% Cloud Dancer (#F4F5F0) | 30% Egyptian Blue (#10389B) | 10% Celery (#B1C44D)
   Font: Syne (headings) + Inter (body)
   ========================================================= */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cloud: #F4F5F0;
    --cloud-2: #EAECDF;
    --blue: #10389B;
    --blue-dk: #0B2878;
    --blue-lt: #1A4BC4;
    --celery: #F2FF58;
    --celery-dk: #D4E030;
    --dark: #0D1B2A;
    --text: #2A2D35;
    --text-lt: #5C6070;
    --white: #FFFFFF;

    --ff-head: 'Syne', sans-serif;
    --ff-body: 'Inter', sans-serif;

    --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(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--cloud);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
    font-family: var(--ff-head);
    line-height: 1.15;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 1rem;
}

.why-title {
    color: var(--white);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-lt);
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--celery-dk);
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-family: var(--ff-head);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-accent {
    background: var(--celery);
    color: var(--dark);
    border-color: var(--celery);
}

.btn-accent:hover {
    background: var(--celery-dk);
    border-color: var(--celery-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(177, 196, 77, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---- TOP BAR ---- */
.topbar {
    background: var(--blue-dk);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-family: var(--ff-body);
    padding: 0.5rem 0;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item svg {
    opacity: 0.7;
    flex-shrink: 0;
}

/* ---- NAVBAR ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(16, 56, 155, 0.08);
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 0.65rem 0;
    box-shadow: 0 4px 32px rgba(16, 56, 155, 0.14);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.05em;
}

.logo-sub {
    font-family: var(--ff-head);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--celery-dk);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--blue);
    background: rgba(16, 56, 155, 0.06);
}

.nav-cta {
    margin-left: 0.5rem;
    padding: 0.6rem 1.4rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--blue-dk);
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-dk) 0%, #173d9e 50%, #0B2878 100%);
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.1rem;
    font-style: italic;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(11, 40, 120, 0.35) 0%,
            rgba(16, 56, 155, 0.25) 55%,
            rgba(11, 40, 120, 0.15) 100%);
}

/* diagonal celery accent stripe */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 90px;
    background: var(--cloud);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem 10rem;
    max-width: 780px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(177, 196, 77, 0.15);
    border: 1px solid rgba(177, 196, 77, 0.4);
    color: var(--celery);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 110px;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--blue);
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 1;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--ff-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--ff-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--celery);
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ---- SERVICES ---- */
.services-section {
    padding: 6rem 1.5rem;
    background: var(--cloud);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(28px);
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-img-wrap {
    position: relative;
    height: 180px;
}

.service-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cloud-2) 0%, #dde0d2 100%);
    color: var(--text-lt);
    font-size: 0.82rem;
    font-style: italic;
    text-align: center;
}

.service-card-icon {
    position: absolute;
    bottom: -20px;
    left: 1.5rem;
    width: 52px;
    height: 52px;
    background: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(16, 56, 155, 0.3);
    transition: background var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--celery-dk);
}

.service-card-body {
    padding: 2.2rem 1.5rem 1.75rem;
}

.service-card-body h3 {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.6rem;
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--text-lt);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--celery-dk);
}

/* ---- ABOUT ---- */
.about-section {
    padding: 6rem 1.5rem;
    background: var(--blue);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visuals {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--blue);
}

.about-exp-badge {
    position: absolute;
    top: 50%;
    left: 56%;
    transform: translate(-50%, -50%);
    background: var(--celery);
    color: var(--dark);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    box-shadow: 0 8px 32px rgba(177, 196, 77, 0.4);
}

.exp-number {
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.about-content .section-tag {
    color: var(--celery);
}

.about-content .section-title {
    color: var(--white);
}

.about-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2rem 0 2.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.af-icon {
    width: 44px;
    height: 44px;
    background: rgba(177, 196, 77, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(177, 196, 77, 0.3);
}

.about-feature strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 3px;
}

.about-feature p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- WHY CHOOSE US ---- */
.why-section {
    padding: 6rem 1.5rem;
    background: var(--blue-dk);
}

.why-section .section-tag {
    color: var(--celery);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(177, 196, 77, 0.4);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background var(--transition);
}

.why-card:hover .why-icon {
    background: rgba(177, 196, 77, 0.15);
}

.why-card:hover .why-icon svg {
    stroke: var(--celery);
}

.why-card h3 {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.why-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ---- PORTFOLIO ---- */
.portfolio-section {
    padding: 6rem 1.5rem;
    background: var(--cloud);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    transform: translateY(28px);
    transition: all var(--transition);
}

.portfolio-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.07);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 40, 120, 0.93) 0%, rgba(16, 56, 155, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    transform: translateY(40px);
    opacity: 0;
    transition: all var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-tag {
    display: inline-block;
    background: var(--celery);
    color: var(--dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.65rem;
    width: fit-content;
}

.portfolio-overlay h4 {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.portfolio-overlay p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.portfolio-cta-wrap {
    text-align: center;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
    padding: 6rem 1.5rem;
    background: var(--cloud-2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--celery);
    opacity: 0;
    transform: translateY(28px);
    transition: all var(--transition);
}

.testimonial-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.1rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-lt);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-family: var(--ff-head);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 0.92rem;
    color: var(--text);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-lt);
}

/* ---- CONTACT ---- */
.contact-section {
    padding: 6rem 1.5rem;
    background: var(--blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

.contact-info .section-tag {
    color: var(--celery);
}

.contact-info .section-title {
    color: var(--white);
}

.contact-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cd-icon {
    width: 44px;
    height: 44px;
    background: rgba(177, 196, 77, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(177, 196, 77, 0.3);
}

.contact-detail-item strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--celery);
    margin-bottom: 2px;
}

.contact-detail-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(16, 56, 155, 0.18);
    border-radius: 8px;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--cloud);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(16, 56, 155, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
}

/* ---- CTA STRIP ---- */
.cta-strip {
    background: var(--dark);
    padding: 4rem 1.5rem;
}

.cta-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-strip-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-strip-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.97rem;
}

.cta-strip-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--blue-dk);
    padding: 5rem 1.5rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-brand .nav-logo {
    margin-bottom: 0;
}

.footer-brand .logo-main {
    color: var(--white);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--celery);
    color: var(--dark);
    border-color: var(--celery);
}

.footer-col h4 {
    font-family: var(--ff-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--celery);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visuals {
        height: 380px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        justify-content: center;
        font-size: 0.72rem;
    }

    .topbar-item:last-child {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border-top: 1px solid rgba(16, 56, 155, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        border-radius: 8px;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .hero-content {
        padding: 6rem 1.5rem 8rem;
    }

    .hero-scroll-hint {
        display: none;
    }

    .stats-container {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        padding: 0 1rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-item {
        padding: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-visuals {
        height: 300px;
    }

    .about-img-main {
        width: 80%;
        height: 75%;
    }

    .about-img-secondary {
        width: 55%;
        height: 60%;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
}