/* Reset and Base Styles - Updated: Black, Blue, Red Color Scheme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #000000;
    --accent-red: #dc2626;
    --accent-red-dark: #b91c1c;
    --text-dark: #000000;
    --text-light: #1f2937;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --bg-black: #000000;
    --border-color: #d1d5db;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #ffffff;
    position: relative;
}

/* Lab-themed background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
}

/* Make grid more visible on light sections */
.intro-section::before,
.services-section::before,
.maintenance-section::before,
.paint-correction-section::before,
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

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

/* Top Bar */
.top-bar {
    background: #1f2937;
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
    flex: 1;
    min-width: 0;
}

.scrolling-content {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    animation: scroll-left-to-right 15s linear infinite;
    padding-right: 100px;
}

.top-bar-text {
    display: inline-block;
    white-space: nowrap;
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.phone-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.7;
}

/* Navigation */
.navbar {
    background: var(--bg-black);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    position: relative;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.8), rgba(37, 99, 235, 1), rgba(37, 99, 235, 0.8), transparent);
    animation: scan-line 3s linear infinite;
    z-index: 1001;
}

@keyframes scan-line {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 800;
    color: #2563eb !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.logo-text {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 30%, #60a5fa 50%, #93c5fd 70%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.5));
}


@keyframes flask-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(37, 99, 235, 1), 0 0 20px rgba(37, 99, 235, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 15px rgba(37, 99, 235, 1), 0 0 30px rgba(37, 99, 235, 1);
        transform: scale(1.15);
    }
}

/* Hide logo text if you only want the logo image */
/* Uncomment the line below to hide the text */
/* .logo-text { display: none; } */

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #2563eb !important;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 10px;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: #2563eb !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb !important;
    color: white !important;
}

.btn-primary:hover {
    background: #1e40af !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: #2563eb !important;
}

.btn-secondary:hover {
    background: var(--bg-light);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* CTA Button - Bright Red with Animation */
.btn-cta {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    padding: 18px 40px !important;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 0, 0, 0.8) !important;
    border: 3px solid #ffffff !important;
    position: relative;
    overflow: visible;
    animation: red-pulse 2s ease-in-out infinite, red-glow 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-out infinite;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #ff3333, #ff0000, #ff3333);
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: gradient-shift 3s ease infinite;
    opacity: 0.7;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%) !important;
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.08) !important;
    box-shadow: 0 12px 50px rgba(255, 0, 0, 0.9), 0 0 0 4px rgba(255, 255, 255, 0.8), 0 0 80px rgba(255, 0, 0, 1) !important;
    animation: none;
}

.btn-cta:hover::before {
    animation: none;
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.05) !important;
}

@keyframes red-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 0, 0, 0.8);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(255, 0, 0, 0.8), 0 0 0 4px rgba(255, 255, 255, 0.7), 0 0 70px rgba(255, 0, 0, 1);
    }
}

@keyframes red-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 0, 0, 0.8);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 0, 0, 0.9), 0 0 0 4px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 0, 0, 1);
    }
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.nav-cta .btn-cta {
    padding: 14px 28px !important;
    font-size: 16px !important;
}

/* Hero Section */
.hero {
    background: transparent;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}


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

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    pointer-events: none;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
    opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transition: opacity 0.5s;
}

/* Grey gradient overlay over video */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.6) 0%, rgba(31, 41, 55, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    display: none;
}


.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
}

/* Sections */
section {
    padding: 80px 20px;
    position: relative;
}

/* Lab-themed section dividers */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

section:nth-child(even)::after {
    content: '⚗';
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 24px;
    opacity: 0.1;
    color: #2563eb;
}

.intro-section {
    background: var(--bg-white);
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2563eb !important;
}

.intro-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #dc2626 !important;
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.steps-section {
    background: var(--bg-light);
}

.steps-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2563eb !important;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #dc2626 !important;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(220, 38, 38, 0.5);
    border-radius: 50%;
    animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.services-section {
    background: var(--bg-white);
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2563eb !important;
}

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

.service-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 48px;
    font-weight: 800;
    color: #dc2626 !important;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Detailed Services Section */
.detailed-services-section {
    background: var(--bg-light);
}

.detailed-services-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2563eb !important;
}

.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.detailed-service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.detailed-service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.detailed-service-card ul {
    list-style: none;
    padding: 0;
}

.detailed-service-card li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

.detailed-service-card li::before {
    content: '✓ ';
    color: #dc2626 !important;
    font-weight: bold;
    margin-right: 10px;
}

/* Maintenance Section */
.maintenance-section {
    background: var(--bg-white);
}

.maintenance-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2563eb !important;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.package-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.package-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    padding: 0;
}

.package-card li {
    padding: 8px 0;
    color: var(--text-light);
}

.package-card li::before {
    content: '• ';
    color: #dc2626 !important;
    font-weight: bold;
    margin-right: 10px;
}

/* Ceramic Section */
.ceramic-section {
    background: var(--bg-light);
}

.ceramic-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2563eb !important;
}

.ceramic-section > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
}

.ceramic-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

/* Paint Correction Section */
.paint-correction-section {
    background: var(--bg-white);
}

.paint-correction-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2563eb !important;
}

.paint-correction-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.paint-correction-text {
    display: flex;
    align-items: center;
}

.paint-correction-text p {
    text-align: left;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.paint-correction-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.paint-correction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .paint-correction-content {
        grid-template-columns: 1fr;
    gap: 30px;
    }
    
    .paint-correction-text p {
        text-align: center;
    }
}

/* Service Areas Section */
.service-areas-section {
    background: var(--bg-light);
}

.service-areas-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2563eb !important;
}

.service-areas-section p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
}

/* About Section */
.about-section {
    background: var(--bg-white);
}

.about-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2563eb !important;
}

.about-section p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    background: var(--bg-light);
}

.blog-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2563eb !important;
}

.blog-section p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-black);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin: 10px 0 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-cta .btn {
        width: 100%;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 32px;
        padding: 0 10px;
    }

    .hero-subtitle {
    font-size: 18px;
        padding: 0 10px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }

    .btn-cta {
        font-size: 16px !important;
        padding: 16px 24px !important;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .top-bar-content {
    width: 100%;
        justify-content: center;
    }

    .scrolling-content {
        animation-duration: 12s;
    }

    .navbar .container {
        padding: 12px 15px;
    }

    .logo-img {
        height: 45px;
        max-width: 180px;
    }

    .logo-text {
        font-size: 20px;
    }

    section {
        padding: 50px 20px;
    }

    .steps-grid,
    .services-grid,
    .packages-grid,
    .ceramic-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .paint-correction-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .paint-correction-text p {
        text-align: center;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    .intro-section p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .logo-text {
        font-size: 18px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Quote Modal */
.quote-modal {
    display: none;
        position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
        width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.quote-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-modal-content {
    background-color: white;
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.quote-modal-close:hover {
    color: #000;
}

.quote-modal-content h2 {
    color: #2563eb !important;
    margin-bottom: 10px;
    font-size: 32px;
}

.quote-modal-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.quote-form .btn {
    margin-top: 10px;
        width: 100%;
    }

@media (max-width: 768px) {
    .quote-modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .quote-modal-content h2 {
        font-size: 24px;
    }
}
