/* ===== SMART STOP BODYSHOP - MAIN STYLESHEET ===== */

/* CSS Variables */
:root {
    --black: #0a0a0a;
    --black-light: #141418;
    --black-lighter: #1a1a22;
    --blue-electric: #0088ff;
    --blue-dark: #0066cc;
    --blue-glow: #00aaff;
    --blue-deep: #003366;
    --silver: #c0c0c0;
    --silver-light: #e0e0e0;
    --silver-dark: #888899;
    --white: #ffffff;
    --gradient-blue: linear-gradient(135deg, #0066cc 0%, #00aaff 50%, #0066cc 100%);
    --gradient-metal: linear-gradient(135deg, #1a1a22 0%, #2a2a35 50%, #1a1a22 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--silver-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== CUSTOM SCROLLBAR ===== */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-left: 1px solid rgba(0, 136, 255, 0.2);
}

::-webkit-scrollbar-thumb {
    background: #00aaff;
    border-radius: 6px;
    border: 2px solid #0a0a0a;
    box-shadow: 0 0 8px rgba(0, 170, 255, 0.8), inset 0 0 4px rgba(0, 170, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: #00ccff;
    box-shadow: 0 0 15px rgba(0, 204, 255, 1), inset 0 0 4px rgba(0, 204, 255, 0.5);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #00aaff #0a0a0a;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 136, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 12px 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-text .main {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #888899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.logo-text .sub {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #888899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--silver-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--blue-electric);
}

nav a:hover {
    color: var(--blue-electric);
}

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

nav a.active {
    color: var(--blue-electric);
}

.header-cta {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.4);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(0, 136, 255, 0.6);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.7) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 102, 204, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 170, 255, 0.2) 0%, transparent 50%),
        url('../images/carnew.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.15);
    background-color: var(--black);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 136, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 136, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--blue-electric);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--blue-electric), 0 0 20px var(--blue-glow);
    animation: float-up 8s linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
    max-width: 1000px;
    margin-top: 50px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 136, 255, 0.15);
    border: 1px solid rgba(0, 136, 255, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--blue-electric);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    margin-top: -20px;
    animation: fade-in-up 0.4s ease;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fade-in-up 0.4s ease 0.1s both;
}

.hero h1.hero-logo-text {
    font-family: 'Orbitron', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 1rem;
    gap: 0;
}

.hero h1 .hero-logo-main {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #888899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.hero h1 .hero-logo-sub {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #888899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
    line-height: 1;
}

.hero h1 .title-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #888899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(0, 136, 255, 0.5));
}

.hero p {
    font-size: 1.25rem;
    color: var(--silver);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    animation: fade-in-up 0.4s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.4s ease 0.3s both;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 136, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--silver-light);
    border: 2px solid var(--silver-dark);
}

.btn-secondary:hover {
    border-color: var(--blue-electric);
    color: var(--blue-electric);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.3);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 120px 2rem;
    background: var(--black-light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-electric), transparent);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    color: var(--blue-electric);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--silver);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--gradient-metal);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 136, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 136, 255, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 136, 255, 0.1);
    border: 1px solid rgba(0, 136, 255, 0.3);
    border-radius: 12px;
    color: var(--blue-electric);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-blue);
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.5);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--silver);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-electric);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 15px;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--black) 100%);
    position: relative;
}

.stats::before,
.stats::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-electric), transparent);
}

.stats::before { top: 0; }
.stats::after { bottom: 0; }

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(0, 136, 255, 0.5);
}

.stat-number span {
    color: var(--blue-electric);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.4);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 136, 255, 0.6);
}

.stat-label {
    color: var(--silver);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== WHY US SECTION ===== */
.why-us {
    padding: 120px 2rem;
    background: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 136, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid rgba(0, 136, 255, 0.3);
    transition: all 0.4s ease;
    color: var(--blue-electric);
}

.why-item:hover .why-icon {
    background: var(--gradient-blue);
    border-color: var(--blue-electric);
    box-shadow: 0 0 40px rgba(0, 136, 255, 0.5);
    transform: scale(1.1);
}

.why-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-item p {
    color: var(--silver);
    font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 2rem;
    background: var(--black-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, rgba(0, 136, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--silver);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    border-top: 1px solid rgba(0, 136, 255, 0.2);
    padding: 60px 2rem 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo .logo-text .main {
    font-size: 2.5rem;
}

.footer-brand .logo .logo-text .sub {
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--silver);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 136, 255, 0.1);
    border: 1px solid rgba(0, 136, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-blue);
    border-color: var(--blue-electric);
    color: var(--white);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.5);
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--blue-electric);
}

.footer-col .contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.footer-col .contact-item span:first-child {
    color: var(--blue-electric);
}

.footer-col .contact-item a {
    color: var(--silver-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col .contact-item a:hover {
    color: var(--blue-electric);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--silver-dark);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--blue-electric);
}

.designer-credit {
    color: #444;
    margin-left: 0.5rem;
}

.designer-credit a {
    color: #555;
}

.designer-credit a:hover {
    color: #666;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    padding: 120px 2rem 60px;
    background: var(--black);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(0, 102, 204, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(0, 170, 255, 0.1) 0%, transparent 50%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 255, 0.5), rgba(0, 170, 255, 0.5), rgba(0, 136, 255, 0.5), transparent);
    z-index: 10;
}

.page-header-content {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--silver);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--blue-electric);
}

.breadcrumb span {
    color: var(--silver-dark);
}

.breadcrumb .current {
    color: var(--blue-electric);
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
    padding: 80px 2rem;
    background: var(--black-light);
}

.service-detail-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gradient-metal);
    border: 1px solid rgba(0, 136, 255, 0.3);
}

.service-detail-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(0, 136, 255, 0.2) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(0, 51, 102, 0.3) 0%, transparent 50%);
}

.service-detail-image .placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    opacity: 0.3;
    color: var(--blue-electric);
}

.service-detail-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: var(--silver);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-content .service-badges + .btn {
    margin-top: 2rem;
}

.service-features {
    margin: 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--silver-light);
}

.service-features li i {
    color: var(--blue-electric);
    font-size: 0.9rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 2rem;
    background: var(--black);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.4);
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--silver);
    font-size: 0.95rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 2rem;
    background: var(--black-light);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--silver);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(0, 136, 255, 0.05);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    border-color: rgba(0, 136, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.1);
}

.contact-detail-item .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--white);
}

.contact-detail-item .text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-item .text p {
    color: var(--silver);
    margin: 0;
    font-size: 0.95rem;
}

.opening-hours {
    background: rgba(0, 136, 255, 0.05);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.opening-hours h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.opening-hours h3 i {
    color: var(--blue-electric);
    margin-right: 0.5rem;
}

.opening-hours ul {
    list-style: none;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--silver);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.opening-hours li:last-child {
    border-bottom: none;
}

.contact-form-wrapper {
    background: var(--gradient-metal);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form-wrapper h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    color: var(--silver-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-electric);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.2);
}

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

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

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

/* ===== MOBILE MENU (hidden by default on desktop) ===== */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-nav {
    text-align: center;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--silver-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--blue-electric);
}

.mobile-cta {
    margin-top: 2rem;
    display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Tablet nav adjustments */
    nav ul {
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 0.85rem;
    }
    
    .header-cta {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .logo-text .main {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .logo-text .sub {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
        justify-content: center;
        position: relative;
    }
    
    .header-container > nav,
    .header-cta {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .logo {
        padding: 12px 0;
    }
    
    .logo-text .main {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .logo-text .sub {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    
    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: rgba(0, 136, 255, 0.1);
        border: 1px solid rgba(0, 136, 255, 0.3);
        border-radius: 8px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .hamburger-line {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--blue-electric);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Mobile menu panel - enable on mobile */
    .mobile-menu {
        display: flex;
    }
    
    
    /* Hero text - prevent wrapping */
    .hero h1 .hero-logo-main {
        white-space: nowrap;
        font-size: clamp(2rem, 10vw, 6rem);
    }
    
    /* Reduce spacing on hero content */
    .hero-content {
        margin-top: 20px;
    }
    
    /* Reduce spacing on hero title */
    .hero h1.hero-logo-text {
        margin-top: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    /* Reduce spacing on page header and breadcrumbs */
    .page-header {
        padding: 120px 2rem 60px;
    }
    
    .breadcrumb {
        margin-top: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand .logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-col .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-col .contact-item span:first-child {
        flex-shrink: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== GALLERY PAGE ===== */
.gallery-section {
    padding: 80px 2rem;
    background: var(--black-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gradient-metal);
    border: 1px solid rgba(0, 136, 255, 0.2);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: rgba(0, 136, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 136, 255, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--silver-dark);
}

.gallery-placeholder span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.gallery-placeholder p {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* ===== AREAS SECTION ===== */
.areas-section {
    padding: 80px 2rem;
    background: var(--black);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.area-card {
    background: var(--gradient-metal);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 136, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.2);
}

.area-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(0, 136, 255, 0.1);
    border: 1px solid rgba(0, 136, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--blue-electric);
    transition: all 0.3s ease;
}

.area-card:hover .area-icon {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.5);
}

.area-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.area-card p {
    color: var(--silver);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== PCP/FINANCE SECTION ===== */
.pcp-section {
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.1) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 136, 255, 0.2);
    border-bottom: 1px solid rgba(0, 136, 255, 0.2);
}

.pcp-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.pcp-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 136, 255, 0.3);
}

.pcp-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.pcp-text p {
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.pcp-text p strong {
    color: var(--blue-electric);
}

.pcp-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pcp-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 136, 255, 0.08);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: var(--silver);
    transition: all 0.3s ease;
}

.pcp-benefits li:hover {
    border-color: rgba(0, 136, 255, 0.5);
    background: rgba(0, 136, 255, 0.12);
}

.pcp-benefits li i {
    color: var(--blue-electric);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pcp-benefits li strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .pcp-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pcp-icon {
        margin: 0 auto 1rem;
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .pcp-text h2 {
        font-size: 1.6rem;
    }
    
    .pcp-benefits {
        grid-template-columns: 1fr;
    }
    
    .pcp-text .btn {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== ADDITIONAL FOOTER STYLES ===== */
.payment-options {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 136, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--blue-electric);
    display: inline-block;
}

.payment-options i {
    margin-right: 0.4rem;
}

.footer-badges {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-badges .badge {
    background: rgba(0, 136, 255, 0.15);
    color: var(--blue-electric);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    width: fit-content;
}

.footer-badges .badge i {
    margin-right: 0.3rem;
}

/* ===== CONTACT PAGE SERVICE BADGES ===== */
.service-badges {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-badges .badge-item {
    background: rgba(0, 136, 255, 0.15);
    color: var(--blue-electric);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 136, 255, 0.3);
}

.service-badges .badge-item i {
    margin-right: 0.4rem;
}

.contact-details a {
    color: var(--blue-electric);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--blue-glow);
    text-decoration: underline;
}
