/* ═══════════════════════════════════════════════════════════════
   Grabs Industries — Apple-Inspired Dark Design
   ═══════════════════════════════════════════════════════════════ */

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


body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

:root {
    --color-black: #000000;
    --color-white: #f5f5f7;
    --color-bg: #000000;
    --color-bg-alt: #0a0a0a;
    --color-bg-elevated: #1d1d1f;
    --color-text: #f5f5f7;
    --color-text-muted: #86868b;
    --color-text-secondary: #a1a1a6;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-accent: #2997ff;
    --color-accent-hover: #64b5ff;
    --color-accent-glow: rgba(41, 151, 255, 0.15);
    --color-surface: rgba(255, 255, 255, 0.04);
    --color-surface-hover: rgba(255, 255, 255, 0.08);
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.3s var(--ease-out);
    --transition-fast: all 0.2s var(--ease-out);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --radius-pill: 980px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ═══ Navigation ══════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 10100;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo img {
    height: 36px;
    width: auto;
    transition: var(--transition);
    opacity: 0.95;
}

.logo:hover img {
    opacity: 1;
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0;
    transition: var(--transition-fast);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 10200;
}

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

/* ═══ Hero Section ════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 40px 100px;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(41, 151, 255, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    margin: 0 auto;
    position: relative;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: var(--color-white);
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-accent);
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 560px;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    position: relative;
    border: none;
}


.cta-button:hover {
    background: var(--color-accent-hover);
    transform: scale(1.04);
    color: #fff;
    box-shadow: 0 8px 30px rgba(41, 151, 255, 0.25);
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    width: 1.5px;
    height: 44px;
    background: linear-gradient(180deg, var(--color-text-muted), transparent);
    opacity: 0.4;
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(8px); }
}

/* ═══ Section Styles ══════════════════════════════════════════ */

section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: left;
    margin-bottom: 12px;
    color: var(--color-white);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    text-align: left;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 64px;
    font-weight: 400;
}


/* ═══ Services Section ════════════════════════════════════════ */

.services {
    background-color: var(--color-bg);
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 0;
}

.service-card {
    background: var(--color-surface);
    padding: 48px 36px;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.service-card:hover {
    background: var(--color-surface-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-white);
    opacity: 0.9;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: 100%;
    line-height: 1;
    flex-shrink: 0;
}

.service-icon svg {
    width: 64px;
    height: 64px;
    color: var(--color-accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-card:hover .service-icon svg {
    color: var(--color-accent-hover);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-white);
    letter-spacing: -0.01em;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    flex-shrink: 0;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.service-card:hover h3 {
    color: var(--color-accent);
}

.service-card p {
    margin-bottom: 24px;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
    flex-grow: 1;
}

.service-link {
    color: var(--color-accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
    font-size: 0.95rem;
    margin: 0 auto;
    margin-top: auto;
    width: fit-content;
}

.service-link::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: 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='%232997ff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--color-accent-hover);
    gap: 10px;
}

.service-link:hover::after {
    transform: translateX(3px);
    background: 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='%2364b5ff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
}

/* ═══ Service Pages (Header + Content) ════════════════════════ */

.service-header {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 40px 80px;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(41, 151, 255, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.service-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    position: relative;
}

.service-header h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: var(--color-white);
    line-height: 1.1;
    text-align: center;
}

.service-intro {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Service CTA Section */
.service-cta {
    padding: 100px 0;
    background: var(--color-bg-alt);
    text-align: center;
    position: relative;
}

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

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-white);
    text-align: center;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    text-align: center;
    font-weight: 400;
}

.cta-content .cta-button {
    margin: 0 auto;
    display: inline-block;
}

/* Service Content */
.service-content {
    padding: 100px 0;
}

/* ═══ Image Styles ════════════════════════════════════════════ */

.image-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: var(--radius-lg);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}


/* Project Images */
.project-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 36px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-alt);
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}


.project-image-skewed {
    transform: none;
}

.project-image-skewed img {
    transform: none;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: block;
}

.project-image:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
    padding: 0;
}


.project-image:hover img {
    transform: scale(1.02);
    filter: none;
}

/* Service Images */
.service-image {
    position: relative;
    overflow: hidden;
    margin: 36px 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-alt);
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}


.service-image-skewed {
    transform: none;
}

.service-image-skewed img {
    transform: none;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: block;
}

.service-image:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
    padding: 0;
}

.service-image:hover img {
    transform: scale(1.02);
}

/* ═══ Gallery ═════════════════════════════════════════════════ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 48px 0;
    padding: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-alt);
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


.gallery-item-skewed {
    transform: none;
}

.gallery-item-skewed img {
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px) scale(1.01);
    padding: 0;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Service Gallery Section */
.service-gallery {
    padding: 100px 0;
    background: var(--color-bg-alt);
    position: relative;
}

.service-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-border);
}

.service-gallery .section-title {
    text-align: center;
    margin-bottom: 48px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0;
}

/* ═══ Service Detail Sections ═════════════════════════════════ */

.service-detail-section {
    padding: 100px 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    position: relative;
}


.service-detail-section:nth-child(even) {
    background: var(--color-bg-alt);
}

.service-details {
    max-width: 800px;
    margin: 0 auto;
}

.service-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.service-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.service-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--color-white);
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.service-list li {
    padding: 14px 0 14px 0;
    position: relative;
    line-height: 1.7;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    font-weight: 400;
    transition: var(--transition-fast);
}

.service-list li:hover {
    color: var(--color-white);
    padding-left: 8px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    display: none;
}

.service-list li strong {
    color: var(--color-white);
    font-weight: 600;
}

.service-list ul {
    margin-top: 8px;
    margin-left: 20px;
    list-style: disc;
    padding-left: 16px;
}

.service-list ul li {
    padding: 6px 0;
    border-bottom: none;
    color: var(--color-text-muted);
    font-size: 0.95em;
}

.service-list ul li::before {
    display: none;
}

/* ═══ About Section ═══════════════════════════════════════════ */

.about {
    background: var(--color-bg-alt);
    padding: 120px 0;
    position: relative;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 400;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 56px;
    background: none;
}

.feature {
    text-align: left;
    padding: 40px 32px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    background: var(--color-surface-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.feature strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature p {
    color: var(--color-text-muted);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* ═══ Contact Section ═════════════════════════════════════════ */

.contact {
    background: var(--color-bg);
    padding: 120px 0;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-top: 56px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.contact-item p {
    color: var(--color-white);
    line-height: 1.8;
    font-weight: 400;
}

.contact-item a {
    color: var(--color-accent);
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    border-bottom-color: var(--color-accent);
    color: var(--color-accent-hover);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-actions h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-sans);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}


.contact-button:hover {
    background: var(--color-surface-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-button svg {
    width: 22px;
    height: 22px;
    transition: var(--transition);
}

.contact-button:hover svg {
    transform: scale(1.05);
}

.whatsapp-button-contact {
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.whatsapp-button-contact:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.5);
    color: #25D366;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.15);
}

.email-button-contact {
    border-color: rgba(41, 151, 255, 0.3);
    color: var(--color-accent);
}

.email-button-contact:hover {
    background: var(--color-accent-glow);
    border-color: rgba(41, 151, 255, 0.5);
    color: var(--color-accent-hover);
}

/* ═══ Contact Form ════════════════════════════════════════════ */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 400;
}

.form-group select {
    background-color: var(--color-bg-elevated);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232997ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}

.form-group select option {
    background: var(--color-bg-elevated);
    color: var(--color-white);
    padding: 10px;
}

.form-group .g-recaptcha {
    margin: 16px 0;
    display: flex;
    justify-content: center;
}

#recaptcha-error {
    color: #ff453a;
    font-size: 0.85rem;
    margin-top: 8px;
    text-align: center;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(41, 151, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.15);
}

.submit-button {
    padding: 16px 40px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    align-self: flex-start;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
}


.submit-button:hover {
    background: var(--color-accent-hover);
    transform: scale(1.04);
    color: #fff;
    box-shadow: 0 8px 30px rgba(41, 151, 255, 0.25);
}

/* ═══ Footer ══════════════════════════════════════════════════ */

.footer {
    background: var(--color-bg-alt);
    color: var(--color-white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-border);
    position: relative;
}


.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 56px;
}

.footer-logo img {
    height: 42px;
    width: auto;
    opacity: 0.85;
    transition: var(--transition);
}

.footer-logo:hover img {
    opacity: 1;
    transform: scale(1.02);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 48px;
}

.footer-column h4 {
    font-size: 0.8rem;
    margin-bottom: 24px;
    color: var(--color-text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: left;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

/* Social Media */
.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    font-weight: 400;
    font-size: 0.95rem;
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
    flex-shrink: 0;
}

.social-link:hover {
    color: var(--color-white);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* ═══ WhatsApp Floating Button ════════════════════════════════ */

.whatsapp-button {
    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 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    color: #fff;
}

.whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:active {
    transform: scale(0.96);
}

.whatsapp-button svg {
    width: 26px;
    height: 26px;
}

/* ═══ Legal Pages ═════════════════════════════════════════════ */

.legal-page {
    padding: 140px 0 80px;
    background: var(--color-bg);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 36px;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.legal-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--color-white);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 24px 28px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-color: rgba(41, 151, 255, 0.3);
    text-underline-offset: 3px;
    transition: var(--transition-fast);
}

.legal-content a:hover {
    color: var(--color-accent-hover);
    text-decoration-color: var(--color-accent-hover);
}

.legal-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 36px 0;
}

/* ═══ Responsive Design ═══════════════════════════════════════ */

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

    .menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 10px 24px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        background: #000000 !important;
        justify-content: center;
        align-items: center;
        padding: 24px;
        gap: 0;
        display: none;
        z-index: 10150;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0;
        border-bottom: none;
    }

    .nav-link {
        font-size: 2rem;
        font-weight: 500;
        color: var(--color-white);
        display: block;
        padding: 18px 0;
        transition: color 0.2s ease;
    }

    .nav-link:hover,
    .nav-link:active {
        color: var(--color-accent);
    }

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

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

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

    .hero {
        padding: 120px 24px 80px;
        align-items: center;
    }

    .section-title {
        text-align: left;
    }

    .section-subtitle {
        text-align: left;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
    }

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

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

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

    section {
        padding: 80px 0;
    }

    .service-header {
        min-height: 45vh;
        padding: 120px 24px 60px;
    }

    .service-header h1 {
        text-align: center;
    }

    .service-intro {
        text-align: center;
    }

    .service-cta {
        padding: 80px 0;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content .cta-button {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Clean images on mobile */
    .image-skewed,
    .image-parallelogram,
    .project-image-skewed,
    .service-image-skewed,
    .gallery-item-skewed {
        transform: none;
    }

    .image-skewed img,
    .image-parallelogram img,
    .project-image-skewed img,
    .service-image-skewed img,
    .gallery-item-skewed img {
        transform: none;
        width: 100%;
        margin-left: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item {
        aspect-ratio: 16 / 9;
    }

    .whatsapp-button {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }

    .social-media-links {
        gap: 10px;
    }
}

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

    .service-card {
        padding: 36px 24px;
    }

    .contact-form {
        gap: 20px;
    }
}

/* ═══ Cookie Banner ═══════════════════════════════════════════ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid var(--color-border);
    z-index: 10000;
    padding: 28px;
    max-height: 90vh;
    overflow-y: auto;
    animation: cookieSlideUp 0.5s var(--ease-out);
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-banner-text h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.cookie-banner-text p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.cookie-categories {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-category {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 18px;
    transition: var(--transition);
}

.cookie-category:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.cookie-category-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    border-radius: 28px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: #30d158;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category-header > div {
    flex: 1;
}

.cookie-category-header strong {
    color: var(--color-white);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.cookie-category-header p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cookie-button {
    padding: 12px 28px;
    border: none;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-pill);
}

.cookie-button-primary {
    background: var(--color-accent);
    color: #fff;
}

.cookie-button-primary:hover {
    background: var(--color-accent-hover);
    transform: scale(1.03);
}

.cookie-button-secondary {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-white);
}

.cookie-button-secondary:hover {
    background: var(--color-surface-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-banner-links {
    margin-top: 16px;
    text-align: center;
}

.cookie-banner-links a {
    color: var(--color-accent);
    font-size: 0.85rem;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.cookie-banner-links a:hover {
    border-bottom-color: var(--color-accent);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
    }

    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-button {
        width: 100%;
        text-align: center;
    }
}

/* ═══ Animations ══════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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