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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-color: #FFA500;
    --secondary-color: #FF8C00;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --gray-color: #666;
}

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

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Navigation */
.navbar {
    background: var(--dark-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9990;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 900;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Simplified */
.hero {
    height: 70vh;
    min-height: 500px;
    margin-top: 60px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('MKone/WhatsApp Image 2025-06-23 at 10.34.04.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Hero Stats - Removed */

/* Button Styles - Simplified */
.btn {
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    transition: background 0.2s;
    display: inline-block;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--primary-color);
}

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

/* Main Content */
#main-content {
    margin-top: 1px;
}

/* Services Section - Simplified */
.services {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    font-weight: 600;
}

.section-subtitle {
    display: none; /* Remove subtitles for cleaner look */
}

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

.service-card {
    padding: 30px;
    text-align: left;
    border-bottom: 2px solid var(--light-color);
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-bottom-color: var(--primary-color);
}

.service-icon {
    display: none; /* Remove emoji icons */
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.2rem;
}

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

/* About Section */
.about {
    padding: 60px 0;
    background: var(--light-color);
}

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

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-features {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    padding: 20px;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
}

.feature h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Equipment Section */
.equipment {
    padding: 60px 0;
    background: white;
}

.equipment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.equipment-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.brands-container {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.brand-item {
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.brand-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.equipment-features {
    margin-top: 30px;
}

.equipment-features h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.equipment-features ul {
    list-style: none;
}

.equipment-features ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.equipment-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.equipment-gallery {
    text-align: center;
}

.equipment-img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: auto;
    object-fit: cover;
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background: var(--dark-color);
    color: white;
}

.partners .section-title {
    color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    font-weight: 500;
}

/* CEO Gallery Section */
.ceo-gallery {
    padding: 60px 0;
    background: var(--light-color);
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.ceo-bio h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.ceo-bio p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.ceo-achievements {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ceo-achievements h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.ceo-achievements ul {
    list-style: none;
}

.ceo-achievements li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.ceo-achievements li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.gallery-grid img,
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.gallery-img:hover {
    opacity: 0.8;
}

/* Lightbox - Minimal design */
.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: hidden;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 35px;
    font-weight: normal;
    cursor: pointer;
    z-index: 100;
    transition: color 0.2s;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    color: #f1f1f1;
    font-size: 60px;
    font-weight: normal;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    text-align: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    font-size: 0.9rem;
}

/* Gallery images clickable */
.gallery-img {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.gallery-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Bus Gallery Section */
.bus-gallery {
    padding: 60px 0;
    background: white;
}

/* Brand Tabs */
.brand-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.tab-button {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button:hover {
    background: var(--primary-color);
    color: white;
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
}

.gallery-container {
    margin-top: 50px;
}

.gallery-main {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.brand-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-main img {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: opacity 0.3s ease;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    opacity: 1;
    border: 3px solid var(--primary-color);
}

.bus-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.category-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Brand Showcase */
.brand-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.brand-info {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.showcase-logo {
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.brand-info h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.brand-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.brand-info ul {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.brand-info ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.brand-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

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

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-color);
}

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

/* Responsive Design */

/* Tablets - Portrait */
@media (max-width: 991px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-content,
    .contact-content,
    .equipment-content {
        gap: 40px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-main img {
        height: 400px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Mobile - Landscape and Tablets */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 9980;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section */
    .hero {
        height: 60vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    /* Equipment */
    .equipment-content {
        grid-template-columns: 1fr;
    }
    
    .equipment-gallery {
        order: -1;
        margin-bottom: 30px;
    }
    
    .brand-logo {
        height: 60px;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-item {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    /* CEO Gallery */
    .ceo-content {
        grid-template-columns: 1fr;
    }
    
    .ceo-images {
        order: -1;
        margin-bottom: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-grid img {
        height: 200px;
    }
    
    /* Bus Gallery */
    .gallery-main img {
        height: 300px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
    }
    
    .thumbnail {
        height: 80px;
    }
    
    .bus-categories {
        grid-template-columns: 1fr;
    }
    
    .brand-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .brand-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
        top: 10px;
        right: 10px;
    }
    
    .brand-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-info {
        padding: 30px 20px;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        margin-top: 30px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Sections Padding */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Mobile - Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section */
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .logo {
        height: 35px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    /* Services */
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* About */
    .about-text h2 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .feature {
        padding: 15px;
    }
    
    /* Equipment */
    .equipment-img {
        max-width: 100%;
    }
    
    .brand-logos {
        gap: 15px;
    }
    
    .brand-logo {
        height: 50px;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    /* CEO Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid img {
        height: 300px;
    }
    
    .ceo-achievements {
        padding: 20px;
    }
    
    /* Bus Gallery */
    .gallery-main img {
        height: 250px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .thumbnail {
        height: 70px;
    }
    
    .tab-button {
        font-size: 0.85rem;
        padding: 8px 15px;
        width: 100%;
    }
    
    .brand-info h3 {
        font-size: 1.5rem;
    }
    
    .showcase-logo {
        height: 60px;
    }
    
    /* CTA */
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .cta p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    /* Contact */
    .contact-item {
        margin-bottom: 15px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-tabs {
        gap: 5px;
    }
    
    .tab-button {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

/* Responsive adjustments for user-friendly elements */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-button {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .whatsapp-button {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button svg {
        width: 25px;
        height: 25px;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 3px solid rgba(255,165,0,0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: white;
    font-size: 1.1rem;
    animation: fadeInOut 1.5s infinite;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26,26,26,0.95);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
    transition: all 0.3s;
    z-index: 999;
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37,211,102,0.6);
}

/* Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    margin-bottom: 10px;
}

[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0,0,0,0.9);
    margin-bottom: 4px;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 10px;
}

/* Button styles simplified - removed complex hover effects */

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-group.success input,
.form-group.success textarea {
    border-color: #28a745;
}

.form-message {
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-message.error {
    color: #dc3545;
}

.form-message.success {
    color: #28a745;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Import pages styles */
@import url('pages-styles.css');

