/* ============================================================
   HYD LIFT — Modern Minimal Italian Design
   Inspired by Italian luxury fashion houses.
   White base, anthracite darks, tricolore accents.
   ============================================================ */

/* --- RESET & VARIABLES --- */
:root {
    /* Core Palette — Minimal & Luxurious */
    --color-dark: #1A1A1A;          /* Anthracite — hero, footer */
    --color-dark-soft: #2D2D2D;     /* Slightly lighter dark */
    --color-text: #1A1A1A;          /* Heavy black text */
    --color-text-light: #6B6B6B;    /* Muted gray descriptions */
    --color-bg: #FFFFFF;            /* Pure white base */
    --color-bg-alt: #FAFAFA;        /* Off-white sections */
    --color-bg-warm: #F7F6F4;       /* Warm cream for variety */
    --color-border: #EBEBEB;        /* Subtle card borders */

    /* Italian Tricolore — Accent Only */
    --it-green: #009246;
    --it-white: #F4F5F0;
    --it-red: #CE2B37;

    /* Functional */
    --color-primary: #1A1A1A;       /* Used in headings */
    --color-accent: #CE2B37;        /* Italian Red — CTA, links */

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

.section-padding { padding: 6rem 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.relative-z { position: relative; z-index: 2; }

.text-gradient {
    background: linear-gradient(135deg, var(--it-green), var(--it-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FFFFFF, #E0E0E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white { color: #FFFFFF; }
.text-gray { color: var(--color-text-light); }

/* --- TRICOLORE DECORATIVE STRIP --- */
.tricolore-strip {
    height: 4px;
    background: linear-gradient(to right, var(--it-green) 33.33%, var(--it-white) 33.33%, var(--it-white) 66.66%, var(--it-red) 66.66%);
    width: 100%;
    position: relative;
    z-index: 1001;
}

/* --- LOGO --- */
.brand-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-hyd {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--color-dark);
    letter-spacing: 2px;
}

.logo-bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--it-green) 33.33%, var(--it-white) 33.33%, var(--it-white) 66.66%, var(--it-red) 66.66%);
    margin: 4px 0;
    border: 1px solid rgba(0,0,0,0.08);
}

.logo-lift {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 2rem;
    color: var(--color-dark);
    letter-spacing: 8px;
    padding-left: 8px;
}

.footer-logo .logo-hyd,
.footer-logo .logo-lift {
    color: #FFFFFF;
}

/* --- NAVIGATION — Clean white with tricolore strip below --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--it-red);
    transition: var(--transition);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-contact {
    background: var(--it-red);
    color: #FFFFFF !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.btn-contact::after { display: none; }
.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(206, 43, 55, 0.3);
    background: #B71C1C;
}

.btn-contact.active {
    box-shadow: 0 5px 15px rgba(206, 43, 55, 0.3);
}

/* --- LANGUAGE TOGGLE --- */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--color-dark);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.lang-toggle:hover {
    background: var(--color-bg-warm);
    border-color: var(--color-text-light);
}

.lang-toggle img {
    width: 20px;
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark);
}

/* --- MOBILE MENU --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.mobile-menu-overlay .lang-toggle {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

/* --- DECORATIVE ELEMENTS — Minimal Italian Style --- */
.global-beams {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    pointer-events: none;
    z-index: 990;
}

.light-beam {
    position: absolute;
    width: 1px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.04), transparent);
    animation: beamSync 4s infinite linear;
}

.beam-1 { left: 15%; animation-duration: 3s; }
.beam-2 { left: 50%; animation-duration: 2.2s; animation-delay: 0.5s; }
.beam-3 { left: 85%; animation-duration: 3.5s; animation-delay: 0.2s; }

@keyframes beamSync {
    0% { top: -200px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 120vh; opacity: 0; }
}

/* Shaft patterns — very subtle on light bg */
.elevator-shaft-dark, .elevator-shaft-light {
    position: relative;
    overflow: hidden;
}

.elevator-shaft-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 200px 200px;
    z-index: 0;
}

.elevator-shaft-light::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.01) 1px, transparent 1px);
    background-size: 200px 200px;
    z-index: 0;
}

/* --- HERO — Dark anthracite, luxurious --- */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.9) 100%);
    z-index: 1;
}

.hero-text-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.text-light { font-weight: 300; color: #FFFFFF; }
.text-bold { font-weight: 800; color: #FFFFFF; }

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    max-width: 700px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

/* Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--it-red);
    color: #FFFFFF !important;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(206, 43, 55, 0.25);
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(206, 43, 55, 0.4);
    background: #B71C1C;
}

.btn-premium i {
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(5px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    color: #FFFFFF;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
    font-size: 0.85rem;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-3px);
}

.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 2.5rem;
    color: var(--color-dark);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid var(--color-dark);
    transition: all 0.4s ease;
    font-size: 0.85rem;
}

.btn-ghost-dark:hover {
    background: var(--color-dark);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.elevator-animation {
    width: 26px;
    height: 46px;
    margin: 0 auto;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}

.elevator-cabin {
    width: 100%;
    height: 14px;
    background: linear-gradient(to right, var(--it-green), var(--it-red));
    position: absolute;
    left: 0;
    top: 5px;
    border-radius: 2px;
    animation: liftDescend 2.5s cubic-bezier(0.6, 0.05, 0.4, 1) infinite;
}

.elevator-cabin::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 2px;
    background: #fff;
    border-radius: 1px;
}

@keyframes liftDescend {
    0% { top: -14px; opacity: 0; }
    15% { top: 4px; opacity: 1; }
    85% { top: 28px; opacity: 1; }
    100% { top: 46px; opacity: 0; }
}

/* --- PAGE HERO (Inner Pages) --- */
.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
}

.page-hero-content { text-align: center; }

.page-hero-content .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero-content .hero-desc {
    margin: 0 auto;
    max-width: 600px;
}

/* --- WHY US SECTION --- */
.why-section {
    background: var(--color-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--color-bg);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    z-index: 2;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.why-card:nth-child(odd):hover {
    border-bottom-color: var(--it-green);
}

.why-card:nth-child(even):hover {
    border-bottom-color: var(--it-red);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--color-bg-warm);
    color: var(--color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.why-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- IMAGE SHOWCASE — 3 equal columns --- */
.showcase {
    background: var(--color-dark);
    padding: 5rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.showcase-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    height: 320px;
    transition: all 0.5s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover img {
    transform: scale(1.06);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.showcase-overlay span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- SERVICE PREVIEW CARDS --- */
.services-preview {
    background: var(--color-bg-alt);
}

.section-header { margin-bottom: 3rem; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.service-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-preview-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 2px;
    border: 1px solid var(--color-border);
    border-left: 4px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-decoration: none;
    color: inherit;
}

.service-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-left-color: var(--it-green);
}

.service-preview-card:nth-child(even):hover {
    border-left-color: var(--it-red);
}

.spc-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--color-bg-warm);
    color: var(--color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.3rem;
}

.service-preview-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-preview-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.spc-arrow {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    color: var(--it-red);
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-preview-card:hover .spc-arrow {
    opacity: 1;
    right: 1.2rem;
}

/* --- CTA BANNER --- */
.cta-banner {
    background: var(--color-bg-warm);
    padding: 4rem 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--color-bg);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid var(--color-border);
    border-left: 6px solid;
    border-image: linear-gradient(to bottom, var(--it-green), var(--it-red)) 1;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: var(--color-text-light);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* --- ABOUT SECTION --- */
.about-detail {
    background: var(--color-bg);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--it-green);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-label-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--it-green);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.about-detail-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.about-detail-text .lead { color: var(--color-dark); }

.about-detail-images { position: relative; }

.about-img-main {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    background: white;
    border-radius: 2px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 10;
}

.about-img-badge img {
    width: 100%;
    border-radius: 2px;
}

/* --- MISSION & VISION — Dark anthracite --- */
.mission-vision {
    background: var(--color-dark);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.mv-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 3rem;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.mv-card:first-child:hover {
    border-top-color: var(--it-green);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mv-card:last-child:hover {
    border-top-color: var(--it-red);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mv-card:first-child .mv-icon { color: var(--it-green); }
.mv-card:last-child .mv-icon { color: var(--it-red); }

.mv-title {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mv-highlights { margin-top: 1.5rem; }

.mv-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.mv-card:first-child .mv-highlights li i { color: var(--it-green); }
.mv-card:last-child .mv-highlights li i { color: var(--it-red); }

/* --- GALLERY --- */
.gallery { background: var(--color-bg-alt); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--color-border);
    cursor: zoom-in;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* --- SERVICE SECTIONS (Hizmetler) --- */
.service-section.elevator-shaft-dark {
    background: var(--color-dark);
}

.service-section.elevator-shaft-light {
    background: var(--color-bg);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: 2px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-specs { margin-top: 1.5rem; }

.service-specs li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-specs li i {
    color: var(--it-green);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Spec Cards (Dark sections) */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.spec-card:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
}

.spec-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255,255,255,0.08);
    color: var(--it-green);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.spec-info strong {
    display: block;
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 2px;
}

.spec-info span {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Support Features */
.support-features { margin-top: 1.5rem; }

.support-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.support-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255,255,255,0.08);
    color: var(--it-red);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.support-item h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* --- PARTNERSHIP / STATS --- */
.partnership {
    background: var(--color-dark);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    transition: all 0.4s ease;
    border-top: 3px solid transparent;
    position: relative;
    z-index: 2;
}

.stat-item:nth-child(1):hover { border-top-color: var(--it-green); }
.stat-item:nth-child(2):hover { border-top-color: #FFFFFF; }
.stat-item:nth-child(3):hover { border-top-color: var(--it-red); }

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.05);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.stat-item:nth-child(1) .stat-icon { color: var(--it-green); }
.stat-item:nth-child(2) .stat-icon { color: #FFFFFF; }
.stat-item:nth-child(3) .stat-icon { color: var(--it-red); }

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.stat-value small {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-white .section-title { color: #FFFFFF; }

.stat-item p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

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

/* --- CONTACT PAGE --- */
.contact-page { background: var(--color-bg); }

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card { margin-top: 2rem; }

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--color-dark);
    width: 48px;
    height: 48px;
    background: var(--color-bg-warm);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-text h4 { margin-bottom: 0.5rem; }

.contact-link {
    font-weight: 700;
    color: var(--it-red);
    font-size: 1.2rem;
}

.contact-flags {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Contact Form */
.contact-form-card {
    background: var(--color-bg);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid var(--color-border);
    border-top: 4px solid;
    border-image: linear-gradient(to right, var(--it-green), var(--it-white), var(--it-red)) 1;
}

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

.form-subtitle {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-dark);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.05);
    background: white;
}

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

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

.form-submit {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
}

/* Map */
.map-section { background: var(--color-dark); }

.map-container {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.map-container iframe { display: block; }

/* --- FOOTER — Dark anthracite --- */
.footer {
    background: var(--color-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: #FFFFFF;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links-col ul li { margin-bottom: 0.8rem; }

.footer-links-col ul li a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links-col ul li a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.footer-contact-col p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.footer-contact-col p i {
    color: rgba(255,255,255,0.3);
    margin-right: 8px;
    width: 16px;
}

.footer-contact-col a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-contact-col a:hover { color: #FFFFFF; }

.footer-flags {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

.flag-icon {
    margin-right: 5px;
    border-radius: 2px;
}

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

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.whatsapp-btn { background: #25D366; }
.phone-btn { background: var(--color-dark); }

.float-btn:hover { transform: scale(1.1); }

.float-btn .tooltip {
    position: absolute;
    right: 80px;
    background: var(--color-dark);
    color: white;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
}

.float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* --- ANIMATIONS --- */
.animate-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.animate-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease; }
.animate-right { opacity: 0; transform: translateX(30px); transition: all 0.8s ease; }

.animate-up.visible,
.animate-left.visible,
.animate-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
    background: rgba(255,255,255,0.1);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.6);
    padding: 0.8rem 2rem;
    border-radius: 2px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .about-detail-grid,
    .contact-page-grid,
    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .mv-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; }
    .service-preview-grid { grid-template-columns: 1fr; }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-content { text-align: center; align-items: center; }
    .hero-title { font-size: 3rem; }

    .about-img-badge { bottom: -20px; left: 20px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .specs-grid { grid-template-columns: 1fr; }
    .showcase-card { height: 250px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .hero-title { font-size: 2.5rem; }
    .page-hero-content .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .section-title { font-size: 2rem; }
    .section-padding { padding: 4rem 0; }

    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 200px; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-flags { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn-premium,
    .cta-actions .btn-ghost-dark {
        width: 100%;
        justify-content: center;
    }

    .service-detail-image img { height: 250px; }
    .about-img-main img { height: 280px; }

    .about-img-badge {
        position: relative;
        bottom: auto;
        left: auto;
        width: 160px;
        margin-top: 1rem;
    }

    .mv-card { padding: 2rem; }
    .contact-form-card { padding: 2rem; }
    .showcase-card { height: 220px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 2rem; }
    .page-hero-content .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .page-hero { padding: 8rem 0 3rem; }

    .btn-premium, .btn-ghost, .btn-ghost-dark {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }

    .showcase-card { height: 180px; }
}
