/* ============================================
   DIVERTICE10 2026 — Design System
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #FF6B35;
    --primary-dark: #e5531f;
    --primary-light: #FF8F65;
    --secondary: #FFCA3A;
    --accent: #1DD3B0;
    --accent-dark: #17B89A;
    --purple: #7B68EE;
    --navy: #004E89;
    --danger: #FF5DA0;

    --bg: #0f0f13;
    --bg-card: #1a1a23;
    --bg-card-hover: #22222d;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 107, 53, 0.4);

    --text: #f0f0f7;
    --text-muted: rgba(240, 240, 247, 0.6);
    --text-dim: rgba(240, 240, 247, 0.35);

    --navbar-h: 72px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-sm: 8px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 8px 32px rgba(255, 107, 53, 0.25);
    --trans: all 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; font-size: 16px; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === Utilities === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 96px 0; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.highlight { color: var(--primary); }
.highlight-accent { color: var(--accent); }

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--trans);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary);
    font-weight: 800;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-icon { font-size: 1.1em; }

/* === Page Loader === */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }
.loader-emoji {
    font-size: 4rem;
    animation: loaderBounce 0.8s ease infinite alternate;
    display: block;
}
.loader-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

@keyframes loaderBounce {
    from { transform: scale(0.8) translateY(0); }
    to { transform: scale(1.1) translateY(-10px); }
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-h);
    z-index: 1000;
    transition: var(--trans);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar.scrolled {
    background: rgba(15, 15, 19, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}
.nav-logo strong { color: var(--primary); }
.logo-icon { font-size: 1.6rem; }
.logo-img {
    height: 56px;
    width: 56px;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}
.nav-logo:hover .logo-img {
    transform: scale(1.08) rotate(-4deg);
}

/* Footer logo */
.footer-brand .nav-logo .logo-img {
    height: 44px;
    width: 44px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--trans);
    font-size: 0.95rem;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }

.nav-links .nav-cta {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-left: 0.5rem;
}
.nav-links .nav-cta:hover { background: var(--primary-dark); transform: scale(1.05); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--trans);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 19, 0.75) 0%,
        rgba(15, 15, 19, 0.5) 50%,
        rgba(15, 15, 19, 0.75) 100%
    );
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    transition: transform 0.1s ease;
}
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -200px; }
.shape-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -150px; left: -150px; }
.shape-3 { width: 200px; height: 200px; background: var(--accent); top: 40%; left: 5%; }
.shape-4 { width: 150px; height: 150px; background: var(--purple); top: 20%; right: 15%; }
.shape-5 { width: 100px; height: 100px; background: var(--danger); bottom: 25%; right: 8%; }

.confetti-container { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.confetti {
    position: absolute;
    top: -20px;
    animation: confettiFall linear infinite;
}
@keyframes confettiFall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(var(--navbar-h) + 2rem) 1.5rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 202, 58, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(255, 202, 58, 0.35);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    min-width: 110px;
}

.stat-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--trans);
}
.hero-scroll a:hover { color: white; }

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}
.scroll-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 1.5s ease infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* === Services === */
.services { background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--trans);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.service-card--featured {
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06) 0%, var(--bg-card) 100%);
}

.service-card--accent {
    border-color: rgba(29, 211, 176, 0.3);
    background: linear-gradient(135deg, rgba(29, 211, 176, 0.06) 0%, var(--bg-card) 100%);
}

.service-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-image { transform: scale(1.05); }

.service-card-icon {
    position: absolute;
    bottom: -20px;
    right: 1.2rem;
    font-size: 2.2rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}
.service-card-badge--accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.service-card-body {
    padding: 1.8rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: 0.5rem;
}

.service-card-body h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.service-features li {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    transition: var(--trans);
    display: inline-flex;
    align-items: center;
}
.service-link:hover { color: var(--primary-light); transform: translateX(3px); }
.service-link--accent { color: var(--accent); }
.service-link--accent:hover { color: #5aebd6; }

/* === Why Us === */
.why-us { background: linear-gradient(180deg, var(--bg) 0%, rgba(26,26,35,0.8) 100%); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--trans);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.why-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.why-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--primary);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === Parallax Section === */
.parallax-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.parallax-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,19,0.8), rgba(78,4,4,0.6));
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 1.5rem;
}

.parallax-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.parallax-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* === Gallery === */
.gallery { background: var(--bg); }

.gallery-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--trans);
}

.filter-btn:hover {
    border-color: var(--border-hover);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--trans);
}

.gallery-item.hidden { display: none; }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover { border-color: var(--border-hover); box-shadow: var(--shadow-glow); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: var(--trans);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

/* === About === */
.about { background: linear-gradient(180deg, rgba(26,26,35,0.8) 0%, var(--bg) 100%); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-image-main {
    width: 80%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.about-image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 3px solid var(--bg);
}

.about-badge {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-glow);
}

.badge-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.badge-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    text-transform: uppercase;
}

.about-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.about-feature-icon { font-size: 1.1rem; }

/* === Testimonials === */
.testimonials { background: var(--bg); }

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0 2rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--trans);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--primary); font-weight: 600; }

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.testimonial-btn:hover { background: var(--primary); border-color: var(--primary); }

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonials-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--trans);
    border: none;
}
.testimonials-dots .dot.active { background: var(--primary); width: 20px; border-radius: 4px; }

/* === Contact === */
.contact { background: linear-gradient(180deg, var(--bg) 0%, rgba(15,15,19,1) 100%); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    transition: var(--trans);
}

.contact-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.contact-card-icon { font-size: 1.5rem; }
.contact-card-content h4 { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.contact-card-content p { font-weight: 700; font-size: 1rem; }

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--trans);
}
.social-icon:hover { background: var(--primary); border-color: var(--primary); color: white; transform: scale(1.1); }
.social-icon--wa:hover { background: #25d366; border-color: #25d366; }

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form-wrapper h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--text);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    transition: var(--trans);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    cursor: pointer;
    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='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-right: 2.5rem;
}

.form-group select option { background: #1a1a23; }

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.04);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* === Footer === */
.footer {
    background: rgba(10, 10, 14, 1);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--trans);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: scale(1.1); }

.footer-col h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* === Lightbox === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans);
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover { background: var(--primary); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* === WhatsApp FAB === */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--trans);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: pulseRing 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    80%, 100% { transform: scale(1.8); opacity: 0; }
}

/* === Scroll Reveal === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === Responsive === */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }

    .nav-links {
        position: fixed;
        top: var(--navbar-h);
        left: 0;
        right: 0;
        background: rgba(15, 15, 19, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        transform: translateY(-100%) translateY(calc(-1 * var(--navbar-h)));
        opacity: 0;
        visibility: hidden;
        transition: var(--trans);
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-links a { width: 100%; text-align: center; padding: 0.8rem; }
    .nav-links .nav-cta { margin-left: 0; }
    .nav-toggle { display: flex; }

    .hero-stats { gap: 1rem; }
    .hero-stat { min-width: 90px; padding: 0.75rem 1rem; }
    .stat-number { font-size: 1.8rem; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-item--wide { grid-column: span 2; }

    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 300px; }
    .about-image-main { width: 100%; height: 300px; }
    .about-image-float { width: 140px; height: 160px; }

    .testimonial-card { flex: 0 0 calc(100% - 1rem); }

    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; align-items: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .gallery-item--tall { grid-row: span 1; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .filter-btn { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 1rem;
    right: 1rem;
    max-width: 860px;
    margin: 0 auto;
    right: unset;
    width: calc(100% - 2rem);
    max-width: 860px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 22, 35, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    z-index: 9000;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.04);
    transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.visible {
    bottom: 1.5rem;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 220px;
}

.cookie-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.cookie-text p {
    font-size: 0.88rem;
    color: rgba(240, 240, 247, 0.75);
    line-height: 1.5;
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-link:hover { color: var(--primary-light); }

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--trans);
    border: none;
    white-space: nowrap;
}

.cookie-btn--reject {
    background: rgba(255,255,255,0.07);
    color: rgba(240,240,247,0.7);
    border: 1px solid rgba(255,255,255,0.12);
}
.cookie-btn--reject:hover {
    background: rgba(255,255,255,0.13);
    color: white;
}

.cookie-btn--accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.cookie-btn--accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.5);
}

@media (max-width: 600px) {
    .cookie-content { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}
