/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    line-height: 1.6;
}

/* Header & Navigation */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.glass-header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo:hover .logo-img {
    transform: rotate(-5deg) scale(1.1);
}

.nav-container {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-bar {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:not(.active):hover {
    color: #f60;
}

.nav-link.active {
    color: #fff;
    background: rgba(255, 100, 0, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #f60;
    border-radius: 50%;
}

.nav-cta {
    margin-left: 30px;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f60;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-button svg {
    width: 16px;
    height: 16px;
}

.nav-button:hover {
    background: #ff8000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 100, 0, 0.3);
}

/* Hero Section - Image Only Version */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Rest of your existing hero styles remain the same */
.hero-badge {
    display: inline-block;
    background: rgba(255, 100, 0, 0.2);
    color: #f60;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 100, 0, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    color: #f60;
    position: relative;
    display: inline-block;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f60, transparent);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ddd;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-cta {
    background: #f60;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 100, 0, 0.3);
}

.primary-cta:hover {
    background: #ff8000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 100, 0, 0.4);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 100, 0, 0.3);
}

.cta-button svg {
    width: 18px;
    height: 18px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin-top: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        justify-content: center;
        padding: 80px 30px;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-cta {
        margin: 30px 0 0;
    }
    
    .mobile-menu-toggle.active .menu-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .menu-bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .menu-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
/* Responsive Styles for Hero */
@media (max-width: 768px) {
    /* Hero Section Adjustments */
    .hero {
        min-height: 600px;
        padding: 20px; /* Adds padding inside hero section */
    }
    
    .hero-content {
        padding: 0 20px; /* More side margin for content */
        margin-top: 40px; /* Pushes content down from top */
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px; /* More space below title */
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px; /* More space below subtitle */
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Space between buttons */
        margin-top: 20px; /* Space above buttons */
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        margin: 5px 0; /* Small margin between stacked buttons */
    }

    /* General Section Margins for Mobile */
    section {
        padding: 40px 20px !important; /* More padding on sides */
    }

    /* About Section Spacing */
    .about {
        padding: 60px 20px !important; /* More side padding */
    }

    .feature {
        margin-bottom: 25px; /* More space between feature cards */
    }

    /* Why Choose Us Section */
    .why-choose-us {
        padding: 60px 20px !important;
    }

    .features-grid {
        gap: 20px; /* Space between cards */
    }

    /* Contact Section */
    .contact-methods {
        gap: 20px; /* Space between contact cards */
    }
}
/* General Sections */
section {
    padding: 60px 20px;
}

/* About Section - Redesigned */
.about {
    background: linear-gradient(to right, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,100,0,0.08) 0%, transparent 70%);
    z-index: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1 1 500px;
    position: relative;
}

.section-label {
    display: inline-block;
    color: #f60;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 3px;
    background: #f60;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 30px;
}

.section-title .highlight {
    color: #f60;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f60, transparent);
}

.about-features {
    margin: 40px 0;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(40, 40, 40, 0.7);
    transform: translateX(5px);
    border-color: rgba(255, 100, 0, 0.2);
}

.feature-badge {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 100, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-badge svg {
    width: 20px;
    height: 20px;
    color: #f60;
}

.feature-text h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    color: #bbb;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f60;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 100, 0, 0.3);
}

.cta-button:hover {
    background: #ff8000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 100, 0, 0.4);
}

.cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.about-image {
    flex: 1 1 400px;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .main-image {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    border-left: 3px solid #f60;
}

.years-badge {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f60;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        flex: 1 1 100%;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature {
        flex-direction: column;
        padding: 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
}

.about h2,
.services h2,
.why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}


/* Why Choose Us Section */
/* Why Choose Us Section - Redesigned */
.why-choose-us {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: url('https://images.unsplash.com/photo-1595941069915-4ebc5197c14a?q=80&w=1000') center/cover no-repeat;*/
    opacity: 0.15;
    z-index: 0;
}

.choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title .highlight {
    color: #f60;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f60, transparent);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #aaa;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #f60, #ff9000);
    transition: height 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 100, 0, 0.2);
    border-color: rgba(255, 100, 0, 0.3);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 100, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #f60;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #bbb;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 80px 20px;
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 100, 0, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 100, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: #f60;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.contact-link {
    display: block;
    color: #f60;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff8000;
}

.contact-card p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}
/* Footer */
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.credit {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

.credit a {
    color: #f60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit a:hover {
    color: #ff8000;
    text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services .service-list {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 12px 25px;
    }
}
@media (max-width: 768px) {
    .about {
        background: #0a0a0a; /* Solid dark background instead of gradient */
    }
    
    .about::before {
        display: none; /* Remove the orange radial gradient background */
    }
}/* Services Section Styles */
/* Services Section */
.services-section {
    background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.section-label {
    display: inline-block;
    color: #f60;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 3px;
    background: #f60;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0 auto 15px;
    display: block;
    text-align: center;
    width: 100%;
}

.section-title .highlight {
    color: #f60;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f60, transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    display: block;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: white;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 100, 0, 0.2);
    border-color: rgba(255, 100, 0, 0.3);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
}

.service-content p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-link {
    color: #f60;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: #ff8000;
}

.service-card:hover .service-link::after {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .services-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-label {
        font-size: 0.9rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}/* Service Page Specific Styles */
.service-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    margin-top: 80px;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7) contrast(1.1);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-hero-title .highlight {
    color: #f60;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ddd;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.service-details {
    padding: 80px 20px;
    background: #0a0a0a;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-text {
    flex: 1 1 600px;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.service-text p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 100, 0, 0.3);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 100, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: #f60;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.benefit p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-types {
    margin: 60px 0 40px;
}

.service-types h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
}

.tint-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tint-option {
    background: rgba(40, 40, 40, 0.7);
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid #f60;
}

.tint-option h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.tint-option p {
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.tint-percentage {
    display: inline-block;
    background: rgba(255, 100, 0, 0.2);
    color: #f60;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-booking {
    background: rgba(30, 30, 30, 0.7);
    padding: 40px;
    border-radius: 12px;
    margin: 60px 0;
    text-align: center;
    border: 1px solid rgba(255, 100, 0, 0.1);
}

.service-booking h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-booking p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #bbb;
}

.booking-cta {
    margin-top: 30px;
}

.service-gallery {
    flex: 1 1 500px;
}

.service-gallery h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.service-faq {
    padding: 80px 20px;
    background: #111;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #f60;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #bbb;
    line-height: 1.7;
}

.faq-answer p {
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .service-hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 70px;
    }
    
    .service-details, .service-faq {
        padding: 60px 20px;
    }
    
    .service-booking {
        padding: 30px 20px;
    }
    
    .tint-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .service-hero-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}/* Car Window Tinting Page CSS */
/* Base Styles */
.service-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    margin-top: 80px;
}

.service-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.service-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7) contrast(1.1);
}

.service-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #f5f5f5; /* Light near-white */
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Text Color Improvements */
p {
    color: #ddd; /* Light gray for all paragraphs */
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.benefit-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 100, 0, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 100, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: #f60;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.benefit-card p {
    color: #e0e0e0; /* Lighter gray for cards */
    font-size: 1rem;
}

/* Tint Options */
.tint-options {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.option-card {
    background: rgba(40, 40, 40, 0.7);
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid #f60;
}

.option-card h4 {
    color: #f60;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.option-card p {
    color: #e0e0e0; /* Lighter gray */
}

/* Booking CTA */
.booking-cta {
    text-align: center;
    margin: 80px auto;
    padding: 50px;
    background: rgba(255, 100, 0, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(255, 100, 0, 0.3);
    max-width: 1000px;
}

.booking-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.booking-cta p {
    color: #eee; /* Very light gray */
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Other Services */
.other-services {
    padding: 80px 20px;
    background: #0a0a0a;
    text-align: center;
}

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px auto 0;
    max-width: 1000px;
}

.service-mini-card {
    display: block;
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.service-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-mini-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    margin: 0;
    transition: all 0.3s ease;
}

.service-mini-card:hover img {
    transform: scale(1.1);
}

.service-mini-card:hover h3 {
    color: #f60;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-hero .hero-title {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 70px;
    }
    
    .service-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid, .options-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-cta {
        padding: 30px 20px;
        margin: 60px auto;
    }
    
    .services-mini-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .service-hero {
        height: 60vh;
        min-height: 350px;
    }
    
    .service-hero .hero-title {
        font-size: 2rem;
    }
    
    .booking-cta h3 {
        font-size: 1.5rem;
    }
    
    .services-mini-grid {
        grid-template-columns: 1fr;
    }
    
    p {
        font-size: 1rem;
    }
}/* Image-enhanced Pricing Section */
.image-pricing-section {
    background: #0d0d0d;
    padding: 5rem 1.25rem;
    position: relative;
}

.image-pricing-container {
    padding: 0 2.5rem;
    max-width: 87.5rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.image-pricing-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.image-pricing-track::-webkit-scrollbar {
    display: none;
}

.image-price-card {
    flex: 0 0 22rem; /* Slightly wider cards */
    background: #1a1a1a;
    border-radius: 0.625rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 36rem; /* Taller cards */
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.card-image {
    height: 16rem; /* Larger image area */
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amount {
    font-size: 1.75rem;
    color: #FF5E00;
    font-weight: 700;
}

.time {
    color: #b3b3b3;
    font-size: 0.875rem;
}

.examples {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.examples li {
    color: #e6e6e6;
    font-size: 0.9375rem;
    padding: 0.375rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.examples li::before {
    content: '•';
    color: #FF5E00;
    position: absolute;
    left: 0.5rem;
    font-size: 1.2rem;
    line-height: 1;
}

.benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.benefit-tags span {
    background: rgba(255, 94, 0, 0.15);
    color: #FF5E00;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.book-btn {
    width: 100%;
    background: #FF5E00;
    color: white;
    border: none;
    padding: 0.875rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.05rem;
    margin-top: auto;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background: #e05500;
}

/* Scroll Navigation */
.scroll-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.nav-arrow {
    background: rgba(255,255,255,0.1);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.nav-arrow:hover {
    background: rgba(255, 94, 0, 0.3);
}

.scroll-dots {
    display: flex;
    gap: 0.625rem;
}

.scroll-dots span {
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.scroll-dots span.active {
    background: #FF5E00;
}

/* FAQ Section */
.faq-section {
    background: #0d0d0d;
    padding: 80px 20px;
    position: relative;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: #f60;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: #f60;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f60, transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: rgba(40, 40, 40, 0.7);
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(50, 50, 50, 0.7);
}

.toggle-icon {
    font-size: 1.3rem;
    color: #f60;
    transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 25px;
}

.faq-answer p {
    color: #bbb;
    line-height: 1.7;
    padding: 20px 0;
    margin: 0;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 15px 0;
}

.faq-answer li {
    color: #bbb;
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 100, 0, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(255, 100, 0, 0.3);
}

.faq-cta p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
}
