/* Batı Vinç - Corporate & Industrial Theme */
:root {
    --primary-color: #FFC107;
    --primary-dark: #FFB300;
    --secondary-color: #1a1a1a;
    --secondary-light: #333333;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --border-color: #e0e0e0;
    --container-width: 1200px;
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ==================== */
/* HEADER TOP BAR       */
/* ==================== */
.header-top {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1002;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-link i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Topbar Icons */
.topbar-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.topbar-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.phone-icon {
    background: #e74c3c;
}

.whatsapp-icon {
    background: #25D366;
}

.mail-icon {
    background: #ea4335;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Sticky Sidebar / Mobile Bottom Bar */
.sticky-sidebar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sidebar-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
}

.sidebar-item:hover {
    transform: scale(1.1);
}

.sidebar-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.sidebar-item:hover .sidebar-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Colors */
.phone-btn {
    background: #E04F5F;
}

.whatsapp-btn {
    background: #25D366;
}

.mail {
    background: #EA4335;
}

.instagram {
    background: #E1306C;
}

/* Mobile Bottom Bar Style */
@media (max-width: 768px) {
    .sticky-sidebar {
        flex-direction: row;
        right: 0;
        left: 0;
        bottom: 0;
        background: white;
        padding: 10px 20px;
        gap: 10px;
        justify-content: space-around;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        border-top: 1px solid #eee;
        border-radius: 20px 20px 0 0;
        /* Modern rounded corners at top */
    }

    .sidebar-item {
        width: 50px;
        height: 50px;
        font-size: 22px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        /* Soft square or keep circle */
    }

    .sidebar-tooltip {
        display: none;
        /* Hide tooltips on mobile */
    }

    .sidebar-item:hover {
        transform: none;
    }
}

/* ==================== */
/* NAVBAR               */
/* ==================== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    max-width: 100%;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.logo img {
    height: 80px;
    /* Adjust based on navbar height */
    width: auto;
    transition: var(--transition);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: var(--text-light);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.5px;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Navbar mobile icons - hidden on desktop */
.navbar-mobile-icons {
    display: none;
    align-items: center;
    gap: 8px;
}

/* ==================== */
/* HERO SECTION         */
/* ==================== */
.hero {
    min-height: auto;
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    color: var(--white);
    position: relative;
    padding: 0;
}

.hero.no-image {
    background: linear-gradient(135deg, #2c3e50, #000000);
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 40px 40px;
    background: var(--secondary-color);
}

.hero .hero-content {
    max-width: 550px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    text-align: left;
    margin: 0;
    flex: 1;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== */
/* HERO TABS / FORM     */
/* ==================== */
.hero-tabs-container {
    width: 380px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-out;
    margin-right: 40px;
}

.hero-tabs-header {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
}

.hero-tab {
    flex: 1;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    font-family: var(--font-heading);
}

.hero-tab:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.hero-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(255, 193, 7, 0.08);
}

.hero-tab i {
    margin-right: 6px;
    font-size: 0.85rem;
}

.hero-tab-content {
    display: none;
    padding: 28px 25px;
}

.hero-tab-content.active {
    display: block;
}

.hero-tab-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-tab-content>p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Hero Form */
.hero-tab-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-tab-form input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.hero-tab-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-tab-form input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

.btn-full {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-full:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.link-btn {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
}

/* Fleet List */
.hero-fleet-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.hero-fleet-list li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-fleet-list li:last-child {
    border-bottom: none;
}

.hero-fleet-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.85rem;
}



/* ==================== */
/* ABOUT SECTION        */
/* ==================== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-img {
    height: 400px;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== */
/* SERVICES             */
/* ==================== */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 250px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
}

.service-img img.active {
    opacity: 1;
    z-index: 1;
}

.service-card:hover .service-img img.active {
    transform: scale(1.1);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-content {
    padding: 35px 25px 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.read-more:hover i {
    margin-left: 10px;
}

/* ==================== */
/* GALLERY              */
/* ==================== */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--primary-color);
    padding-left: 10px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

/* ==================== */
/* STATS                */
/* ==================== */
.stats {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
}

.stats.no-image {
    background: var(--secondary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ==================== */
/* QUOTE / CTA          */
/* ==================== */
.quote-section {
    background: var(--primary-color);
    padding: 60px 0;
    text-align: center;
}

.quote-section h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.quote-section .btn-dark {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-section .btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
}

/* ==================== */
/* FOOTER               */
/* ==================== */
.footer {
    background: #111;
    color: #aaa;
    padding: 70px 0 20px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
    border-bottom: 1px solid #222;
    padding-bottom: 12px;
}

.footer-links li:last-child {
    border-bottom: none;
}

.footer-links a {
    display: flex;
    justify-content: space-between;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 25px;
    font-size: 0.9rem;
}



/* ========================================== */
/* RESPONSIVE - TABLET (max-width: 1024px)    */
/* ========================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 0;
        gap: 0;
        min-height: auto;
        height: auto;
        background: none;
        align-items: stretch;
    }

    .hero-slideshow {
        height: 50vh;
    }

    .hero .hero-content {
        background: var(--secondary-color);
        padding: 30px 25px;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .hero .hero-tabs-container {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: none;
        margin: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================== */
/* RESPONSIVE - MOBILE (max-width: 768px)     */
/* ========================================== */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .navbar .container {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-malatya {
        font-size: 0.85rem;
    }

    .logo-sub {
        font-size: 0.45rem;
        letter-spacing: 2px;
    }

    .navbar-mobile-icons {
        display: flex;
    }

    .navbar-mobile-icons .topbar-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        border-radius: 5px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 15px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 0;
        background: none;
        flex-direction: column;
        gap: 0;
        height: auto;
        align-items: stretch;
    }

    .hero-slideshow {
        height: 45vh;
    }

    .hero .hero-content {
        display: block;
        background: var(--secondary-color);
        padding: 25px 20px;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .hero .hero-tabs-container {
        display: block;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: none;
        margin: 0;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        text-shadow: none;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img {
        height: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 180px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }



    /* Footer spacing for bottom bar */
    .footer {
        padding-bottom: 80px;
    }
}

/* ========================================== */
/* RESPONSIVE - SMALL MOBILE (max-width: 480px) */
/* ========================================== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        height: 220px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-tab {
        font-size: 0.78rem;
        padding: 12px 8px;
    }

    .hero-tab-content {
        padding: 20px 18px;
    }

    .hero-tab-content h3 {
        font-size: 1.1rem;
    }
}

/* ==================== */
/* NEW ELEMENTS         */
/* ==================== */

/* Nav CTA Button */
.nav-cta {
    margin-left: 10px;
}

.nav-call-btn {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.nav-call-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4) !important;
}

.nav-call-btn::after {
    display: none !important;
}

/* Hero Form Select */
.hero-tab-form select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.hero-tab-form select:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

.hero-tab-form select option {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px;
}

/* About Features List */
.about-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-color);
}

.about-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Quote Section Enhancements */
.quote-section p {
    color: #333;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    color: var(--white);
}

/* Sidebar Tooltip */
.sidebar-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.sidebar-item.large-btn:hover .sidebar-tooltip {
    opacity: 1;
}

.sidebar-item.large-btn {
    position: relative;
}

/* Footer links active */
.footer-contact a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Social icons header style */
.social-icons span {
    margin-right: 10px;
    font-weight: 400;
}

/* Lightbox Navigation */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 80%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active .lightbox-caption {
    opacity: 1;
}

/* ==================== */
/* MOBILE RESPONSIVE ADD */
/* ==================== */
@media (max-width: 768px) {
    .nav-cta {
        margin-left: 0;
    }

    .nav-call-btn {
        justify-content: center;
    }

    .sidebar-tooltip {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-whatsapp,
    .quote-section .btn-dark {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
}