/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ===== CULORI PRINCIPALE ===== */
:root {
    --red-primary: #d41e1e;
    --red-secondary: #ff2a2a;
    --red-dark: #a01515;
    --black-primary: #0a0a0a;
    --black-secondary: #111;
    --black-light: #1a1a1a;
    --gray-dark: #333;
    --gray-medium: #666;
    --gray-light: #999;
    --white: #fff;
}

/* ===== BUTOANE ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--red-primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--red-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 30, 30, 0.4);
}

/* ===== HEADER ===== */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: transparent;
}

#mainHeader.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(212, 30, 30, 0.15);
}

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

/* Logo */
.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

#mainHeader.scrolled .logo img {
    height: 40px;
}

/* Meniu Desktop */
.desktop-nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

.desktop-nav a {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red-primary);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus::after {
    width: 100%;
}

/* ===== DROPDOWN-URI MODERNE ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(15px);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 30, 30, 0.2);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(15, 15, 15, 0.98);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(212, 30, 30, 0.1);
    transition: background-color 0.2s ease;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: #eee;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--red-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover::before {
    transform: translateX(0);
}

.dropdown-menu a:hover {
    background-color: rgba(212, 30, 30, 0.1);
    color: var(--white);
    padding-left: 32px;
}

.dropdown-menu i:first-child {
    margin-right: 12px;
    width: 18px;
    text-align: center;
    color: var(--red-primary);
    font-size: 1.1rem;
}

/* ===== BUTON MENIU MOBILE ===== */
#mobileMenuBtn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

#mobileMenuBtn:hover {
    transform: scale(1.1);
}

/* ===== MENIU MOBILE ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--black-primary);
    z-index: 1001;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow-y: auto;
    border-left: 1px solid rgba(212, 30, 30, 0.2);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--black-secondary);
    border-bottom: 1px solid rgba(212, 30, 30, 0.2);
}

.mobile-logo {
    height: 40px;
    width: auto;
}

#closeMobileMenu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

#closeMobileMenu:hover {
    color: var(--red-primary);
}

.mobile-nav ul {
    padding: 20px;
}

.mobile-nav > ul > li {
    margin-bottom: 5px;
}

.mobile-nav > ul > li > a {
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--black-secondary);
}

.mobile-nav > ul > li > a:hover {
    background-color: rgba(212, 30, 30, 0.1);
    color: var(--red-primary);
    transform: translateX(5px);
}

.mobile-nav i:first-child {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    color: var(--red-primary);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: var(--black-light);
    border-radius: 8px;
    margin: 10px 0;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    padding: 14px 20px 14px 40px;
    color: #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    background-color: rgba(212, 30, 30, 0.1);
    color: var(--white);
    padding-left: 45px;
}

/* ===== HERO CONTAINER PENTRU TRADIȚII CONTINUE ===== */
#heroContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 500vh; /* 5 secțiuni x 100vh */
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    z-index: 1;
}

/* ===== SECTIUNI HERO CU TRANZIȚII CONTINUE ===== */
.hero-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

/* Pozițiile pentru fiecare secțiune */
#hero-detailing {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../assets/img/detailing-hero.jpg') no-repeat center center/cover;
    top: 100vh;
}

#hero-ppf {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../assets/img/ppf-hero.jpg') no-repeat center center/cover;
    top: 0;
}

#hero-wrap {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../assets/img/wrap-hero.jpg') no-repeat center center/cover;
    top: 200vh;
}

#hero-tint {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../assets/img/tint-hero.jpg') no-repeat center center/cover;
    top: 300vh;
}

#hero-contact {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../assets/img/contact-hero.jpg') no-repeat center center/cover;
    top: 400vh;
}

/* Fallback pentru cazul în care imaginile nu se încarcă */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-color: var(--black-secondary);
    z-index: -3;
}

/* Overlay pentru contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(212, 30, 30, 0.08) 0%,
        rgba(0, 0, 0, 0.22) 50%,
        rgba(0, 0, 0, 0.58) 100%);
    z-index: -1;
}

/* Conținut hero cu animație separată */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    color: var(--white);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-section.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--red-primary);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--red-primary);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.btn-hero:hover::before {
    width: 100%;
}

.btn-hero:hover {
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 30, 30, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    z-index: 4;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator i {
    font-size: 1.8rem;
    margin-top: 10px;
    color: var(--red-primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-15px) translateX(-50%);}
    60% {transform: translateY(-7px) translateX(-50%);}
}

/* ===== DOTS NAVIGATION ===== */
.hero-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: block;
}

.hero-dot:hover {
    transform: scale(1.3);
    border-color: var(--red-primary);
}

.hero-dot.active {
    background: var(--red-primary);
    border-color: var(--red-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 30, 30, 0.7);
}

/* ===== PAGINI SERVICII ===== */
.service-page {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--black-primary);
    min-height: 100vh;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: var(--red-primary);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* ===== SECTION TABS PENTRU SUBCATEGORII ===== */
.section-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.tab-btn {
    padding: 16px 35px;
    background-color: var(--black-light);
    color: #ccc;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    background-color: var(--gray-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tab-btn.active {
    background-color: var(--red-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 30, 30, 0.3);
}

.tab-btn i {
    font-size: 1.2rem;
}

/* ===== DETALII SERVICIU ===== */
.service-details {
    background-color: var(--black-secondary);
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
    border-left: 5px solid var(--red-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-details h2 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-details h2 i {
    color: var(--red-primary);
    font-size: 1.8rem;
}

.service-details p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.service-details h3 {
    color: var(--white);
    margin: 30px 0 20px;
    font-size: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.service-details h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--red-primary);
    border-radius: 50%;
}

.service-details ul {
    margin: 25px 0;
    padding-left: 0;
}

.service-details li {
    color: #ccc;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red-primary);
    font-weight: bold;
    font-size: 1.3rem;
    top: -2px;
}

/* ===== GALERIE HERO CU FADE EFFECT ===== */
.hero-gallery {
    position: relative;
    height: 85vh;
    min-height: 700px;
    width: 100%;
    margin: 50px 0 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.28) 50%,
        rgba(0, 0, 0, 0.52) 100%);
}

/* Navigator galerie */
.gallery-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.gallery-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-dot::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-dot:hover::after {
    opacity: 1;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.gallery-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.gallery-dot.active {
    background-color: var(--red-primary);
    border-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(212, 30, 30, 0.8);
}

/* Butoane navigare laterală */
.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background-color: rgba(212, 30, 30, 0.85);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    opacity: 0.8;
    backdrop-filter: blur(5px);
}

.gallery-prev:hover, .gallery-next:hover {
    background-color: rgba(212, 30, 30, 1);
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(212, 30, 30, 0.5);
}

.gallery-prev {
    left: 40px;
}

.gallery-next {
    right: 40px;
}

/* Indicator număr slide */
.slide-counter {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 25px;
    border-radius: 25px;
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Text pe galerie */
.gallery-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
    width: 90%;
    max-width: 900px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-title {
    font-size: 4rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.4s;
    font-weight: 800;
}

.gallery-slide.active .gallery-title {
    opacity: 1;
    transform: translateY(0);
}

.gallery-description {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.6s;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-slide.active .gallery-description {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FORMULARE ===== */
.booking-form, .contact-form {
    background-color: var(--black-secondary);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 30, 30, 0.2);
    margin-top: 60px;
}

.booking-form h2, .contact-form h2 {
    color: var(--white);
    margin-bottom: 35px;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.booking-form h2 i, .contact-form h2 i {
    color: var(--red-primary);
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--white);
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-dark);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background-color: var(--black-light);
    color: var(--white);
}

.form-control:focus {
    border-color: var(--red-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 30, 30, 0.2);
    background-color: var(--black-primary);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d41e1e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    padding-right: 50px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: var(--red-primary);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--red-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 30, 30, 0.4);
}

.submit-btn i {
    font-size: 1.4rem;
}

.form-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #aaa;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
}

/* ===== PAGINA CONTACT ===== */
.contact-info {
    background-color: var(--black-secondary);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin-bottom: 50px;
    border: 1px solid rgba(212, 30, 30, 0.2);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 35px;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info h2 i {
    color: var(--red-primary);
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--black-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-item:hover {
    border-left-color: var(--red-primary);
    transform: translateX(5px);
    background-color: rgba(212, 30, 30, 0.05);
}

.info-item i {
    color: var(--red-primary);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
    min-width: 25px;
}

.info-item-content {
    flex: 1;
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.info-item p,
.info-item .contact-action-link {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-action-link {
    color: inherit;
    text-decoration: none;
    font: inherit;
    line-height: inherit;
}

.contact-map {
    margin-top: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 30, 30, 0.2);
}

.contact-map h2 {
    margin-bottom: 25px;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    padding: 0 20px;
}

.contact-map h2 i {
    color: var(--red-primary);
    font-size: 1.8rem;
}

.contact-map iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: none;
}

/* ===== CONTACT MINIMAL FULL-WIDTH ===== */
.contact-page{
    padding-top: 126px;
    padding-bottom: 40px;
}

.contact-page > .container{
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: clamp(16px, 2.8vw, 44px);
    padding-right: clamp(16px, 2.8vw, 44px);
}

.contact-page .page-header{
    margin-bottom: 28px;
    padding: 0;
}

.contact-page .page-header h1{
    font-size: clamp(2rem, 3.1vw, 2.7rem);
    margin-bottom: 8px;
    padding-bottom: 12px;
}

.contact-page .page-header h1::after{
    width: 78px;
    height: 2px;
}

.contact-page .page-header p{
    max-width: 920px;
    margin-top: 10px;
    font-size: .98rem;
    line-height: 1.55;
    color: rgba(255,255,255,.72);
}

.contact-page .content-container{
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
    gap: 16px;
    align-items: start;
}

.contact-page .contact-info,
.contact-page .contact-form{
    margin-top: 0;
    margin-bottom: 0;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: none;
    background: rgba(11,11,11,.82);
}

.contact-page .contact-info h2,
.contact-page .contact-form h2{
    font-size: 1.25rem;
    margin-bottom: 14px;
    gap: 10px;
}

.contact-page .contact-info h2 i,
.contact-page .contact-form h2 i{
    font-size: 1rem;
}

.contact-page .contact-subheading{
    margin-top: 18px;
}

.contact-page .info-item{
    margin-bottom: 10px;
    padding: 12px 12px 12px 10px;
    border-radius: 8px;
    border-left-width: 2px;
}

.contact-page .info-item i{
    font-size: 1rem;
    margin-right: 12px;
    margin-top: 3px;
    min-width: 18px;
}

.contact-page .info-item h4{
    font-size: .95rem;
    margin-bottom: 4px;
}

.contact-page .info-item p,
.contact-page .info-item .contact-action-link{
    font-size: .9rem;
    line-height: 1.45;
    color: rgba(255,255,255,.76);
}

.contact-page .form-group{
    margin-bottom: 14px;
}

.contact-page .form-group label{
    margin-bottom: 6px;
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
}

.contact-page .form-control{
    padding: 12px 14px;
    font-size: .94rem;
    border-width: 1px;
    border-color: rgba(255,255,255,.14);
    border-radius: 8px;
    background-color: rgba(255,255,255,.03);
}

.contact-page textarea.form-control{
    min-height: 118px;
}

.contact-page .submit-btn{
    margin-top: 8px;
    padding: 13px 16px;
    font-size: .95rem;
    letter-spacing: .02em;
    border-radius: 8px;
    gap: 10px;
}

.contact-page .submit-btn i{
    font-size: 1rem;
}

.contact-page .contact-map{
    margin-top: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: none;
    overflow: hidden;
}

.contact-page .contact-map h2{
    font-size: 1.1rem;
    margin-bottom: 0;
    padding: 14px 14px 10px;
    gap: 8px;
}

.contact-page .contact-map h2 i{
    font-size: .95rem;
}

.contact-page .contact-map iframe{
    height: 360px;
}

@media (max-width: 980px){
    .contact-page .content-container{
        grid-template-columns: 1fr;
    }

    .contact-page .contact-map iframe{
        height: 320px;
    }
}

@media (max-width: 768px){
    .contact-page > .container{
        padding-left: 14px;
        padding-right: 14px;
    }

    .contact-page .page-header{
        margin-bottom: 20px;
    }

    .contact-page .page-header p{
        font-size: .92rem;
        line-height: 1.45;
    }

    .contact-page .contact-info,
    .contact-page .contact-form{
        padding: 16px;
        border-radius: 10px;
    }

    .contact-page .contact-info h2,
    .contact-page .contact-form h2,
    .contact-page .contact-map h2{
        font-size: 1rem;
    }

    .contact-page .form-control{
        padding: 11px 12px;
        font-size: .9rem;
    }

    .contact-page .submit-btn{
        padding: 12px 14px;
        font-size: .9rem;
    }

    .contact-page .contact-map iframe{
        height: 280px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.2rem;
    }
    .hero-gallery {
        height: 75vh;
        min-height: 600px;
    }
    .gallery-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .hero-gallery {
        height: 65vh;
        min-height: 550px;
    }
    .gallery-title {
        font-size: 2.8rem;
    }
    .gallery-description {
        font-size: 1.3rem;
    }
    .gallery-prev, .gallery-next {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    .page-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    /* Ascunde meniul desktop, arată butonul mobile */
    .desktop-nav {
        display: none;
    }
    #mobileMenuBtn {
        display: block;
    }
    
    .logo img {
        height: 45px;
    }
    
    #mainHeader.scrolled .logo img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    
    .btn-hero {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .service-page, .contact-page {
        padding-top: 120px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .booking-form, .contact-form, .contact-info, .service-details {
        padding: 30px;
    }
    
    .contact-map iframe {
        height: 350px;
    }
    
    .hero-gallery {
        height: 60vh;
        min-height: 500px;
        border-radius: 15px;
        margin: 30px 0 50px;
    }
    
    .gallery-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .gallery-description {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .gallery-text {
        padding: 25px;
    }
    
    .gallery-prev, .gallery-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-prev {
        left: 15px;
    }
    
    .gallery-next {
        right: 15px;
    }
    
    .slide-counter {
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
        padding: 8px 18px;
    }
    
    .gallery-nav {
        bottom: 25px;
    }
    
    .section-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .service-details h2 {
        font-size: 1.8rem;
    }
    
    .dropdown-menu {
        position: fixed;
        top: auto;
        left: 20px;
        right: 20px;
        transform: translateY(10px);
        width: calc(100% - 40px);
        background-color: rgba(10, 10, 10, 0.98);
    }
    
    .dropdown:hover .dropdown-menu {
        transform: translateY(0);
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .hero-dots {
        right: 15px;
        gap: 10px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-gallery {
        height: 50vh;
        min-height: 400px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-description {
        font-size: 1rem;
    }
    
    .gallery-text {
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .booking-form h2, .contact-form h2, .contact-info h2, .contact-map h2 {
        font-size: 1.8rem;
    }
    
    .form-control {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 18px;
        font-size: 1.1rem;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .hero-dots {
        display: none; /* Ascunde dots pe mobil pentru simplitate */
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-hero {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .hero-gallery {
        height: 45vh;
        min-height: 350px;
    }
    
    .gallery-title {
        font-size: 1.5rem;
    }
    
    .gallery-description {
        font-size: 0.9rem;
    }
}

/* ===== PERFORMANȚĂ ȘI OPTIMIZARE ===== */
@supports (-webkit-touch-callout: none) {
    /* iOS specific optimizations */
    .hero-section {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

/* Scrollbar personalizat */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--red-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-secondary);
}

/* =========================================================
   HEADER / NAV REWORK (MINIMAL + TRANSPARENT) — add at END
   - Transparent header (no bar / no red glow)
   - Desktop dropdown opens on click (JS adds .open)
   - Mobile menu is clean, list-based, responsive
   ========================================================= */

/* Header: always transparent, no shadow line */
#mainHeader{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  backdrop-filter: none !important;
  padding: 15px 0 !important;
  border-bottom: 0 !important;
}
#mainHeader.scrolled{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  backdrop-filter: none !important;
  padding: 15px 0 !important;
}

/* Keep header content above hero */
#mainHeader .header-container{
  position: relative;
  z-index: 5;
  width: min(96vw, 1680px);
  max-width: 1680px;
  padding-left: clamp(20px, 2.5vw, 36px);
  padding-right: clamp(20px, 2.5vw, 36px);
}

/* Desktop nav: minimalist */
#mainHeader .desktop-nav ul{
  gap: 28px !important;
}
#mainHeader .desktop-nav a{
  color: rgba(255,255,255,.92) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: .2px;
  text-decoration: none !important;
  padding: 10px 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .95;
  transition: opacity .15s ease, color .15s ease;
}
#mainHeader .desktop-nav a:hover{
  opacity: 1;
  color: #fff !important;
}
#mainHeader .desktop-nav a::after{
  display: none !important;
}
#mainHeader .desktop-nav a i{
  font-size: 12px;
  opacity: .75;
}

/* Dropdown menu: clean vertical list */
#mainHeader .desktop-nav .dropdown{
  position: relative !important;
}
#mainHeader .desktop-nav .dropdown-menu{
  position: absolute !important;
  top: calc(100% + 2px) !important;
  left: 0 !important;
  right: auto !important;
  min-width: 220px;
  padding: 8px;
  margin: 0;
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 2px;

  background: rgba(0,0,0,.62) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 45px rgba(0,0,0,.42) !important;
  backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;

  z-index: 2000;
}

/* Open state on hover, focus, or JS-assisted open */
#mainHeader .desktop-nav .dropdown:hover > .dropdown-menu,
#mainHeader .desktop-nav .dropdown:focus-within > .dropdown-menu,
#mainHeader .desktop-nav .dropdown.open > .dropdown-menu{
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* Dropdown items */
#mainHeader .desktop-nav .dropdown-menu li{
  width: 100%;
}
#mainHeader .desktop-nav .dropdown-menu a{
  width: 100%;
  padding: 10px 12px !important;
  border-radius: 12px !important;

  display: flex !important;
  align-items: center !important;
  gap: 10px !important;

  font-weight: 600 !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.92) !important;

  background: transparent !important;
  border: 0 !important;
}
#mainHeader .desktop-nav .dropdown-menu a i{
  color: rgba(255,255,255,.75) !important;
  opacity: 1 !important;
  min-width: 16px;
  text-align: center;
}
#mainHeader .desktop-nav .dropdown-menu a:hover{
  background: rgba(255,255,255,.08) !important;
}
#mainHeader .desktop-nav .dropdown-menu a:active{
  background: rgba(255,255,255,.12) !important;
}

/* Ensure dropdown never spills outside on small widths (JS also corrects alignment) */
@media (max-width: 992px){
  #mainHeader .desktop-nav .dropdown-menu{
    min-width: 200px;
  }
}

/* Mobile button: minimal */
#mobileMenuBtn{
  background: transparent !important;
  border: 0 !important;
  color: rgba(255,255,255,.95) !important;
  padding: 10px !important;
  border-radius: 12px;
}
#mobileMenuBtn:hover{
  background: rgba(255,255,255,.06) !important;
}

/* Mobile nav: clean list */
#mobileNav.mobile-nav{
  background: rgba(0,0,0,.92) !important;
  border-left: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: -14px 0 40px rgba(0,0,0,.55) !important;
}
#mobileNav .mobile-nav-header{
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  padding-bottom: 12px;
  margin-bottom: 10px;
}
#mobileNav ul{
  padding: 0 6px 18px !important;
}
#mobileNav ul > li{
  margin: 0 !important;
}
#mobileNav a{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;

  padding: 14px 14px !important;
  border-radius: 12px !important;
  color: rgba(255,255,255,.92) !important;
  font-weight: 600 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  transition: background .15s ease, color .15s ease, opacity .15s ease;
}
#mobileNav a i{
  color: rgba(255,255,255,.72) !important;
}
#mobileNav a:hover{
  background: rgba(255,255,255,.06) !important;
  color: #fff !important;
}
#mobileNav #closeMobileMenu{
  background: transparent !important;
  border: 0 !important;
  color: rgba(255,255,255,.95) !important;
  padding: 10px !important;
  border-radius: 12px;
}
#mobileNav #closeMobileMenu:hover{
  background: rgba(255,255,255,.06) !important;
}

/* Mobile submenu */
#mobileNav .mobile-submenu{
  list-style: none;
  padding: 0 0 0 10px !important;
  margin: 6px 0 8px !important;
  border-left: 1px solid rgba(255,255,255,.10) !important;

  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
}
#mobileNav .mobile-submenu.active{
  max-height: 420px;
}
#mobileNav .mobile-submenu a{
  padding: 12px 14px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  opacity: .95;
}

/* Mobile dropdown toggle chevron: keep subtle */
#mobileNav .mobile-dropdown-toggle i.fa-chevron-down{
  margin-left: auto;
  opacity: .65;
}

/* ===== SITE FOOTER ===== */
.site-footer{
  position: relative;
  margin-top: 0;
  padding: 96px 0 28px;
  background: #050505;
  border-top: 0;
  overflow: hidden;
}

.site-footer::before{
  content: "";
  position: absolute;
  top: 16px;
  left: clamp(20px, 3vw, 56px);
  right: clamp(20px, 3vw, 56px);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(212,30,30,0) 0%,
    rgba(212,30,30,.5) 20%,
    rgba(255,74,74,.95) 50%,
    rgba(212,30,30,.5) 80%,
    rgba(212,30,30,0) 100%
  );
}

.site-footer .container{
  max-width: min(1560px, 100%);
  padding-left: clamp(20px, 3vw, 56px);
  padding-right: clamp(20px, 3vw, 56px);
}

.footer-grid{
  display: grid;
  grid-template-columns: minmax(340px, 1.1fr) minmax(180px, 0.5fr) minmax(420px, 1.35fr);
  gap: clamp(28px, 2.6vw, 52px);
  align-items: start;
}

.footer-brand{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}

.footer-logo img{
  width: min(196px, 100%);
  height: auto;
}

.footer-brand p,
.footer-bottom{
  color: rgba(255,255,255,.68);
}

.footer-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212,30,30,.45);
  background: rgba(212,30,30,.12);
  color: #fff;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-cta:hover{
  background: rgba(212,30,30,.22);
  border-color: rgba(212,30,30,.75);
  transform: translateY(-1px);
}

.footer-social{
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

.footer-social-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  font-weight: 600;
  font-size: .8rem;
  white-space: nowrap;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.footer-social-link i{
  font-size: .95rem;
}

.footer-social-link:hover{
  border-color: rgba(212,30,30,.6);
  background: rgba(212,30,30,.2);
  color: #fff;
  transform: translateY(-1px);
}

.footer-links h3,
.footer-map h3{
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.footer-links ul{
  display: grid;
  gap: 12px;
}

.footer-links a{
  color: rgba(255,255,255,.82);
  font-weight: 600;
}

.footer-links a:hover{
  color: #fff;
}

.footer-map iframe{
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 18px;
}

.footer-compliance{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer-compliance-badge{
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  color: #fff;
  padding: 10px 12px;
}

.footer-compliance-badge .badge-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  border-radius: 8px;
  background: rgba(39, 86, 188, .32);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.footer-compliance-badge .badge-title{
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-compliance-badge:hover{
  border-color: rgba(212,30,30,.58);
  background: linear-gradient(180deg, rgba(212,30,30,.22), rgba(212,30,30,.1));
}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .92rem;
}

.footer-bottom a{
  color: rgba(255,255,255,.82);
}

.footer-bottom a:hover{
  color: #fff;
}

@media (max-width: 992px){
  .footer-grid{
    grid-template-columns: 1fr;
  }

  .footer-map iframe{
    height: 240px;
  }

  .footer-compliance{
    margin-top: 18px;
  }

  .footer-compliance-badge{
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px){
  .site-footer{
    margin-top: 0;
    padding: 72px 0 24px;
  }

  .site-footer::before{
    left: 16px;
    right: 16px;
  }

  .site-footer .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-social-link{
    font-size: .8rem;
  }

  .footer-social{
    flex-wrap: wrap;
  }

  .footer-compliance{
    gap: 10px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(5,5,5,.95);
  box-shadow: 0 12px 34px rgba(0,0,0,.42);
}

.cookie-banner p{
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.4;
}

.cookie-accept-btn{
  border: 1px solid rgba(212,30,30,.64);
  background: rgba(212,30,30,.2);
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
}

.cookie-accept-btn:hover{
  background: rgba(212,30,30,.3);
}

@media (max-width: 768px){
  .cookie-banner{
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .cookie-banner p{
    font-size: .84rem;
  }

  .cookie-accept-btn{
    width: 100%;
  }
}

/* ===== MODERN SERVICE LANDINGS ===== */
.service-page.service-landing{
  padding-top: 132px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at top left, rgba(212,30,30,.16), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(255,255,255,.06), transparent 18%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 48%, #080808 100%);
  overflow: hidden;
}

.service-page.service-landing::before,
.service-page.service-landing::after{
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(24px);
  opacity: .65;
}

.service-page.service-landing::before{
  width: 320px;
  height: 320px;
  top: 120px;
  left: -120px;
  background: rgba(212,30,30,.18);
}

.service-page.service-landing::after{
  width: 280px;
  height: 280px;
  right: -80px;
  top: 420px;
  background: rgba(255,255,255,.05);
}

.service-page.service-landing.service-page-ppf,
.service-page.service-landing.service-page-detailing,
.service-page.service-landing.service-page-wrap,
.service-page.service-landing.service-page-tint{
  padding-top: 0;
  padding-bottom: 56px;
  background: #050505;
}

.service-page.service-landing.service-page-ppf::before,
.service-page.service-landing.service-page-ppf::after,
.service-page.service-landing.service-page-detailing::before,
.service-page.service-landing.service-page-detailing::after,
.service-page.service-landing.service-page-wrap::before,
.service-page.service-landing.service-page-wrap::after,
.service-page.service-landing.service-page-tint::before,
.service-page.service-landing.service-page-tint::after{
  display: none;
}

.ppf-hero{
  --service-hero-image: url('../assets/img/ppf-hero.jpg');
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 132px 20px 92px;
  background-color: #050505;
  background-image: var(--service-hero-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.service-page-detailing .ppf-hero{
  --service-hero-image: url('../assets/img/detailing-hero.jpg');
}

.service-page-wrap .ppf-hero{
  --service-hero-image: url('../assets/img/wrap-hero.jpg');
}

.service-page-tint .ppf-hero{
  --service-hero-image: url('../assets/img/tint-hero.jpg');
}

.ppf-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.42) 30%, rgba(0,0,0,.58) 100%),
    linear-gradient(90deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.42) 100%);
}

.ppf-hero-content{
  position: relative;
  z-index: 1;
  max-width: 1040px;
  text-align: center;
}

.ppf-hero-title{
  font-size: clamp(2.6rem, 6.8vw, 5rem);
  line-height: .96;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.34);
}

.ppf-hero-subtitle{
  max-width: 980px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.55vw, 1.38rem);
  line-height: 1.58;
  font-weight: 400;
  text-wrap: balance;
}

.ppf-hero-cta{
  margin-top: 38px;
}

.ppf-hero-note{
  max-width: 980px;
  margin: 26px auto 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(.92rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

@media (min-width: 1200px){
  .ppf-hero-content{
    max-width: min(1560px, 100%);
  }

  .ppf-hero-title{
    white-space: nowrap;
    font-size: clamp(3rem, 4.8vw, 5.9rem);
  }

  .ppf-hero-subtitle,
  .ppf-hero-note{
    max-width: min(1320px, 100%);
  }
}

.ppf-page-content{
  position: relative;
  z-index: 1;
  margin-top: 42px;
}

.service-intro{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.service-intro-copy,
.service-intro-panel,
.service-feature-card,
.service-showcase,
.service-side-notes{
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}

.service-intro-copy{
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(12px);
}

.service-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(212,30,30,.14);
  border: 1px solid rgba(212,30,30,.28);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-intro-copy h1{
  margin: 22px 0 16px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.04em;
}

.service-lead{
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 1.14rem;
  line-height: 1.85;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.service-copy-block{
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-top: 18px;
}

.service-copy-block p{
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.82;
}

.service-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-meta-chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

.service-meta-chip i{
  color: var(--red-primary);
}

.service-intro-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.service-ghost-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,.03);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.service-ghost-link:hover{
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.service-intro-panel{
  position: relative;
  min-height: 100%;
  padding: 26px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.62)),
    var(--panel-image, linear-gradient(135deg, rgba(212,30,30,.24), rgba(0,0,0,.3)));
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-intro-panel-ppf{
  isolation: isolate;
}

.service-intro-panel::after{
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
}

.service-intro-stack{
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.service-floating-car{
  position: absolute;
  right: -18px;
  bottom: 18px;
  width: clamp(280px, 42vw, 470px);
  max-width: 92%;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.42));
  opacity: .96;
  animation: serviceFloatCar 5.8s ease-in-out infinite;
}

@keyframes serviceFloatCar{
  0%, 100%{
    transform: translate3d(0, 0, 0);
  }
  50%{
    transform: translate3d(0, -12px, 0);
  }
}

.service-panel-badge{
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.service-panel-copy h2{
  margin-bottom: 12px;
  font-size: 2rem;
}

.service-panel-copy p{
  max-width: 460px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.service-quick-stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-stat{
  padding: 18px;
  border-radius: 22px;
  background: rgba(8,8,8,.58);
  border: 1px solid rgba(255,255,255,.08);
}

.service-stat strong{
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.35rem;
}

.service-stat span{
  color: rgba(255,255,255,.68);
  line-height: 1.55;
}

.service-highlights{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0 72px;
}

.service-feature-card{
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.04);
}

.service-feature-card i{
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(212,30,30,.14);
  color: var(--red-primary);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.service-feature-card h3{
  margin-bottom: 12px;
  font-size: 1.35rem;
  color: #fff;
}

.service-feature-card p{
  color: rgba(255,255,255,.72);
  line-height: 1.72;
}

.service-section-heading{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.service-section-heading h2{
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 10px;
  color: #fff;
}

.service-section-heading p{
  max-width: 660px;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}

.service-section-label{
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-showcase{
  position: relative;
  z-index: 1;
  padding: 0;
  border-radius: 0;
  background: transparent;
  margin-bottom: 72px;
}

.service-filmstrip{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.filmstrip-stage{
  position: relative;
  min-height: clamp(440px, 64vw, 760px);
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.04) 30%, rgba(0,0,0,.62) 100%),
    var(--gallery-image);
  background-size: cover;
  background-position: var(--gallery-position, center);
  border: 0;
  box-shadow: none;
  transition: background-position .35s ease;
}

.filmstrip-stage::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 22%);
  pointer-events: none;
}

.filmstrip-copy{
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: 20px;
  bottom: clamp(84px, 10vw, 124px);
  z-index: 1;
  max-width: 760px;
  display: grid;
  gap: 12px;
}

.showcase-card-tag,
.filmstrip-copy-kicker{
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.filmstrip-copy h3{
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: .98;
}

.filmstrip-copy p{
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  max-width: 620px;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
}

.filmstrip-thumbs{
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 12px;
  width: min(100%, 1000px);
  padding: 0 20px;
}

.filmstrip-thumb{
  position: relative;
  width: 92px;
  aspect-ratio: 1.18 / 1;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.4);
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.28)),
    var(--thumb-image);
  background-size: cover;
  background-position: var(--thumb-position, center);
  box-shadow: 0 10px 22px rgba(0,0,0,.24);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.filmstrip-thumb:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.56);
}

.filmstrip-thumb.active{
  border-color: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.3);
}

.filmstrip-thumb::after{
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(81, 155, 214, .9);
  border: 2px solid rgba(255,255,255,.65);
  box-shadow: 0 6px 12px rgba(0,0,0,.2);
}

.filmstrip-thumb.active::before{
  content: "\f00c";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #5f8fbf;
  font-family: "Font Awesome 6 Free";
  font-size: .75rem;
  font-weight: 900;
}

.filmstrip-thumb-label{
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(0,0,0,.36);
  color: rgba(255,255,255,.92);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.service-contact-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.service-side-notes{
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
}

.service-side-notes h2{
  margin-bottom: 14px;
  font-size: 2rem;
  color: #fff;
}

.service-side-notes p{
  color: rgba(255,255,255,.72);
  line-height: 1.78;
}

.service-note-list{
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.service-note-item{
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
}

.service-note-item i{
  color: var(--red-primary);
  margin-top: 4px;
}

.service-note-item strong{
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.service-note-item span{
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

.service-form-panel{
  margin-top: 0;
  padding: 38px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
    var(--black-secondary);
}

.service-form-panel h2{
  margin-bottom: 14px;
}

.service-form-intro{
  margin-bottom: 24px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}

.service-form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.service-form-grid .form-group{
  margin-bottom: 0;
}

.service-form-grid .form-group.span-2{
  grid-column: 1 / -1;
}

.service-form-panel .submit-btn{
  margin-top: 26px;
}

.service-page-ppf .service-intro-copy,
.service-page-ppf .service-intro-panel,
.service-page-ppf .service-feature-card,
.service-page-ppf .service-side-notes,
.service-page-ppf .service-form-panel,
.service-page-ppf .service-showcase{
  border: 0;
  box-shadow: none;
  background: transparent;
}

.service-page-ppf .service-intro-copy,
.service-page-ppf .service-intro-panel,
.service-page-ppf .service-feature-card,
.service-page-ppf .service-side-notes,
.service-page-ppf .service-form-panel{
  border-radius: 0;
}

.service-page-ppf .service-intro-copy{
  position: relative;
  padding: 30px 0 20px;
  max-width: 700px;
}

.service-page-ppf .service-intro-copy::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212,30,30,1), rgba(212,30,30,.18));
}

.service-page-ppf .ppf-intro-label{
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.service-page-ppf .service-intro-panel{
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  min-height: 500px;
  background: none;
}

.service-page-ppf .service-intro{
  position: relative;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  grid-template-areas:
    "copy panel"
    "actions panel";
  gap: 54px;
  align-items: start;
  margin-bottom: 64px;
  isolation: isolate;
}

.service-page.service-landing.service-page-ppf .service-intro::before{
  content: "";
  position: absolute;
  inset: -28px calc(50% - 50vw) -18px calc(50% - 50vw);
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.56) 30%, rgba(0,0,0,.34) 56%, rgba(0,0,0,.58) 100%),
    url('../assets/img/ppf-hero.jpg');
  background-size: cover;
  background-position: center top;
  box-shadow: inset 0 0 120px rgba(0,0,0,.42);
  opacity: .62;
  filter: saturate(1) brightness(.88);
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 18%,
    rgba(0,0,0,1) 76%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 18%,
    rgba(0,0,0,1) 76%,
    transparent 100%
  );
}

.service-page.service-landing.service-page-ppf .service-intro::after{
  content: "";
  position: absolute;
  inset: -28px calc(50% - 50vw) -18px calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 14% 22%, rgba(212,30,30,.22), transparent 34%),
    radial-gradient(circle at 82% 58%, rgba(255,255,255,.05), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.12) 18%, rgba(0,0,0,.18) 58%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.service-page.service-landing.service-page-ppf::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  height: auto;
  top: auto;
  left: auto;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.56) 30%, rgba(0,0,0,.34) 56%, rgba(0,0,0,.58) 100%),
    url('../assets/img/ppf-hero.jpg');
  background-size: cover;
  background-position: center top;
  opacity: .46;
  filter: saturate(1) brightness(.86);
  border-radius: 0;
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,.95) 18%,
    rgba(0,0,0,.62) 56%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,.95) 18%,
    rgba(0,0,0,.62) 56%,
    transparent 100%
  );
  pointer-events: none;
}

.service-page.service-landing.service-page-ppf::after{
  display: none;
}

.service-page-ppf .service-intro-copy{
  grid-area: copy;
}

.service-page-ppf .service-lead{
  max-width: 620px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: .98;
  letter-spacing: .02em;
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: pretty;
  text-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.service-page-ppf .service-copy-block{
  gap: 16px;
  max-width: 620px;
}

.service-page-ppf .service-copy-block p{
  max-width: 620px;
  color: rgba(255,255,255,.74);
  font-size: 1.02rem;
  line-height: 1.95;
}

.service-page-ppf .ppf-intro-actions{
  grid-area: actions;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.service-page-ppf .ppf-intro-actions .btn{
  min-width: 210px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(212,30,30,.22);
}

.service-page-ppf .service-intro-panel::after{
  display: none;
}

.service-page-ppf .service-intro-panel::before{
  content: "";
  position: absolute;
  width: min(580px, 88%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(212,30,30,.18) 0%, rgba(212,30,30,.08) 28%, rgba(212,30,30,0) 68%);
  filter: blur(8px);
  transform: translateY(8px);
}

.service-page-ppf .service-floating-car{
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  transform: none;
  width: clamp(420px, 47vw, 700px);
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 32px 60px rgba(0,0,0,.34));
}

.ppf-gallery-section{
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 8px 0 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.ppf-gallery-grid{
  column-count: 3;
  column-gap: 18px;
  width: 100%;
  padding: 0 28px;
}

.ppf-gallery-item{
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #050505;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  cursor: pointer;
  box-shadow: 0 20px 46px rgba(0,0,0,.24);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  aspect-ratio: 4 / 5;
}

.ppf-gallery-item.item-wide{
  aspect-ratio: 16 / 10;
}

.ppf-gallery-item.item-tall{
  aspect-ratio: 4 / 6;
}

.ppf-gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .45s ease, filter .3s ease;
}

.ppf-gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.22));
  pointer-events: none;
}

.ppf-gallery-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,.34);
}

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

.ppf-gallery-item.is-hidden{
  display: none;
}

.gallery-more-wrap{
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 6px 28px 0;
}

.gallery-more-btn{
  border: 1px solid rgba(212,30,30,.55);
  background: rgba(212,30,30,.12);
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.gallery-more-btn:hover{
  background: rgba(212,30,30,.22);
  border-color: rgba(212,30,30,.8);
  transform: translateY(-1px);
}

.ppf-gallery-lightbox{
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
}

.ppf-gallery-lightbox.active{
  display: flex;
}

.ppf-gallery-lightbox-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.ppf-gallery-lightbox-frame{
  width: min(1120px, 100%);
  max-height: 100%;
}

.ppf-gallery-lightbox-frame img{
  width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.ppf-offer-section{
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-top: 40px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 36px;
  scroll-margin-top: 140px;
}

.ppf-offer-shell{
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ppf-offer-copy{
  display: grid;
  gap: 6px;
  max-width: 680px;
  margin-bottom: 14px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.ppf-offer-kicker{
  color: rgba(255,255,255,.56);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ppf-offer-shell h2{
  margin-bottom: 0;
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  line-height: 1.04;
}

.ppf-offer-copy p{
  max-width: 640px;
  color: rgba(255,255,255,.52);
  font-size: .9rem;
  line-height: 1.55;
}

.ppf-offer-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 14px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.ppf-offer-grid .form-group{
  margin-bottom: 0;
}

.ppf-offer-grid .span-2{
  grid-column: span 2;
}

.ppf-submit-wrap{
  display: flex;
  align-items: end;
}

@media (min-width: 1101px){
  .ppf-submit-wrap{
    grid-column: 1;
    grid-row: 4;
    align-self: start;
    padding-top: 0;
  }

  .ppf-offer-grid .span-2{
    grid-column: 2 / -1;
    grid-row: 3 / span 2;
    align-self: start;
  }
}

.ppf-offer-shell .form-group label{
  margin-bottom: 6px;
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.86);
}

.ppf-offer-shell .form-control{
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  color: #fff;
  min-height: 46px;
  padding: 12px 14px;
  font-size: .95rem;
  box-shadow: none;
}

.ppf-offer-shell select.form-control{
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

.ppf-offer-shell select.form-control option{
  color: #111;
  background: #fff;
}

.ppf-offer-shell .form-control::placeholder{
  color: rgba(255,255,255,.28);
}

.ppf-offer-shell .form-control:focus{
  border-color: rgba(212,30,30,.55);
  box-shadow: 0 0 0 3px rgba(212,30,30,.08);
  background: rgba(255,255,255,.03);
}

.ppf-offer-shell textarea.form-control{
  min-height: 94px;
}

.ppf-offer-shell .submit-btn{
  width: auto;
  min-width: 220px;
  margin-top: 0;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(212,30,30,.14);
  font-size: .95rem;
  display: inline-flex;
}

.ppf-offer-shell form{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

@media (max-width: 1100px){
  .service-intro,
  .service-contact-grid{
    grid-template-columns: 1fr;
  }

  .service-highlights{
    grid-template-columns: 1fr;
  }

  .filmstrip-stage{
    min-height: 520px;
  }

  .ppf-hero{
    min-height: 88vh;
    padding: 124px 20px 82px;
  }

  .ppf-hero-subtitle,
  .ppf-hero-note{
    max-width: 820px;
  }

  .ppf-page-content{
    margin-top: 34px;
  }
}

@media (max-width: 768px){
  .service-page.service-landing{
    padding-top: 112px;
    padding-bottom: 36px;
  }

  .service-page.service-landing.service-page-ppf{
    padding-bottom: 40px;
  }

  .ppf-hero{
    min-height: auto;
    padding: 122px 18px 54px;
    background-position: center top;
  }

  .ppf-hero-content{
    max-width: 100%;
  }

  .ppf-hero-title{
    font-size: clamp(2.2rem, 10.6vw, 3.1rem);
    line-height: .96;
  }

  .ppf-hero-subtitle{
    margin-top: 18px;
    font-size: .96rem;
    line-height: 1.56;
    text-wrap: pretty;
  }

  .ppf-hero-cta{
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
  }

  .ppf-hero-note{
    margin-top: 18px;
    font-size: .9rem;
    line-height: 1.62;
  }

  .ppf-page-content{
    margin-top: 26px;
  }

  .service-page-ppf{
    overflow-x: clip;
  }

  .service-page-ppf .service-intro{
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "panel"
      "actions";
    gap: 18px;
    margin-bottom: 36px;
  }

  .service-page-ppf .service-intro::before,
  .service-page-ppf .service-intro::after{
    inset: -18px calc(50% - 50vw) -12px calc(50% - 50vw);
  }

  .service-page-ppf .service-intro::before{
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0,0,0,.92) 10%,
      rgba(0,0,0,1) 82%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0,0,0,.92) 10%,
      rgba(0,0,0,1) 82%,
      transparent 100%
    );
  }

  .service-page-ppf .service-intro-copy{
    display: block;
    width: 100%;
    max-width: none;
    padding: 14px 0 0;
  }

  .service-page-ppf .service-intro-copy::before{
    width: 54px;
    height: 3px;
  }

  .service-page-ppf .ppf-intro-label{
    display: block;
    margin-bottom: 12px;
    font-size: .68rem;
    line-height: 1.45;
    letter-spacing: .14em;
    white-space: normal;
  }

  .service-page-ppf .service-lead{
    display: block;
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(1.95rem, 10vw, 2.65rem);
    line-height: .98;
    letter-spacing: .01em;
    text-wrap: unset;
  }

  .service-page-ppf .service-copy-block{
    display: block;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }

  .service-page-ppf .service-copy-block p{
    display: block;
    width: 100%;
    max-width: none;
    font-size: .98rem;
    line-height: 1.72;
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
  }

  .service-page-ppf .service-copy-block p + p{
    margin-top: 14px;
  }

  .service-page-ppf .service-intro-panel{
    grid-area: panel;
    order: 2;
    min-height: 240px;
    margin-top: 8px;
  }

  .service-page-ppf .service-intro-panel::before{
    width: min(360px, 92%);
  }

  .service-page-ppf .service-floating-car{
    width: min(410px, 100%);
  }

  .service-page-ppf .ppf-intro-actions{
    grid-area: actions;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .service-page-ppf .ppf-intro-actions .btn{
    width: 100%;
    min-width: 0;
  }

  .service-intro-copy,
  .service-intro-panel,
  .service-side-notes,
  .service-form-panel{
    padding: 24px;
    border-radius: 24px;
  }

  .service-intro-copy h1{
    font-size: 2.7rem;
  }

  .service-lead{
    letter-spacing: .08em;
  }

  .service-floating-car{
    left: 50%;
    right: auto;
    bottom: 12px;
    width: min(420px, 96%);
    transform: translateX(-50%);
    animation: none;
    opacity: .9;
  }

  .service-page-ppf .service-intro-copy{
    width: 100%;
    max-width: none;
    padding: 14px 0 0;
  }

  .service-page-ppf .service-intro{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }

  .service-page-ppf .ppf-intro-label{
    margin-bottom: 12px;
  }

  .service-page-ppf .service-intro-panel{
    padding: 0;
    min-height: 240px;
  }

  .service-page-ppf .service-lead{
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(1.95rem, 10vw, 2.65rem);
    line-height: .98;
    letter-spacing: .01em;
  }

  .service-page-ppf .service-copy-block p{
    font-size: .98rem;
    line-height: 1.72;
  }

  .service-page-ppf .ppf-intro-actions{
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .service-page-ppf .ppf-intro-actions .btn{
    width: 100%;
    min-width: 0;
  }

  .service-page-ppf .service-floating-car{
    width: min(410px, 100%);
  }

  .ppf-gallery-section{
    margin-top: 36px;
  }

  .ppf-gallery-grid{
    column-count: 2;
    padding: 0 18px;
  }

  .ppf-offer-section{
    margin-top: 34px;
    padding: 0 18px;
  }

  .ppf-offer-shell{
    width: 100%;
    padding: 0;
    border-radius: 0;
  }

  .ppf-offer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .service-section-heading{
    align-items: start;
    flex-direction: column;
  }

  .service-quick-stats,
  .service-form-grid{
    grid-template-columns: 1fr;
  }

  .filmstrip-stage{
    min-height: 68vh;
  }

  .filmstrip-copy{
    left: 18px;
    right: 18px;
    bottom: 98px;
  }

  .filmstrip-thumbs{
    left: 0;
    right: 0;
    bottom: 16px;
    transform: none;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 16px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
  }

  .filmstrip-thumbs::-webkit-scrollbar{
    display: none;
  }

  .filmstrip-thumb{
    flex: 0 0 76px;
    scroll-snap-align: start;
  }

  .filmstrip-copy h3{
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 768px){
  .ppf-gallery-section{
    margin-top: 44px;
  }

  .ppf-gallery-grid{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 16px 10px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .gallery-more-wrap{
    padding: 6px 16px 0;
  }

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

  .ppf-gallery-item,
  .ppf-gallery-item.item-wide,
  .ppf-gallery-item.item-tall{
    flex: 0 0 84%;
    aspect-ratio: 4 / 5;
    margin: 0;
    grid-column: auto;
    grid-row: auto;
    border-radius: 22px;
    scroll-snap-align: center;
  }

  .ppf-gallery-lightbox{
    padding: 16px;
  }

  .ppf-gallery-lightbox-close{
    top: 12px;
    right: 12px;
  }

  .ppf-gallery-lightbox-frame img{
    max-height: calc(100vh - 48px);
  }

  .ppf-offer-section{
    margin-top: 28px;
    padding: 0 16px;
  }

  .ppf-offer-shell{
    width: 100%;
    padding: 0;
    border-radius: 0;
  }

  .ppf-offer-copy{
    margin-bottom: 14px;
  }

  .ppf-offer-shell h2{
    font-size: 1.2rem;
    line-height: 1.08;
  }

  .ppf-offer-copy p{
    font-size: .86rem;
    line-height: 1.52;
  }

  .ppf-offer-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ppf-offer-grid .span-2{
    grid-column: auto;
  }

  .ppf-submit-wrap{
    order: 20;
    align-items: stretch;
  }

  .ppf-offer-shell .form-group label{
    margin-bottom: 5px;
    font-size: .8rem;
  }

  .ppf-offer-shell .form-control{
    min-height: 44px;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: .92rem;
  }

  .ppf-offer-shell .submit-btn{
    width: 100%;
    min-width: 0;
    margin-top: 0;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: .92rem;
  }
}

/* Keep PPF form and footer visually continuous (no gray gap). */
.service-page.service-landing.service-page-ppf,
.service-page.service-landing.service-page-detailing,
.service-page.service-landing.service-page-wrap,
.service-page.service-landing.service-page-tint{
  padding-bottom: 0;
}

.service-page.service-landing.service-page-ppf + .site-footer,
.service-page.service-landing.service-page-detailing + .site-footer,
.service-page.service-landing.service-page-wrap + .site-footer,
.service-page.service-landing.service-page-tint + .site-footer{
  margin-top: 0;
}
