/* ========================================
   DESIGN TOKENS – Steel Blue / Emerald
   ======================================== */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #e0f2fe;
    --accent: #43a047;
    --accent-dark: #2e7d32;
    --accent-light: #e8f5e9;
    --bg-dark: #0c1222;
    --bg-dark-2: #131b2e;
    --bg-dark-3: #1a2540;
    --bg-light: #f8fafc;
    --bg-section: #f1f5f9;
    --text: #0f172a;
    --text-2: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, .1);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, .12);
    --transition: .35s cubic-bezier(.25, .8, .25, 1);
}

/* ========================================
   RESET
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .925rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary);
    margin-bottom: 14px;
}

.section-tag-light {
    color: var(--accent-light);
}

.section-heading {
    font-size: clamp(1.875rem, 3.5vw, 2.725rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--text);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.175rem;
    max-width: 560px;
}

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

.section-header .section-desc {
    margin: 0 auto;
}

.accent {
    color: var(--accent);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.075rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(14, 165, 233, .3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, .4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.075rem;
    border: 2px solid rgba(255, 255, 255, .25);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(16, 185, 129, .3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, .4);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, .6);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, .95);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-name {
    font-weight: 800;
    font-size: 1.275rem;
    color: var(--text);
    display: block;
    line-height: 1.1;
}

.logo-sub {
    font-size: .775rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 1.025rem;
    font-weight: 500;
    color: var(--text-2);
}

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

.nav-link-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    padding: 10px 22px;
    font-weight: 600;
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    background: var(--bg-dark);
    padding: 100px 0 80px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(14, 165, 233, .12);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, .1);
    bottom: -80px;
    right: 10%;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, .08);
    top: 30%;
    right: -50px;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: .975rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.hero-heading {
    font-size: clamp(2.525rem, 5vw, 3.725rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-heading-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    color: rgba(255, 255, 255, .6);
    font-size: 1.175rem;
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.stat-num {
    display: block;
    font-size: 1.725rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: .905rem;
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
    letter-spacing: .5px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
}

/* Hero Visual */
.hero-right {
    position: relative;
    min-height: 480px;
    margin-top: 220px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-ring {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border: 2px dashed rgba(14, 165, 233, .2);
    border-radius: 50%;
    animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 30px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    font-size: 1.175rem;
    font-weight: 600;
    line-height: 1.3;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.hero-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.hc-icon {
    font-size: 2.925rem;
}

.hero-card-1 {
    top: 0%;
    left: 2%;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 45%;
    right: -2%;
    animation-delay: 2s;
}

.hero-card-3 {
    bottom: -5%;
    left: 12%;
    animation-delay: 4s;
}

@keyframes float {

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

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

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}

.about-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.about-year {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .975rem;
}

.about-year-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.about-feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.af-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.af-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.af-icon {
    font-size: 1.925rem;
    margin-bottom: 12px;
}

.af-card h4 {
    font-size: 1.075rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.af-card p {
    font-size: .945rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-desc {
    color: var(--text-2);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.about-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 1.075rem;
    font-weight: 500;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--bg-section);
}

.services-cards {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.sv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
}

.sv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.sv-card-featured {
    background: var(--bg-dark);
    border-color: var(--bg-dark-3);
    color: var(--white);
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.sv-card-featured h3 {
    color: var(--white);
}

.sv-card-featured p {
    color: rgba(255, 255, 255, .6);
}

.sv-card-featured .sv-number {
    color: var(--primary);
}

.sv-card-featured .sv-icon-wrap {
    color: var(--primary);
}

.sv-card-featured .sv-link {
    color: var(--primary);
}

.sv-card-featured:hover {
    background: var(--bg-dark-2);
    border-color: var(--primary);
}

.sv-number {
    font-size: 3.125rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
}

.sv-icon-wrap {
    color: var(--primary);
    margin-bottom: 20px;
}

.sv-card h3 {
    font-size: 1.325rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.sv-card p {
    color: var(--text-muted);
    font-size: 1.025rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sv-link {
    font-size: 1.025rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.sv-link:hover {
    gap: 12px;
}

/* ========================================
   SCRAPS
   ======================================== */
.scraps {
    padding: 100px 0;
    background: var(--white);
}

.scraps-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sc-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sc-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.sc-large {
    grid-column: span 2;
}

.sc-emoji {
    font-size: 2.125rem;
    margin-bottom: 14px;
}

.sc-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.sc-item p {
    font-size: .975rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.sc-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: .825rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: .5px;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
    padding: 100px 0;
    background: var(--bg-dark);
}

.gallery .section-tag {
    color: var(--primary);
}

.gallery .section-heading {
    color: var(--white);
}

.gallery .section-desc {
    color: rgba(255, 255, 255, .5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease, filter .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(.7);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, .25);
    opacity: 0;
    transition: opacity .3s ease;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
}

.lb-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lb-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    animation: lbFadeIn .3s ease;
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
        transform: scale(.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.625rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    line-height: 1;
}

.lb-close:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.425rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-prev {
    left: 24px;
}

.lb-next {
    right: 24px;
}

.lb-prev:hover,
.lb-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lb-counter {
    color: rgba(255, 255, 255, .5);
    font-size: .975rem;
    margin-top: 16px;
    font-weight: 500;
}

/* ========================================
   QUOTE
   ======================================== */
.quote {
    padding: 100px 0;
    background: var(--bg-dark);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.quote-heading {
    font-size: clamp(1.925rem, 3.5vw, 2.625rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.quote-text {
    color: rgba(255, 255, 255, .55);
    font-size: 1.075rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qf {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .7);
    font-size: 1.025rem;
    font-weight: 500;
}

.qf svg {
    color: var(--accent);
    flex-shrink: 0;
}

.quote-form {
    background: var(--bg-dark-2);
    border: 1px solid var(--bg-dark-3);
    border-radius: var(--radius-xl);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: .925rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-dark-3);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 1.075rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, .25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, .15);
}

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

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

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}

.cc-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.cc-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}

.cc-card h4 {
    font-size: 1.075rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.cc-card p {
    font-size: 1.025rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 6px;
}

.cc-card small {
    font-size: .905rem;
    color: var(--text-muted);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    padding: 48px 0 32px;
    color: rgba(255, 255, 255, .5);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, .4);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, .4);
    font-size: 1.025rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    font-size: .925rem;
    color: rgba(255, 255, 255, .25);
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.floating {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.fl-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.fl-btn:hover {
    transform: scale(1.15);
}

.fl-phone {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.fl-wa {
    background: #25d366;
    animation: wa-pulse 2.5s ease infinite;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(37, 211, 102, .3);
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, .5);
    }
}

.fl-wa:hover {
    animation: none;
}

/* ========================================
   MOBILE STICKY CTA
   ======================================== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(12, 18, 34, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(14, 165, 233, .2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: inherit;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(14, 165, 233, .35);
    transition: var(--transition);
    animation: cta-glow 2.5s ease-in-out infinite;
}

.mobile-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 28px rgba(14, 165, 233, .5);
}

@keyframes cta-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(14, 165, 233, .35);
    }

    50% {
        box-shadow: 0 4px 28px rgba(14, 165, 233, .55);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        display: none;
    }

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

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

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

    .sv-card-featured {
        grid-row: auto;
    }

    .scraps-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .lb-prev {
        left: 8px;
    }

    .lb-next {
        right: 8px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }

    .nav-menu.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-link-cta {
        text-align: center;
        margin-top: 8px;
    }

    .hero-heading {
        font-size: 2.125rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .scraps-mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .sc-large {
        grid-column: span 2;
    }

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

    .about-feature-cards {
        grid-template-columns: 1fr;
    }

    .floating {
        bottom: 100px;
        right: 20px;
    }

    .fl-btn {
        width: 48px;
        height: 48px;
    }

    .mobile-cta-bar {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .scraps-mosaic {
        grid-template-columns: 1fr;
    }

    .sc-large {
        grid-column: auto;
    }

    .about-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}