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

:root {
    --red: #c0272d;
    --red-light: #e63946;
    --red-dark: #8b1a1e;
    --black: #000000;
    --bg: #0a0a0a;
    --bg-2: #111111;
    --bg-3: #161616;
    --bg-card: #1a1a1a;
    --border: #222222;
    --white: #ffffff;
    --gray-100: #f0f0f0;
    --gray-300: #cccccc;
    --gray-500: #888888;
    --gray-700: #444444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-300);
    background-color: var(--bg);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ===== Container ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    color: var(--white);
    line-height: 1.15;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    background: rgba(10, 10, 10, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    max-width: 100%;
    padding: 0 24px;
}

.navbar-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 47px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.8rem;
    margin-left: auto;
}

.nav-menu a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-300);
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
    background: var(--red-light) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: calc(100vh - 60px);
    margin-top: 60px;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

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

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
    padding: 8px 16px;
    border: 1px solid rgba(192, 39, 45, 0.3);
    border-radius: 4px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 50px; }
    50% { opacity: 0.4; height: 30px; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 39, 45, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--red);
    border-radius: 8px;
    z-index: -1;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--gray-300);
}

.highlight-icon {
    color: var(--red);
    font-size: 0.7rem;
}

/* ===== Services ===== */
.services {
    padding: 120px 0;
    background: var(--bg-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 39, 45, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--border);
    margin-bottom: 1rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery {
    padding: 120px 0;
    background: var(--bg);
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-scroll-overlay {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 5;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.6rem;
    letter-spacing: 3px;
    font-weight: 300;
    pointer-events: none;
}

.gallery-scroll-overlay .scroll-arrow {
    animation: hintArrow 1.5s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes hintArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

.gallery-grid-fixed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-height: 800px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.6s ease;
}

.gallery-grid-fixed.expanded {
    max-height: none;
}

.gallery-grid-fixed:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    pointer-events: none;
}

.gallery-item {
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-2);
}

.gallery-item-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

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

.gallery-toggle {
    display: block;
    margin: 2rem auto 0;
    padding: 12px 40px;
}

.gallery-toggle.hidden {
    display: none;
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox img.lightbox-slide-left {
    animation: slideLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox img.lightbox-slide-right {
    animation: slideRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(60px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-60px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.2s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ===== Image Banner ===== */
.image-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 2;
}

.banner-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
}

/* ===== Why Us ===== */
.why-us {
    padding: 120px 0;
    background: var(--bg-2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    padding: 2.5rem;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.why-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-logo-img {
    width: 66%;
    height: auto;
    opacity: 0.9;
}

.why-card:hover {
    border-color: rgba(192, 39, 45, 0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(192, 39, 45, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--red);
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.why-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Work With Us ===== */
.work-with-us {
    padding: 120px 0;
    background: var(--bg);
}

.wwu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.wwu-grid-no-images {
    grid-template-columns: 1fr;
    max-width: 700px;
}

.wwu-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.wwu-img-main {
    width: 100%;
}

.wwu-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    min-height: 500px;
    max-height: 600px;
}

.wwu-img-1 {
    grid-row: span 2;
}

.wwu-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 400px;
}

.wwu-img-2 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.wwu-text h2 {
    text-align: left;
}

.wwu-text p {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.wwu-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.wwu-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.wwu-check {
    color: var(--red);
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .wwu-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .wwu-images {
        grid-template-columns: 1fr;
    }

    .wwu-img-1 {
        grid-row: span 1;
    }

    .wwu-img-1 img {
        min-height: 250px;
    }

    .wwu-img-2 {
        display: none;
    }

    .wwu-benefits {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: var(--bg);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    padding: 1.5rem 0 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: auto;
    width: 100%;
    max-width: 250px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer-section a {
    color: var(--gray-500);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-700);
}

/* ===== Contact Page ===== */
.contact-hero {
    padding: 140px 0 60px;
    background: var(--bg-2);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.contact-hero p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.contact-section {
    padding: 80px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-card:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(192, 39, 45, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-info-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-card a {
    color: var(--gray-300);
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--red);
}

.contact-form {
    background: var(--bg-2);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg);
    color: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 39, 45, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-700);
}

.contact-form .btn {
    width: 100%;
    padding: 16px;
}

/* ===== Legal Pages ===== */
.legal-hero {
    padding: 140px 0 60px;
    background: var(--bg-2);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.legal-content {
    padding: 60px 0;
    background: var(--bg);
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    text-align: left;
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--gray-500);
    line-height: 1.8;
}

.legal-content a {
    color: var(--red);
}

.legal-content a:hover {
    color: var(--red-light);
}

.legal-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: var(--gray-500);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    background: var(--red);
    border-radius: 50%;
    transform: translateY(-50%);
}

.legal-content strong {
    color: var(--gray-300);
}

.legal-divider {
    margin: 3rem 0;
    border: none;
    border-top: 1px solid var(--border);
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image img {
        height: 350px;
    }

    .about-image-accent {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .navbar .container {
        height: 50px;
        padding: 0 14px;
    }

    .navbar-brand img {
        height: 38px !important;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.8rem;
        padding-bottom: 60px;
        z-index: 9999;
    }

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

    .nav-menu a {
        font-size: 1.3rem;
        color: var(--white);
    }

    .nav-cta {
        font-size: 1.3rem !important;
        padding: 14px 36px !important;
        margin-top: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 10000;
        position: relative;
    }

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

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

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

    .hero {
        min-height: 600px;
    }

    .hero-scroll {
        display: none;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .gallery-scroll-overlay {
        display: flex;
    }

    .gallery-grid-fixed {
        grid-template-columns: 1fr;
        max-height: none;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 16px;
        scrollbar-width: none;
    }

    .gallery-grid-fixed::-webkit-scrollbar {
        display: none;
    }

    .gallery-grid-fixed:not(.expanded)::after {
        display: none;
    }

    .gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .gallery-item-inner {
        height: auto;
    }

    .gallery-toggle {
        display: none !important;
    }

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }

    .footer-logo {
        height: auto;
        width: 200px;
        max-width: 200px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .image-banner {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* WhatsApp card on contact page */
.whatsapp-card .whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.whatsapp-card a {
    color: #25d366;
}

.whatsapp-card a:hover {
    color: #1da851;
}

/* Footer WhatsApp link */
.footer-whatsapp::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='%2325d366' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.004 0h-.008C7.174 0 0 7.176 0 16c0 3.5 1.128 6.744 3.046 9.378L1.054 31.29l6.118-1.96A15.9 15.9 0 0 0 16.004 32C24.826 32 32 24.822 32 16S24.826 0 16.004 0zm9.335 22.594c-.39 1.1-1.932 2.014-3.17 2.28-.846.18-1.95.324-5.67-1.218-4.762-1.972-7.828-6.81-8.066-7.126-.23-.316-1.926-2.566-1.926-4.892s1.218-3.47 1.65-3.944c.39-.428 1.026-.642 1.636-.642.198 0 .376.01.536.018.432.018.648.044.934.724.356.852 1.224 2.986 1.33 3.204.108.216.216.504.07.79-.136.294-.252.476-.468.73-.216.254-.428.45-.644.724-.198.236-.42.49-.176.932.244.44 1.082 1.786 2.324 2.894 1.598 1.424 2.944 1.866 3.362 2.072.316.156.694.136.946-.118.32-.324.714-.862 1.114-1.394.284-.38.644-.428.994-.286.356.136 2.248 1.06 2.632 1.254.384.194.642.29.736.45.094.162.094.912-.296 2.012z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}
