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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 0; /* Remove padding since header is now at top */
}

.responsive-video {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

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

/* Top Info Banner */
.top-info-banner {
    background-color: #000000;
    padding: 20px 0;
}

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

.banner-logo {
    max-width: 500px;
}

.banner-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-label {
    color: #ff0000;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff0000;
}

.contact-divider {
    color: #666;
    font-size: 0.95rem;
}

/* Top Info Banner Responsive */
@media screen and (max-width: 768px) {
    /* Hide top info banner on mobile - replaced by nav-header */
    .top-info-banner {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    /* Top info banner hidden on mobile, no styles needed */
}

/* Top Header Banner */
.top-header-banner {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.top-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

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

.header-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -2px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.header-title .white-text {
    color: #fff;
}

.header-title .red-text {
    color: #fff;
    background-color: #ff0000;
    padding: 10px 40px;
    display: inline-block;
}

.header-subtitle {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 400;
}

/* Top Header Responsive */
@media screen and (max-width: 1024px) {
    .header-title {
        font-size: 4rem;
    }
    
    .header-subtitle {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .top-header-banner {
        padding: 30px 20px;
    }
    
    .header-title {
        font-size: 2.5rem;
        gap: 15px;
    }
    
    .header-title .red-text {
        padding: 8px 30px;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .top-header-banner {
        padding: 25px 15px;
    }
    
    .header-title {
        font-size: 2rem;
        gap: 10px;
    }
    
    .header-title .red-text {
        padding: 6px 25px;
    }
    
    .header-subtitle {
        font-size: 0.9rem;
    }
}

.header-image-bg {
    position: absolute;
    top: 50%;                          /* Move to vertical center */
    left: 50%;                         /* Move to horizontal center */
    transform: translate(-50%, -50%);  /* Shift back to TRUE center */
    object-position: center center;    /* Keep center visible */
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.header-image-overlay {
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.7), rgba(0,0,0,0.6), rgba(0,0,0,0.7));
}

.header-title .white-text {
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.header-title .red-text {
    background-color: #ff0000;
    padding: 10px 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.header-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: grayscale(100%) brightness(0.4);  /* ← ADD THIS */
}

.header-video-overlay {
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.75), rgba(0,0,0,0.65), rgba(0,0,0,0.75));
}

.header-title .white-text {
    color: #fff;
}

.header-title .red-text {
    background-color: #ff0000;
    padding: 10px 40px;
}

/* Navigation Menu */
.main-nav {
    position: sticky;
	top: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-nav .container {
    position: relative;
}

/* Navigation Header (Mobile) */
.nav-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.nav-logo {
    max-width: 180px;
    flex: 1;
}

.nav-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-phone-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.nav-phone-icon:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.nav-phone-icon svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 50px;
    height: 50px;
    background-color: #ff0000;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    border-radius: 4px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 80px;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 30px 30px;
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    height: 3px;
    background-color: #ff0000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: #ff0000;
}

.nav-link.active {
    color: #ff0000;
}

/* Sections */
.section {
    scroll-margin-top: 0;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin-bottom: 20px;
    text-transform: none;
}

.underline {
    width: 450px;
    height: 6px;
    background-color: #ff0000;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* CTA Section */
.cta-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.cta-title .white-text {
    color: #fff;
}

.cta-title .red-text {
    color: #fff;
    background-color: #ff0000;
    padding: 10px 40px;
    display: inline-block;
    margin-left: 20px;
}

.cta-subtitle {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 18px 60px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 48, 40, 0.3);
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.content-section.dark-section {
    background-color: #1a1a1a;
    color: #fff;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dark-section .section-title {
    color: #fff;
}

.section-underline {
    width: 150px;
    height: 6px;
    background-color: #ff0000;
    margin-bottom: 40px;
}

.section-content {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.dark-section .section-content {
    color: #ccc;
}

.section-content p {
    margin-bottom: 20px;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .nav-link {
        padding: 30px 20px;
        font-size: 0.9rem;
    }

    .nav-link::after {
        left: 20px;
        right: 20px;
    }

    .section-title {
        font-size: 3rem;
    }
    .hero-text h1 {
        font-size: 3rem;
    }

    .underline {
        width: 350px;
    }

    .cta-title {
        font-size: 5rem;
    }

    .red-text {
        padding: 8px 30px;
        margin-left: 15px;
    }
}

@media screen and (max-width: 1024px) {
    .nav-link {
        padding: 30px 20px;
        font-size: 0.9rem;
    }

    .nav-link::after {
        left: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 768px) {
    /* Show mobile header */
    .nav-header {
        display: flex;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide menu by default on mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background-color: #2a2a2a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 80px;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }

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

.nav-menu {
    width: 50%;         /* Changed from 280px */
    right: -50%;        /* Changed from -100% */
    max-width: 250px;   /* Added max-width */
}

    .nav-link {
        padding: 20px 30px;
        font-size: 0.95rem;
        white-space: normal;
        width: 100%;
        text-align: left;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: #ff0000;
        color: #fff;
    }

    .content-section {
        padding: 60px 0;
    }

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

    .section-content {
        font-size: 1rem;
    }

    .faq-item h3 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .underline {
        width: 100%;
        max-width: 300px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 3.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-title .red-text {
        margin-left: 0;
        padding: 10px 30px;
    }

    .cta-subtitle {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 15px 50px;
    }
}

@media screen and (max-width: 480px) {
    .nav-logo {
        max-width: 140px;
    }

    .nav-phone-icon {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }

    .nav-phone-icon svg {
        width: 20px;
        height: 20px;
    }

    .mobile-menu-toggle {
        width: 45px;
        height: 45px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
        padding-top: 70px;
    }

    .nav-link {
        padding: 18px 25px;
        font-size: 0.9rem;
    }

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

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 40px;
        font-size: 0.9rem;
    }
}

/* Full Width Hero Section */
.full-hero-section {
    background-color: #fff;
    padding: 0;
    position: relative;
}

.full-hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.full-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.feature-box {
    background-color: #fff;
    padding: 50px 40px;
    text-align: left;
    border-right: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.feature-box:last-child {
    border-right: none;
}

.feature-box:hover {
    background-color: #f9f9f9;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: #ff0000;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.feature-link span {
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: #000;
}

.feature-link:hover span {
    transform: translateX(5px);
}

/* Full Hero Responsive */
@media screen and (max-width: 1024px) {
    .full-hero-image {
        height: 400px;
    }
    
    .feature-boxes {
        margin-top: -60px;
    }
    
    .feature-box {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .full-hero-image {
        height: 300px;
    }
    
    .feature-boxes {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
    }
    
    .feature-box {
        padding: 40px 30px;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .feature-box:last-child {
        border-bottom: none;
    }
}

@media screen and (max-width: 480px) {
    .full-hero-image {
        height: 250px;
    }
    
    .feature-box {
        padding: 35px 25px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .feature-box h3 {
        font-size: 1.3rem;
    }
    
    .feature-box p {
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-section {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.services-header {
    margin-bottom: 60px;
}

.services-title {
    font-size: 5rem;
    font-weight: 900;
    color: #000;
    text-transform: lowercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.services-underline {
    width: 250px;
    height: 6px;
    background-color: #ff0000;
    margin: 0 auto 30px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 40px 30px;
    background-color: #fff;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.service-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Services Responsive */
@media screen and (max-width: 1024px) {
    .services-title {
        font-size: 4rem;
    }
    
    .services-grid {
        gap: 25px;
    }
    
    .service-image {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 3rem;
    }
    
    .services-underline {
        width: 200px;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-content {
        padding: 30px 25px;
    }
}

@media screen and (max-width: 480px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-underline {
        width: 150px;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
}

/* Benefits Section */
.benefits-section {
    background-color: #fff;
    padding: 100px 0;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.benefits-text {
    padding-right: 40px;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
}

.benefits-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.benefits-button {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid #000;
    background-color: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.benefits-button:hover {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #fff !important;
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    background-color: #ff0000 !important;
    border-color: #ff0000 !important;
    box-shadow: 0 10px 30px rgba(236, 48, 40, 0.3);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    color: #ff0000 !important;
    margin: 0 auto 25px;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    color: #fff !important;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff0000 !important;
    margin-bottom: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: #fff !important;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #999 !important;
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-card:hover p {
    color: #fff !important;
}

/* Benefits Responsive */
@media screen and (max-width: 1024px) {
    .benefits-layout {
        gap: 60px;
    }
    
    .benefits-text {
        padding-right: 20px;
    }
    
    .benefits-text h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-text {
        padding-right: 0;
    }
    
    .benefits-text h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
}

@media screen and (max-width: 480px) {
    .benefits-text h2 {
        font-size: 1.8rem;
    }
    
    .benefits-text p {
        font-size: 0.95rem;
    }
    
    .benefits-button {
        padding: 10px 35px;
        font-size: 0.95rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
}

/* Process Journey Section */
.process-section {
    background-color: #f5f5f5;
    padding: 0;
}

.process-header {
    background-color: #ff0000;
    padding: 30px 0;
    text-align: center;
}

.process-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 80px 0;
}

.process-step {
    padding: 40px 40px;
    background-color: #f5f5f5;
    position: relative;
}

.process-step:nth-child(1),
.process-step:nth-child(2),
.process-step:nth-child(3) {
    border-bottom: 1px solid #e0e0e0;
}

.process-step:nth-child(4),
.process-step:nth-child(5),
.process-step:nth-child(6) {
    border-bottom: 1px solid #e0e0e0;
}

.process-step:nth-child(7),
.process-step:nth-child(8),
.process-step:nth-child(9) {
    border-bottom: 1px solid #e0e0e0;
}

.process-step:nth-child(3n+1),
.process-step:nth-child(3n+2) {
    border-right: 1px solid #e0e0e0;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 15px;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.process-step p:last-child {
    margin-bottom: 0;
}

.process-step strong {
    color: #000;
    font-weight: 600;
}

.step-note {
    font-style: italic;
    color: #ff0000 !important;
    font-weight: 500;
}

/* Process Responsive */
@media screen and (max-width: 1024px) {
    .process-header h2 {
        font-size: 1.3rem;
        padding: 0 20px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 0;
    }
    
    .process-step {
        padding: 35px 30px;
    }
    
    .process-step:nth-child(1),
    .process-step:nth-child(2),
    .process-step:nth-child(3),
    .process-step:nth-child(4),
    .process-step:nth-child(5),
    .process-step:nth-child(6),
    .process-step:nth-child(7),
    .process-step:nth-child(8),
    .process-step:nth-child(9),
    .process-step:nth-child(10) {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .process-step:nth-child(11) {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .process-step:nth-child(2n+1) {
        border-right: 1px solid #e0e0e0;
    }
    
    .process-step:nth-child(2n) {
        border-right: none;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .process-header {
        padding: 25px 20px;
    }
    
    .process-header h2 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }
    
    .process-step {
        padding: 30px 25px;
        border-right: none !important;
    }
    
    .process-step:not(:last-child) {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .process-step:last-child {
        border-bottom: none;
    }
    
    .step-number {
        font-size: 2.2rem;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .process-header h2 {
        font-size: 1rem;
    }
    
    .process-step {
        padding: 25px 20px;
    }
    
    .step-number {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .process-step p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

/* Vehicle Guides Section */
.guides-section {
    background-color: #fff;
    padding: 80px 0;
}

.guides-header {
    text-align: center;
    margin-bottom: 50px;
}

.guides-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.guides-highlight {
    color: #999;
    font-weight: 400;
}

.guides-header p {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.divider-line {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: relative;
    margin: 60px 0;
}

.divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0 20px;
    font-size: 1.5rem;
    color: #666;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.vehicle-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 8px;
}

.vehicle-item:hover {
    background-color: #f9f9f9;
    transform: translateY(-5px);
}

.vehicle-icon {
    width: 100%;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.vehicle-item:hover .vehicle-icon svg {
    stroke: #ff0000;
}

.vehicle-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.vehicle-item:hover h3 {
    color: #ff0000;
}

/* Features Section */
.features-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
}

.features-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.features-banner {
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 10;
}

.premium-badge {
    background-color: #000;
    color: #fff;
    padding: 10px 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    transform: rotate(45deg);
    position: absolute;
    right: -35px;
    top: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 50px;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    color: #666;
}

.feature-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #666;
    font-weight: 700;
}

.price-calculator-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.price-calculator-btn:hover {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

/* Guides & Features Responsive */
@media screen and (max-width: 1024px) {
    .vehicle-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .guides-header h2 {
        font-size: 2.5rem;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .premium-badge {
        padding: 8px 40px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .guides-section {
        padding: 60px 0;
    }
    
    .guides-header h2 {
        font-size: 2rem;
    }
    
    .vehicle-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .vehicle-icon {
        height: 60px;
    }
    
    .divider-line {
        margin: 40px 0;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .feature-item {
        font-size: 1rem;
        padding: 15px 0;
    }
    
    .premium-badge {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .guides-header h2 {
        font-size: 1.8rem;
    }
    
    .guides-header p {
        font-size: 0.95rem;
    }
    
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 40px 0;
    }
    
    .vehicle-item {
        padding: 15px;
    }
    
    .vehicle-icon {
        height: 50px;
    }
    
    .vehicle-item h3 {
        font-size: 0.9rem;
    }
    
    .features-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .feature-icon {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .price-calculator-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* FAQ Section with Accordion */
.faq-section {
    background-color: #fff;
    padding: 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.faq-left {
    background-color: #f2f2f2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.faq-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
    max-width: 400px;
}

.faq-cta-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    background-color: #ff0000;
}

.faq-quality-section {
    color: #000;
}

.faq-quality-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.faq-quality-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.faq-right {
    background-color: #f2f2f2;
    padding: 80px 60px;
}

.faq-right h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

/* Accordion Styles */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #ff0000;
}

.accordion-item.active .accordion-header {
    color: #000;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ff0000;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.accordion-content {
    display: none;
    padding: 0 0 25px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p {
    margin: 0;
}

/* FAQ Responsive */
@media screen and (max-width: 1024px) {
    .faq-left,
    .faq-right {
        padding: 60px 40px;
    }
    
    .faq-intro h2 {
        font-size: 2.2rem;
    }
    
    .faq-quality-section h3 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    
    .faq-left {
        padding: 50px 30px;
        gap: 40px;
    }
    
    .faq-right {
        padding: 50px 30px;
    }
    
    .faq-intro h2 {
        font-size: 2rem;
        max-width: 100%;
    }
    
    .faq-quality-section h3 {
        font-size: 1.5rem;
    }
    
    .faq-quality-section p {
        font-size: 0.9rem;
    }
    
    .faq-right h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .accordion-header {
        padding: 20px 0;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .faq-left,
    .faq-right {
        padding: 40px 20px;
    }
    
    .faq-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .faq-cta-btn {
        padding: 12px 35px;
        font-size: 0.85rem;
    }
    
    .faq-quality-section h3 {
        font-size: 1.3rem;
    }
    
    .faq-right h2 {
        font-size: 1.6rem;
    }
    
    .accordion-header {
        padding: 18px 0;
        font-size: 0.9rem;
    }
    
    .accordion-content {
        font-size: 0.9rem;
        padding-bottom: 20px;
    }
}

/* Image Slider Section */
.slider-section {
    background-color: #fff;
    padding: 80px 0;
}

.slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin-bottom: 50px;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    padding: 0 60px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.slide-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f0f0f0;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.slide p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background-color: #000;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-nav:hover {
    background-color: #ff0000;
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #ff0000;
    width: 30px;
    border-radius: 6px;
}

.slider-dot:hover {
    background-color: #ff0000;
}

/* Slider Responsive */
@media screen and (max-width: 1024px) {
    .slider-title {
        font-size: 2.2rem;
    }
    
    .slide {
        min-width: 50%;
    }
    
    .slide-image {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .slider-section {
        padding: 60px 0;
    }
    
    .slider-title {
        font-size: 2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .slider-wrapper {
        padding: 0 50px;
    }
    
    .slide {
        min-width: 100%;
    }
    
    .slide-image {
        height: 220px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .slider-title {
        font-size: 1.6rem;
    }
    
    .slider-wrapper {
        padding: 0 40px;
    }
    
    .slide {
        padding: 0 10px;
    }
    
    .slide-image {
        height: 200px;
        margin-bottom: 20px;
    }
    
    .slide h3 {
        font-size: 1.1rem;
    }
    
    .slide p {
        font-size: 0.9rem;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    background-color: #fff;
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
}

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

.form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
}

.form-group.full-width .form-icon {
    top: 20px;
    transform: none;
}

.submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #ff0000;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 80px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.info-text a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #ff0000;
}

.info-text strong {
    font-weight: 600;
    color: #000;
}

/* Contact Form Responsive */
@media screen and (max-width: 1024px) {
    .contact-layout {
        gap: 60px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 2.2rem;
    }
    
    .contact-info-wrapper {
        padding-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-wrapper {
        padding-top: 0;
        gap: 30px;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }
}

@media screen and (max-width: 480px) {
    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 40px 12px 12px;
        font-size: 0.9rem;
    }
    
    .form-icon {
        right: 12px;
        font-size: 1rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px 40px;
        font-size: 0.95rem;
    }
    
    .info-text {
        font-size: 0.9rem;
    }
}

/* Service Selection Section */
.service-selection-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.selection-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin-bottom: 50px;
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.business-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.business-card.featured {
    border: 2px solid #ff0000;
}

.card-badge {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
}

.card-badge.premium {
    background-color: #fff3e0;
    color: #e65100;
}

.card-image {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.card-url {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 5px;
}

.card-type {
    font-size: 0.9rem;
    color: #999;
}

.services-arrow {
    text-align: center;
    margin: 50px 0;
}

.services-arrow p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.services-arrow span {
    font-size: 2rem;
    color: #ff0000;
}

.services-products {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services-products h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 30px;
}

.product-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-section {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-section-header {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-section-header:hover {
    background-color: #f9f9f9;
}

.accordion-icon {
    font-size: 1.2rem;
    color: #666;
    min-width: 20px;
}

.accordion-section-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    flex: 1;
    margin: 0;
}

.manage-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.manage-link:hover {
    color: #000;
}

.accordion-section-content {
    display: none;
    padding: 0 0 30px 35px;
}

.accordion-section-content.active {
    display: block;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #f0f0f0;
}

.service-details {
    flex: 1;
}

.service-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.service-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.service-action-link {
    font-size: 0.85rem;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
}

.service-action-link:hover {
    text-decoration: underline;
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-badge {
    background-color: #ff0000;
    color: #fff;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

/* Service Selection Responsive */
@media screen and (max-width: 1024px) {
    .business-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .service-selection-section {
        padding: 60px 0;
    }
    
    .selection-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .business-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .business-card:last-child {
        max-width: 100%;
    }
    
    .services-products {
        padding: 30px 20px;
    }
    
    .services-products h3 {
        font-size: 1.6rem;
    }
    
    .accordion-section-header h4 {
        font-size: 1.1rem;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .service-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media screen and (max-width: 480px) {
    .selection-title {
        font-size: 1.6rem;
    }
    
    .business-card {
        padding: 20px;
    }
    
    .services-products {
        padding: 20px 15px;
    }
    
    .accordion-section-content {
        padding-left: 15px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .manage-link {
        font-size: 0.85rem;
    }
}

/* Why Us Section */
.why-us-section {
    background-color: #2a2a2a;
    padding: 80px 0;
    color: #fff;
}

.why-us-header {
    text-align: center;
}

.why-us-subtitle {
    color: #ff0000;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-us-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #b8c2d4;
    max-width: 900px;
    margin: 0 auto;
}

/* Feature Cards (Top 2 cards) */
.why-us-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.featured-card {
    background: linear-gradient(135deg, #000 0%, #ff0000 100%);
}

.dark-card {
    background-color: #0a0a0a;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: #fff;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Benefit Cards (Bottom 3 cards) */
.why-us-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background-color: #ff0000;
    transform: translateY(-5px);
}

.benefit-icon {
    width: 250px;
    height: 75px;
    margin: 0 auto 25px;
    color: #ff0000;
}

.benefit-card:hover .benefit-icon {
    color: #fff;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.benefit-card h3 p2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.benefits-grid .benefit-card h3 {
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #b8c2d4;
}

.benefit-card:hover p {
    color: #fff;
}

/* Gallery */
.why-us-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 0.7;
}

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

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

/* Why Us Responsive */
@media screen and (max-width: 1024px) {
    .why-us-header h2 {
        font-size: 2.4rem;
    }
    
    .why-us-features {
        gap: 20px;
    }
    
    .why-us-benefits {
        gap: 20px;
    }
    
    .feature-card {
        padding: 40px 30px;
        min-height: 180px;
    }
}

@media screen and (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .why-us-header {
        margin-bottom: 40px;
    }
    
    .why-us-header h2 {
        font-size: 2rem;
    }
    
    .why-us-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
}

@media screen and (max-width: 480px) {
    .why-us-header h2 {
        font-size: 1.6rem;
    }
    
    .why-us-description {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 30px 25px;
        min-height: 160px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
}

/* Wave Divider */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    background-color: #fff;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

@media screen and (max-width: 768px) {
    .wave-divider svg {
        height: 80px;
    }
}

@media screen and (max-width: 480px) {
    .wave-divider svg {
        height: 60px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #ff0000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 48, 40, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

/* Scroll to Top Responsive */
@media screen and (max-width: 768px) {
    .scroll-to-top {
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Footer */
.main-footer {
    background-color: #2a2a2a;
    color: #ccc;
}

/* Footer Top Section */
.footer-top {
    background-color: #ff0000;
    padding: 15px 0;
    text-align: center;
}

.footer-tagline p {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Footer Main Section */
.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

/* Footer CTA Column */
.footer-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.footer-cta p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-buttons {
    display: flex;
    gap: 15px;
}

.footer-btn {
    padding: 12px 30px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-btn:hover {
    background-color: #fff;
    color: #2a2a2a;
}

.btn-call {
    background-color: #ff0000;
    border-color: #ff0000;
}

.btn-call:hover {
    background-color: #fff;
    border-color: #fff;
    color: #ff0000;
}

/* Footer Info Column */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    max-width: 250px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.address-block h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-block p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}

/* Footer Contact Column */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
	color: #ff0000
}

.contact-details h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-details p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.7;
    margin: 0 0 5px 0;
}

.email-text {
    margin-top: 10px;
	color: #ff0000
}

.bookmark-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.bookmark-btn:hover {
    background-color: #45a049;
}

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

.footer-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ff0000;
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
	color: #ff0000
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

/* Footer Responsive */
@media screen and (max-width: 1024px) {
    .footer-content {
        gap: 40px;
    }
    
    .footer-tagline p {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        padding: 12px 20px;
    }
    
    .footer-tagline p {
        font-size: 0.8rem;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-cta h3 {
        font-size: 1.3rem;
    }
    
    .footer-buttons {
        flex-wrap: wrap;
    }
    
    .footer-logo {
        max-width: 200px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 480px) {
    .footer-tagline p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-cta h3 {
        font-size: 1.2rem;
    }
    
    .footer-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .footer-logo {
        max-width: 180px;
    }
    
    .bookmark-btn {
        width: 100%;
        text-align: center;
    }
}

.red-text-small {
	.header-title .red-text-small {
    color: #fff;
    background-color: #ff0000;
    padding: 10px 40px;
    display: inline-block;
}
}

/* =========================================================
   APPAREL / PPF PRODUCT GRID OVERRIDE
   Paste at very end of style.css
   ========================================================= */

.apparel-products-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.apparel-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2a2a2a;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.apparel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
    align-items: stretch;
}

.apparel-card {
    background: #d8d5cc;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

.apparel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.apparel-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* keeps 1:1 image area */
    overflow: hidden;
    background: #c8c5bc;
    flex-shrink: 0;
}

.apparel-image-wrapper a {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.apparel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.apparel-image.image-front {
    z-index: 2;
    opacity: 1;
}

.apparel-image.image-back {
    z-index: 1;
    opacity: 0;
}

.apparel-card:hover .apparel-image.image-front {
    opacity: 0;
}

.apparel-card:hover .apparel-image.image-back {
    opacity: 1;
}

.apparel-info {
    padding: 20px;
    text-align: center;
    background: #ff0000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.apparel-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.apparel-price {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.apparel-entries {
    font-size: 10px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .apparel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .apparel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .apparel-products-section {
        padding: 50px 15px;
    }

    .apparel-info {
        padding: 15px;
    }

    .apparel-info h3 {
        font-size: 14px;
    }

    .apparel-price {
        font-size: 13px;
    }

    .apparel-entries {
        font-size: 11px;
    }
}

/* Small Mobile - keep 2 columns */
@media screen and (max-width: 480px) {
    .apparel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .apparel-card {
        max-width: none;
        margin: 0;
    }

    .apparel-title {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .apparel-info {
        padding: 12px;
    }

    .apparel-info h3 {
        font-size: 13px;
        line-height: 1.3;
    }

    .apparel-price {
        font-size: 12px;
    }

    .apparel-entries {
        font-size: 10px;
        line-height: 1.3;
    }
}