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

:root {
    --primary-color: #dc0000;
    --secondary-color: #1a1a1a;
    --accent-color: #ff0000;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-dark: #000000;
    --gradient-1: linear-gradient(135deg, #dc0000 0%, #8b0000 100%);
    --gradient-2: linear-gradient(135deg, #ff0000 0%, #dc0000 100%);
    --gradient-orange: linear-gradient(135deg, #dc0000 0%, #ff3333 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 0;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -5px;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('/background.JPG') center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 10px;
    background: linear-gradient(135deg, #dc0000 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(220, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 0, 0, 0.6);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 0, 0, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header.center {
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-header.center .section-title {
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.section-header.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

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

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

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: #ff3333;
}

/* CNC Section */
.cnc-section {
    background: white;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-item h4 {
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.feature-item p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.content-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.1) 100%);
}

.placeholder-text {
    text-align: center;
    color: #999;
    z-index: 1;
}

.placeholder-text svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder-text p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Cerakote Section */
.cerakote-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-card p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Color Section */
.color-section {
    margin-top: 80px;
    padding: 60px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.center-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.center-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

.color-card {
    text-align: center;
    transition: var(--transition);
}

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

.color-sample {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 3px solid white;
}

.color-card:hover .color-sample {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.color-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.color-card p {
    color: #999;
    font-size: 0.9rem;
    font-family: monospace;
}

.center-cta {
    text-align: center;
    margin-top: 2rem;
}

.info-text {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
}

/* Gallery Section */
.gallery {
    background: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    height: 300px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.gallery-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #999;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

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

.info-item h4 {
    margin-bottom: 0.3rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: #7f8c8d;
}

.social-links {
    margin-top: 3rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #1877f2;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 600;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

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

.contact-form .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section p {
    color: #bbb;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .content-split,
    .content-split.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .color-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .color-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    margin: auto;
    display: block;
    animation: zoomIn 0.3s ease-in-out;
    box-shadow: 0 0 40px rgba(220, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-color);
    transform: scale(1.2);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 10px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(220, 0, 0, 0.3);
    border-radius: 10px;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(220, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox responsive */
@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        bottom: 15px;
        font-size: 1rem;
        padding: 10px 20px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }
}

/* Shop Section */
.shop-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.shop-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.shop-category-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.shop-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.shop-cat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fff0f0 0%, #ffe0e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-cat-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-color);
}

.shop-category-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.shop-category-card p {
    font-size: 14px;
    color: #666;
}

.shop-cta {
    text-align: center;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.nav-shop {
    background: var(--primary-color) !important;
    padding: 8px 20px !important;
    border-radius: 6px;
    font-weight: 600 !important;
}

.nav-shop:hover {
    background: #ff3333 !important;
}

/* Distributor Nav Button */
.nav-distributor {
    background: var(--primary-color) !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    font-weight: 600 !important;
    margin-left: 10px;
    transition: all 0.3s ease !important;
}

.nav-distributor:hover {
    background: #ff3333 !important;
    transform: scale(1.05);
}

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

@media (max-width: 576px) {
    .shop-categories {
        grid-template-columns: 1fr;
    }
    .shop-cta {
        flex-direction: column;
    }
}

/* Featured Products Grid */
.products-grid-landing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.product-card-landing {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card-landing:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-landing {
    height: 220px;
    background: #f8f9fa;
    overflow: hidden;
}

.product-image-landing img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.5s;
}

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

.product-info-landing {
    padding: 20px;
}

.product-category-landing {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info-landing h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 8px 0;
    line-height: 1.4;
    height: 42px;
    overflow: hidden;
}

.product-price-landing {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.gallery-cta {
    text-align: center;
    margin-top: 30px;
}

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

@media (max-width: 576px) {
    .products-grid-landing {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SHOP PAGES STYLES
   ============================================ */

/* Nav spacer for shop pages */
.nav-spacer {
    height: 80px;
}

/* Search in navbar */
.nav-search-form {
    display: flex;
    gap: 8px;
}

.nav-search-form input {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    width: 150px;
    font-size: 14px;
}

.nav-search-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.nav-search-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
}

.nav-search-form button {
    padding: 8px 15px;
    background: var(--primary-color);
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.nav-search-form button:hover {
    background: #ff3333;
}

.header-search {
    display: flex;
    align-items: center;
}

/* Override shop.css styles for unified look */
body.shop-page .header {
    display: none;
}

body.shop-page .footer {
    background: var(--bg-dark);
    color: var(--text-light);
}

body.shop-page .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 40px 0;
}

body.shop-page .footer-brand .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

body.shop-page .footer-title {
    color: var(--text-light);
    margin-bottom: 1rem;
}

body.shop-page .footer-links {
    list-style: none;
}

body.shop-page .footer-links li {
    margin-bottom: 0.5rem;
}

body.shop-page .footer-links a {
    color: #bbb;
    transition: var(--transition);
}

body.shop-page .footer-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .header-search {
        display: none;
    }
}

/* Hero Vehicle Search */
.hero-vehicle-search {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px 35px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 700px;
    backdrop-filter: blur(10px);
}

.hero-vehicle-search h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
}

.hero-search-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-select {
    padding: 12px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 15px;
    min-width: 180px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.15);
}

.hero-select option {
    background: #1a1a1a;
    color: #fff;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-image {
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #fff0f0 0%, #ffe0e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    stroke: var(--primary-color);
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-search-form {
        flex-direction: column;
        align-items: center;
    }

    .hero-select {
        width: 100%;
        max-width: 280px;
    }

    .hero-vehicle-search {
        margin: 20px 15px;
        padding: 20px;
    }
}

/* ============================================
   DISTRIBUTOR SECTION
   ============================================ */
.distributor-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.distributor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.distributor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.distributor-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.distributor-text {
    max-width: 700px;
    margin: 0 auto;
}

.distributor-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.distributor-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.distributor-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

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

.modal-content .form-group {
    margin-bottom: 18px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
    background: #fafafa;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(220, 0, 0, 0.1);
}

.modal-content textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 10px;
}

/* VAT Field Highlight */
.vat-highlight {
    background: linear-gradient(135deg, #fff8e6 0%, #fff3d6 100%);
    padding: 18px;
    border-radius: 12px;
    border: 2px dashed #ffc107;
    margin-bottom: 20px;
}

.vat-label {
    display: block;
    font-size: 13px;
    color: #856404;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.vat-highlight input {
    background: #fff !important;
    border: 2px solid #ffc107 !important;
    font-size: 16px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vat-highlight input:focus {
    border-color: var(--primary-color) !important;
}

.vat-highlight input::placeholder {
    text-transform: none;
    letter-spacing: 0;
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */
.social-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
}

.social-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.instagram-card::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook-card::before {
    background: #1877f2;
}

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

.social-card:hover::before {
    height: 6px;
}

.instagram-card:hover {
    border-color: #e4405f;
}

.facebook-card:hover {
    border-color: #1877f2;
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.instagram-card .social-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook-card .social-icon {
    background: #1877f2;
}

.social-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.social-handle {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.instagram-card .social-handle {
    color: #e4405f;
}

.facebook-card .social-handle {
    color: #1877f2;
}

.social-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 20px 0;
}

.social-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.instagram-card .social-cta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.facebook-card .social-cta {
    background: #1877f2;
    color: #fff;
}

.social-card:hover .social-cta {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

    .social-card {
        padding: 30px 25px;
    }

    .social-icon {
        width: 70px;
        height: 70px;
    }

    .social-icon svg {
        width: 35px;
        height: 35px;
    }
}

/* Distributor Responsive */
@media (max-width: 768px) {
    .distributor-text h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .distributor-text h3 {
        font-size: 1.2rem;
    }

    .distributor-text p {
        font-size: 0.95rem;
    }

    .distributor-section {
        padding: 50px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 25px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .distributor-text h2 {
        font-size: 1.5rem;
    }

    .distributor-text h3 {
        font-size: 1rem;
    }

    .distributor-section {
        padding: 40px 0;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* Track Order Modal */
.track-order-modal {
    max-width: 550px;
}

.track-order-header {
    text-align: center;
    margin-bottom: 30px;
}

.track-order-header svg {
    margin-bottom: 15px;
}

.track-order-header h2 {
    margin-bottom: 10px;
}

.track-order-link {
    color: #c41e3a !important;
    font-weight: 600;
}

.track-order-link:hover {
    text-decoration: underline !important;
}

/* Order Result Display */
.order-result {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.order-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.order-code {
    font-family: monospace;
    font-size: 1.2rem;
    color: #c41e3a;
    font-weight: 700;
    letter-spacing: 1px;
}

.order-customer {
    font-size: 0.9rem;
    color: #666;
}

/* Progress Tracker */
.progress-tracker {
    margin: 30px 0;
}

.progress-bar-container {
    background: #e5e7eb;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #c41e3a, #ff6b35);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.progress-step {
    flex: 1;
    min-width: 80px;
    text-align: center;
    padding: 10px 5px;
    background: white;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #999;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.progress-step.active {
    color: #c41e3a;
    border-color: #c41e3a;
    font-weight: 600;
}

.progress-step.completed {
    color: #28a745;
    border-color: #28a745;
    background: #d4edda;
}

.progress-step-icon {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Status Badge */
.current-status {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 25px;
}

.current-status-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.current-status-value {
    font-size: 1.4rem;
    font-weight: 700;
}

/* Order Details Grid */
.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.order-detail-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.order-detail-item.full-width {
    grid-column: 1 / -1;
}

.order-detail-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.order-detail-value {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.order-detail-value a {
    color: #c41e3a;
    text-decoration: none;
}

.order-detail-value a:hover {
    text-decoration: underline;
}

/* Loading Spinner */
.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Error Message */
.track-error {
    text-align: center;
    padding: 30px;
    color: #c41e3a;
}

.track-error svg {
    margin-bottom: 15px;
}

.track-error h3 {
    margin-bottom: 10px;
}

.track-error p {
    color: #666;
    font-size: 0.95rem;
}

/* Search Again Button */
.search-again-btn {
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 600px) {
    .order-details-grid {
        grid-template-columns: 1fr;
    }

    .progress-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .order-result-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ========================================
   CAN'T FIND YOUR CAR SECTION
======================================== */
.cant-find-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.cant-find-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dc0000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cant-find-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cant-find-text {
    color: #fff;
}

.cant-find-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cant-find-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cant-find-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 30px;
}

.cant-find-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cant-find-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: #ddd;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cant-find-benefits li:last-child {
    border-bottom: none;
}

.cant-find-benefits .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.cant-find-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cant-find-form .form-group {
    margin-bottom: 20px;
}

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

.cant-find-form input,
.cant-find-form select,
.cant-find-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cant-find-form input:focus,
.cant-find-form select:focus,
.cant-find-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(220, 0, 0, 0.1);
}

.cant-find-form .btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cant-find-form .form-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .cant-find-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cant-find-text {
        text-align: center;
    }

    .cant-find-text h2 {
        font-size: 2rem;
    }

    .cant-find-benefits {
        max-width: 400px;
        margin: 0 auto;
    }

    .cant-find-benefits li {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .cant-find-section {
        padding: 60px 0;
    }

    .cant-find-form {
        padding: 25px;
    }

    .cant-find-form .form-row {
        grid-template-columns: 1fr;
    }

    .cant-find-text h2 {
        font-size: 1.75rem;
    }

    .cant-find-text h3 {
        font-size: 1.2rem;
    }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #1a1a1a;
    border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Adjust position when cookie banner is visible */
.cookie-consent ~ .whatsapp-float,
.whatsapp-float.cookie-active {
    bottom: 180px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ========================================
   GDPR COOKIE CONSENT BANNER
======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-message h4 {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.cookie-message p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-message a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #b00000;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #888;
}

.cookie-btn-settings {
    background: transparent;
    color: #fff;
    border: 1px solid var(--primary-color);
}

.cookie-btn-settings:hover {
    background: rgba(220, 0, 0, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #1a1a1a;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--primary-color);
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-intro {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.cookie-category {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: #f9f9f9;
    gap: 20px;
}

.cookie-category-info h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: #1a1a1a;
}

.cookie-category-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider {
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 26px;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .toggle-slider {
    background: var(--primary-color);
}

.cookie-toggle input:checked + .toggle-slider::after {
    transform: translateX(24px);
}

.cookie-toggle.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.toggle-label {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 600;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-toggle {
        align-self: flex-start;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.faq-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.faq-section .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-section .section-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   Simple Math CAPTCHA
   ============================================ */
.captcha-group {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
    margin-top: 15px;
}

.captcha-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-align: center;
}

.captcha-label span {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.captcha-group input[type="number"] {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 10px 15px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.captcha-group input[type="number"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 0, 0, 0.1);
}

.captcha-group input[type="number"]::-webkit-outer-spin-button,
.captcha-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.captcha-group input[type="number"] {
    -moz-appearance: textfield;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-text {
    color: white;
}

.section-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 0, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(220, 0, 0, 0); }
}

.why-us-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 35px;
}

.why-us-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.credential-item svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.credential-item span {
    font-size: 1.05rem;
    font-weight: 500;
    color: #e0e0e0;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff4444);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), #ff4444);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.stat-sublabel {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive Why Us */
@media (max-width: 992px) {
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .why-us-text h2 {
        font-size: 2.5rem;
    }

    .credentials-list {
        max-width: 400px;
        margin: 0 auto;
    }

    .credential-item:hover {
        transform: translateX(0);
    }
}

@media (max-width: 576px) {
    .why-us-section {
        padding: 70px 0;
    }

    .why-us-text h2 {
        font-size: 2rem;
    }

    .why-us-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .credential-item {
        padding: 12px 15px;
    }
}
