/* ── Anova Kitchens — site.css  (light theme) ──────────────────────────── */

/* ─── Custom Properties ─────────────────────────────────────────────────── */
:root {
    /* Backgrounds */
    --ak-bg:            #FFFFFF;
    --ak-bg-warm:       #F8F5F1;
    --ak-bg-light:      #F2EDE8;
    --ak-bg-dark:       #252018;   /* charcoal – footer + dark sections  */
    --ak-bg-darker:     #181410;   /* near-black – footer bottom          */

    /* Brand */
    --ak-copper:        #C07040;
    --ak-copper-light:  #D08858;
    --ak-copper-dark:   #966030;
    --ak-copper-faint:  rgba(192,112,64,.08);
    --ak-copper-glow:   rgba(192,112,64,.20);

    /* Text */
    --ak-text:          #1A1816;
    --ak-text-muted:    #6B6460;
    --ak-text-dim:      #A09890;
    --ak-white:         #FFFFFF;

    /* Borders */
    --ak-border:        #EAE5E0;
    --ak-border-copper: rgba(192,112,64,.28);

    /* Shadows */
    --ak-shadow:        0 2px 16px rgba(26,24,22,.07);
    --ak-shadow-lg:     0 8px 40px rgba(26,24,22,.12);
    --ak-shadow-copper: 0 4px 24px rgba(192,112,64,.18);

    --ak-radius:        6px;
    --ak-radius-lg:     12px;
    --ak-transition:    .25s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    background: var(--ak-bg);
    color: var(--ak-text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--ak-text);
    line-height: 1.2;
}

a { color: var(--ak-copper); text-decoration: none; transition: color var(--ak-transition); }
a:hover { color: var(--ak-copper-dark); }

img { max-width: 100%; height: auto; }

/* ─── Utility ────────────────────────────────────────────────────────────── */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.py-7 { padding-top: 7rem; padding-bottom: 7rem; }
.text-copper   { color: var(--ak-copper) !important; }
.text-muted-ak { color: var(--ak-text-muted) !important; }

.ak-divider {
    height: 1px;
    background: var(--ak-border);
    border: none;
    margin: 0;
}

.section-label {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ak-copper);
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--ak-text);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--ak-text-muted);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-ak-copper {
    background: var(--ak-copper);
    color: var(--ak-white);
    border: 2px solid var(--ak-copper);
    border-radius: var(--ak-radius);
    padding: .7rem 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: all var(--ak-transition);
    display: inline-block;
}
.btn-ak-copper:hover {
    background: var(--ak-copper-dark);
    border-color: var(--ak-copper-dark);
    color: var(--ak-white);
    transform: translateY(-1px);
    box-shadow: var(--ak-shadow-copper);
}

.btn-ak-outline {
    background: transparent;
    color: var(--ak-text);
    border: 2px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: .7rem 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: all var(--ak-transition);
    display: inline-block;
}
.btn-ak-outline:hover {
    border-color: var(--ak-copper);
    color: var(--ak-copper);
    background: var(--ak-copper-faint);
}

.btn-ak-outline-copper {
    background: transparent;
    color: var(--ak-copper);
    border: 2px solid var(--ak-copper);
    border-radius: var(--ak-radius);
    padding: .6rem 1.75rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: all var(--ak-transition);
    display: inline-block;
}
.btn-ak-outline-copper:hover {
    background: var(--ak-copper);
    color: var(--ak-white);
}

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.ak-navbar {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ak-border);
    padding: .85rem 0;
    transition: padding var(--ak-transition), box-shadow var(--ak-transition);
}
.ak-navbar.scrolled {
    padding: .55rem 0;
    box-shadow: 0 2px 20px rgba(26,24,22,.08);
}

.ak-navbar .navbar-brand img { height: 36px; width: auto; }

.ak-nav-link {
    color: var(--ak-text-muted) !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem .85rem !important;
    border-radius: var(--ak-radius);
    transition: color var(--ak-transition), background var(--ak-transition);
}
.ak-nav-link:hover,
.ak-nav-link.active {
    color: var(--ak-copper) !important;
    background: var(--ak-copper-faint);
}

.navbar-toggler {
    border: 1px solid var(--ak-border-copper) !important;
    padding: .35rem .55rem;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28192%2C112%2C64%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.ak-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--ak-bg);
    overflow: hidden;
    border-bottom: 1px solid var(--ak-border);
}

.ak-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 75% 50%, rgba(192,112,64,.055) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(192,112,64,.03) 0%, transparent 60%);
}

.ak-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(192,112,64,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192,112,64,.06) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .5;
    mask-image: radial-gradient(ellipse at 70% 50%, black 20%, transparent 75%);
}

.ak-hero-content { position: relative; z-index: 2; }

.ak-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Raleway', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--ak-copper);
    margin-bottom: 1.25rem;
}
.ak-hero-eyebrow::before,
.ak-hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--ak-copper);
    opacity: .7;
}

.ak-hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ak-text);
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}
.ak-hero-title .highlight { color: var(--ak-copper); }

.ak-hero-sub {
    font-size: 1.05rem;
    color: var(--ak-text-muted);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.ak-hero-logo-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
}
.ak-hero-logo-side img {
    max-width: 360px;
    width: 100%;
    opacity: .95;
    filter: drop-shadow(0 8px 32px rgba(192,112,64,.12));
}

.ak-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: var(--ak-text-dim);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}
.ak-hero-scroll span {
    display: block;
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--ak-copper));
    animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── Hero — photo variant ───────────────────────────────────────────────── */
.ak-hero--photo {
    background: #0f0d0a;   /* fallback while image loads */
}

.ak-hero-img {
    position: absolute;
    inset: 0;
    background: url('/images/Sleek%20Ultra-Modern%20Kitchen%20Design.png') center / cover no-repeat;
    animation: heroZoomIn 14s ease-out forwards;
    will-change: transform;
    z-index: 0;
}

@keyframes heroZoomIn {
    from { transform: scale(1.0); }
    to   { transform: scale(1.14); }
}

.ak-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10,8,6,.78) 0%,
        rgba(10,8,6,.52) 45%,
        rgba(10,8,6,.18) 100%
    );
    z-index: 1;
}

/* On the photo hero, force text to white */
.ak-hero--photo .ak-hero-content { position: relative; z-index: 2; }
.ak-hero--photo .ak-hero-title   { color: #FFFFFF; }
.ak-hero--photo .ak-hero-title .highlight { color: var(--ak-copper-light); }
.ak-hero--photo .ak-hero-sub     { color: rgba(255,255,255,.78); }
.ak-hero--photo .ak-hero-eyebrow { color: var(--ak-copper-light); }
.ak-hero--photo .ak-hero-eyebrow::before,
.ak-hero--photo .ak-hero-eyebrow::after { background: var(--ak-copper-light); }
.ak-hero--photo .ak-hero-scroll  { color: rgba(255,255,255,.4); }

/* ─── Stats bar ──────────────────────────────────────────────────────────── */
.ak-stats-bar {
    background: var(--ak-bg-warm);
    border-top: 1px solid var(--ak-border);
    border-bottom: 1px solid var(--ak-border);
}
.ak-stat-item {
    text-align: center;
    padding: 1.75rem 1rem;
    border-right: 1px solid var(--ak-border);
}
.ak-stat-item:last-child { border-right: none; }
.ak-stat-num {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ak-copper);
    line-height: 1;
    margin-bottom: .3rem;
}
.ak-stat-label {
    font-size: .75rem;
    color: var(--ak-text-muted);
    letter-spacing: .07em;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

/* ─── Section backgrounds ────────────────────────────────────────────────── */
.ak-section-dark   { background: var(--ak-bg); }
.ak-section-dark-2 { background: var(--ak-bg-warm); }
.ak-section-dark-3 { background: var(--ak-bg-light); }

/* ─── Service cards ──────────────────────────────────────────────────────── */
.ak-service-card {
    background: var(--ak-bg);
    border: 1px solid var(--ak-border);
    border-top: 3px solid var(--ak-copper);
    border-radius: var(--ak-radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: var(--ak-shadow);
    transition: transform var(--ak-transition), box-shadow var(--ak-transition);
}
.ak-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-copper);
}

.ak-service-icon {
    width: 50px;
    height: 50px;
    background: var(--ak-copper-faint);
    border: 1px solid var(--ak-border-copper);
    border-radius: var(--ak-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
    color: var(--ak-copper);
    transition: background var(--ak-transition);
}
.ak-service-card:hover .ak-service-icon { background: rgba(192,112,64,.14); }

.ak-service-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ak-text);
    margin-bottom: .6rem;
    font-family: 'Raleway', sans-serif;
}
.ak-service-text {
    font-size: .88rem;
    color: var(--ak-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── Feature items ──────────────────────────────────────────────────────── */
.ak-feature-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.ak-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--ak-copper-faint);
    border: 1px solid var(--ak-border-copper);
    border-radius: var(--ak-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ak-copper);
    margin-top: .1rem;
}
.ak-feature-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--ak-text);
    margin-bottom: .3rem;
}
.ak-feature-desc {
    font-size: .87rem;
    color: var(--ak-text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ─── CNC block ──────────────────────────────────────────────────────────── */
.ak-cnc-block {
    background: var(--ak-bg-warm);
    border: 1px solid var(--ak-border);
    border-top: 3px solid var(--ak-copper);
    border-radius: var(--ak-radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--ak-shadow);
}
.ak-cnc-icon-large {
    font-size: 3rem;
    color: var(--ak-copper);
    margin-bottom: .75rem;
    opacity: .75;
}

/* ─── Process steps ──────────────────────────────────────────────────────── */
.ak-process-step { text-align: center; padding: 1.25rem .75rem; }
.ak-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ak-copper-faint);
    border: 2px solid var(--ak-copper);
    color: var(--ak-copper);
    font-family: 'Raleway', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    margin: 0 auto .85rem;
}
.ak-step-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--ak-text);
    margin-bottom: .3rem;
}
.ak-step-desc {
    font-size: .8rem;
    color: var(--ak-text-muted);
    line-height: 1.6;
}

/* ─── Portfolio project cards ────────────────────────────────────────────── */
.ak-project-card {
    background: var(--ak-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--ak-shadow);
    transition: transform var(--ak-transition), box-shadow var(--ak-transition);
}
.ak-project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-copper);
}
.ak-project-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ak-bg-light);
}
.ak-project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.ak-project-card:hover .ak-project-thumb img { transform: scale(1.05); }
.ak-project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,24,22,.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    opacity: 0;
    transition: opacity var(--ak-transition);
    color: var(--ak-white);
    font-family: 'Raleway', sans-serif;
    font-size: .82rem;
    font-weight: 600;
}
.ak-project-overlay i { font-size: 1.8rem; }
.ak-project-card:hover .ak-project-overlay { opacity: 1; }
.ak-project-info {
    padding: .9rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
}
.ak-project-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--ak-text);
    margin: 0;
    flex: 1;
    line-height: 1.35;
}
.ak-project-badge {
    flex-shrink: 0;
    background: var(--ak-copper-faint);
    border: 1px solid var(--ak-border-copper);
    color: var(--ak-copper);
    border-radius: 50px;
    padding: .18rem .7rem;
    font-family: 'Raleway', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

/* ─── Category filter ────────────────────────────────────────────────────── */
.ak-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.ak-filter-btn {
    background: var(--ak-bg-warm);
    border: 1px solid var(--ak-border);
    color: var(--ak-text-muted);
    border-radius: 50px;
    padding: .42rem 1.2rem;
    font-family: 'Raleway', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--ak-transition);
}
.ak-filter-btn:hover,
.ak-filter-btn.active {
    background: var(--ak-copper);
    border-color: var(--ak-copper);
    color: var(--ak-white);
}

/* ─── Lightbox modal ─────────────────────────────────────────────────────── */
.ak-modal-content {
    background: #181410;
    border: none;
    border-radius: var(--ak-radius-lg);
    overflow: hidden;
}
.ak-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: #1F1B17;
}
.ak-modal-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #E8E2DC;
    margin: 0;
    font-size: .95rem;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 1rem;
}
.ak-modal-counter {
    font-family: 'Raleway', sans-serif;
    font-size: .78rem;
    color: var(--ak-copper);
    white-space: nowrap;
}
.ak-modal-close {
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    font-size: 1.05rem;
    cursor: pointer;
    padding: .25rem .5rem;
    transition: color var(--ak-transition);
    line-height: 1;
}
.ak-modal-close:hover { color: var(--ak-copper); }
.ak-modal-img-wrap {
    position: relative;
    background: #0F0D0A;
    min-height: 380px;
    max-height: 65vh;
    overflow: hidden;
}
/* Two-layer crossfade stage */
.ak-img-stage {
    position: relative;
    width: 100%;
    min-height: 380px;
    max-height: 65vh;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.ak-img-stage:active { cursor: grabbing; }
.ak-stage-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    will-change: transform;
}
.ak-stage-img--hidden { opacity: 0; }
.ak-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--ak-transition), border-color var(--ak-transition);
}
.ak-lb-nav:hover { background: var(--ak-copper); border-color: var(--ak-copper); }
.ak-lb-prev { left: .75rem; }
.ak-lb-next { right: .75rem; }
.ak-thumb-strip {
    display: flex;
    gap: .35rem;
    padding: .65rem .85rem;
    overflow-x: auto;
    background: #1F1B17;
    border-top: 1px solid rgba(255,255,255,.06);
    scrollbar-width: thin;
    scrollbar-color: rgba(192,112,64,.4) transparent;
}
.ak-thumb-strip::-webkit-scrollbar { height: 3px; }
.ak-thumb-strip::-webkit-scrollbar-thumb { background: rgba(192,112,64,.4); border-radius: 2px; }
.ak-thumb-item {
    flex-shrink: 0;
    width: 60px;
    height: 45px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--ak-transition), opacity var(--ak-transition);
    opacity: .55;
}
.ak-thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.ak-thumb-item:hover { opacity: .85; }
.ak-thumb-item.active { opacity: 1; border-color: var(--ak-copper); }

/* ─── About page ─────────────────────────────────────────────────────────── */
.ak-about-hero {
    background: var(--ak-bg-warm);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--ak-border);
}
.ak-about-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(192,112,64,.05) 0%, transparent 65%);
}

.ak-value-card {
    background: var(--ak-bg);
    border: 1px solid var(--ak-border);
    border-left: 3px solid var(--ak-copper);
    border-radius: var(--ak-radius-lg);
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--ak-shadow);
    transition: transform var(--ak-transition), box-shadow var(--ak-transition);
}
.ak-value-card:hover {
    transform: translateX(3px);
    box-shadow: var(--ak-shadow-copper);
}
.ak-value-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--ak-text);
    margin-bottom: .4rem;
}
.ak-value-text {
    font-size: .87rem;
    color: var(--ak-text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ─── Contact page ───────────────────────────────────────────────────────── */
.ak-contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}
.ak-contact-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--ak-copper-faint);
    border: 1px solid var(--ak-border-copper);
    border-radius: var(--ak-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ak-copper);
    font-size: 1.05rem;
}
.ak-contact-label {
    font-family: 'Raleway', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ak-copper);
    display: block;
    margin-bottom: .2rem;
}
.ak-contact-value { color: var(--ak-text); font-size: .92rem; margin: 0; }
.ak-contact-value a { color: var(--ak-text); }
.ak-contact-value a:hover { color: var(--ak-copper); }

.ak-form-panel {
    background: var(--ak-bg);
    border: 1px solid var(--ak-border);
    border-top: 3px solid var(--ak-copper);
    border-radius: var(--ak-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--ak-shadow);
}
.ak-form-label {
    font-family: 'Raleway', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--ak-text-muted);
    margin-bottom: .45rem;
}
.ak-form-control {
    background: var(--ak-bg-warm);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    color: var(--ak-text);
    padding: .72rem 1rem;
    font-size: .92rem;
    transition: border-color var(--ak-transition), box-shadow var(--ak-transition);
}
.ak-form-control:focus {
    background: var(--ak-bg);
    border-color: var(--ak-copper);
    box-shadow: 0 0 0 3px rgba(192,112,64,.12);
    color: var(--ak-text);
    outline: none;
}
.ak-form-control::placeholder { color: var(--ak-text-dim); }
.ak-form-control option { background: var(--ak-bg); }

.ak-success-banner {
    background: linear-gradient(135deg, rgba(192,112,64,.08), rgba(192,112,64,.03));
    border: 1px solid var(--ak-border-copper);
    border-radius: var(--ak-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--ak-shadow);
}

/* ─── CTA Strip ──────────────────────────────────────────────────────────── */
.ak-cta-strip {
    background: var(--ak-bg-dark);
    position: relative;
    overflow: hidden;
}
.ak-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 120% at 50% 50%, rgba(192,112,64,.08) 0%, transparent 70%);
}
.ak-cta-strip .container { position: relative; z-index: 1; }
.ak-cta-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--ak-white);
    margin-bottom: .75rem;
}
.ak-cta-sub {
    color: rgba(255,255,255,.65);
    font-size: .97rem;
    margin-bottom: 2rem;
}
.btn-ak-white {
    background: var(--ak-white);
    color: var(--ak-bg-dark);
    border: 2px solid var(--ak-white);
    border-radius: var(--ak-radius);
    padding: .8rem 2.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: .87rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: all var(--ak-transition);
    display: inline-block;
}
.btn-ak-white:hover {
    background: var(--ak-copper);
    border-color: var(--ak-copper);
    color: var(--ak-white);
}
.btn-ak-outline-white {
    background: transparent;
    color: rgba(255,255,255,.8);
    border: 2px solid rgba(255,255,255,.35);
    border-radius: var(--ak-radius);
    padding: .8rem 2.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: .87rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: all var(--ak-transition);
    display: inline-block;
}
.btn-ak-outline-white:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.7);
    color: var(--ak-white);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.ak-footer {
    background: var(--ak-bg-dark);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 4rem 0 1.5rem;
}
.ak-footer-logo { height: 46px; width: auto; margin-bottom: 1rem; opacity: .9; }
.ak-footer-tagline {
    font-size: .84rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    max-width: 280px;
}
.ak-footer-heading {
    font-family: 'Raleway', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ak-copper);
    margin-bottom: 1.25rem;
}
.ak-footer-link {
    display: block;
    color: rgba(255,255,255,.45);
    font-size: .86rem;
    margin-bottom: .5rem;
    cursor: pointer;
    transition: color var(--ak-transition), padding-left var(--ak-transition);
}
a.ak-footer-link:hover {
    color: var(--ak-copper);
    padding-left: 4px;
}
.ak-footer-contact {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: rgba(255,255,255,.5);
    font-size: .86rem;
    margin-bottom: .65rem;
}
.ak-footer-contact a { color: rgba(255,255,255,.5); }
.ak-footer-contact a:hover { color: var(--ak-copper); }
.ak-footer-contact i { color: var(--ak-copper); font-size: .95rem; flex-shrink: 0; margin-top: .15rem; }
.ak-footer-rule { border-color: rgba(255,255,255,.08); opacity: 1; margin: 2rem 0 1.5rem; }
.ak-footer-copy { font-size: .76rem; color: rgba(255,255,255,.3); text-align: center; }

/* ─── WhatsApp FAB ───────────────────────────────────────────────────────── */
.ak-whatsapp-fab {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: .55rem;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: .7rem 1.2rem .7rem .9rem;
    font-family: 'Raleway', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,.32);
    transition: all var(--ak-transition);
}
.ak-whatsapp-fab:hover {
    background: #1db954;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,.42);
}
.ak-whatsapp-fab i { font-size: 1.3rem; }

/* ─── Page hero banners ──────────────────────────────────────────────────── */
.ak-page-hero {
    background: var(--ak-bg-warm);
    padding: 7rem 0 4rem;
    position: relative;
    border-bottom: 1px solid var(--ak-border);
}
.ak-page-hero-title {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--ak-text);
    margin-bottom: .75rem;
}
.ak-page-hero-sub {
    font-size: 1rem;
    color: var(--ak-text-muted);
    max-width: 560px;
    line-height: 1.8;
}
.ak-breadcrumb { color: var(--ak-text-dim); font-size: .8rem; margin-bottom: 1.25rem; }
.ak-breadcrumb a { color: var(--ak-copper); }
.ak-breadcrumb-sep { margin: 0 .4rem; }

/* ─── Scroll reveal ──────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .ak-hero-logo-side { display: none; }
    .ak-hero-content { text-align: center; }
    .ak-hero-sub { margin-left: auto; margin-right: auto; }
    .ak-hero-eyebrow { justify-content: center; }
    .ak-stat-item { border-right: none; border-bottom: 1px solid var(--ak-border); }
    .ak-stat-item:last-child { border-bottom: none; }
    .ak-cnc-block { padding: 1.75rem; }
    .ak-form-panel { padding: 1.75rem; }
}
@media (max-width: 575px) {
    .ak-whatsapp-fab span { display: none; }
    .ak-whatsapp-fab { padding: .8rem; border-radius: 50%; }
}

/* ─── Bootstrap overrides ────────────────────────────────────────────────── */
.form-control.ak-form-control:focus { box-shadow: 0 0 0 3px rgba(192,112,64,.12) !important; }
.form-select.ak-form-control { appearance: auto; }
