/* ============================================
   GASTRO24 ULTRA EDITION - STYLES
   ============================================ */

:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #ff6b6b;
    --secondary: #1d3557;
    --secondary-light: #457b9d;
    --accent: #f4a261;
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, #0d1b2a 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--primary); color: var(--white); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.preloader-logo span { color: var(--primary); }
.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    overflow: hidden;
}
.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    animation: preload 1.5s ease forwards;
}
@keyframes preload { to { width: 100%; } }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.logo-g {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}
.logo-24 {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    opacity: 0.8;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.logo-text .highlight, .highlight { color: var(--primary); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-300);
    padding: 8px 0;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link i { font-size: 0.7rem; margin-left: 5px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray-400);
    font-size: 0.9rem;
}
.dropdown-menu li a:hover {
    background: rgba(230, 57, 70, 0.1);
    color: var(--white);
}
.dropdown-menu li a i { color: var(--primary); width: 20px; }

.nav-actions { display: flex; align-items: center; gap: 15px; }
.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
}
.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--gray-900);
    z-index: 1000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-800);
}
.mobile-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}
.mobile-nav {
    flex: 1;
    padding: 20px;
}
.mobile-nav > li {
    border-bottom: 1px solid var(--gray-800);
}
.mobile-nav > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 500;
}
.mobile-dropdown-menu {
    display: none;
    padding-bottom: 15px;
}
.mobile-dropdown.active .mobile-dropdown-menu { display: block; }
.mobile-dropdown.active > a i { transform: rotate(180deg); }
.mobile-dropdown-menu li a {
    display: block;
    padding: 12px 0 12px 20px;
    color: var(--gray-400);
    font-size: 1rem;
}
.mobile-dropdown-menu li a:hover { color: var(--primary); }
.mobile-contact {
    padding: 20px;
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mobile-phone, .mobile-email {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    font-weight: 500;
}
.mobile-phone i, .mobile-email i { color: var(--primary); }
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-slider {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 1000px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.title-line { display: block; }
.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 35px;
}
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-light {
    background: var(--white);
    color: var(--secondary);
}
.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}
.stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 5px;
}
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.scroll-line span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--primary);
    animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
    0% { top: -20px; }
    100% { top: 50px; }
}
.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 2;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active, .slider-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Section Styles */
section { padding: 100px 0; }
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* About */
.about {
    background: var(--gray-100);
    color: var(--gray-900);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 35px;
    line-height: 1.8;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon i { font-size: 1.2rem; color: var(--white); }
.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.feature-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
}
.about-visual { position: relative; }
.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.about-img:hover img { transform: scale(1.05); }
.about-img-1 { grid-row: span 2; }
.about-img-1 img { height: 400px; }
.about-img-2 img, .about-img-3 img { height: 190px; }
.about-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-primary);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.float-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}
.float-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

/* Offer */
.offer { background: var(--black); }
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.offer-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}
.offer-card.large { grid-column: span 2; }
.card-image {
    position: absolute;
    inset: 0;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.offer-card:hover .card-image img { transform: scale(1.1); }
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    transition: var(--transition);
}
.offer-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(230,57,70,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
}
.card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.card-icon i { font-size: 1.5rem; color: var(--white); }
.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}
.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.card-content p {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-bottom: 15px;
    line-height: 1.6;
}
.card-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.card-brands span {
    padding: 5px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--gray-300);
}
.card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}
.card-arrow i { color: var(--white); transition: var(--transition); }
.offer-card:hover .card-arrow {
    background: var(--white);
}
.offer-card:hover .card-arrow i {
    color: var(--primary);
    transform: translateX(3px);
}

/* Rental */
.rental {
    position: relative;
    overflow: hidden;
}
.rental-bg {
    position: absolute;
    inset: 0;
}
.rental-bg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rental-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230,57,70,0.95) 0%, rgba(193,18,31,0.9) 100%);
}
.rental-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.rental-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.8;
}
.rental-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}
.rental-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
}
.rental-item i { color: var(--accent); }
.rental-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.rental-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.rental-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s;
}
.rental-img:hover img { transform: scale(1.05); }

/* Brands */
.brands {
    background: var(--gray-100);
    color: var(--gray-900);
    overflow: hidden;
}
.brands-wrapper {
    overflow: hidden;
    padding: 30px 0;
}
.brands-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
}
.brands-track.reverse { animation-direction: reverse; margin-top: 20px; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-item {
    flex-shrink: 0;
    padding: 18px 35px;
    background: var(--white);
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    transition: var(--transition);
}
.brand-item:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

/* Gallery */
.gallery { background: var(--black); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item.large { grid-column: span 2; }
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item.large img { height: 100%; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(230,57,70,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact */
.contact { background: var(--black); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 35px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}
.contact-item { display: flex; gap: 18px; }
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(230,57,70,0.1);
    border: 1px solid rgba(230,57,70,0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon i { font-size: 1.2rem; color: var(--primary); }
.contact-text { display: flex; flex-direction: column; gap: 5px; }
.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
}
.contact-text a, .contact-text span { color: var(--white); font-size: 1rem; }
.contact-text a:hover { color: var(--primary); }
.contact-text small { color: var(--gray-500); font-size: 0.85rem; }
.contact-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.contact-map { height: 100%; min-height: 450px; }
.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-800);
}
.map-wrapper iframe {
    filter: grayscale(100%) invert(90%) contrast(90%);
}
.map-card {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--black);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-800);
}
.map-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
}
.map-info { display: flex; flex-direction: column; }
.map-title { font-weight: 600; font-size: 0.95rem; }
.map-address { font-size: 0.8rem; color: var(--gray-500); }

/* Footer */
.footer { background: var(--gray-900); }
.footer-top {
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--gray-800);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}
.footer-logo { display: inline-block; margin-bottom: 15px; }
.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.footer-since {
    color: var(--primary) !important;
    font-weight: 600;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}
.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
}
.footer-links a:hover { color: var(--primary); }
.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.footer-contact a {
    display: block;
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.footer-contact a:hover { color: var(--primary); }
.footer-bottom {
    padding: 25px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}
.footer-credit {
    color: var(--primary) !important;
    font-weight: 600;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-glow);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-5px); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Page Header (for subpages) */
.page-header {
    padding: 160px 0 80px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 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'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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");
}
.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.page-header p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--gray-600); }
.breadcrumb .current { color: var(--white); }

/* Products Grid (for subpages) */
.products { padding: 80px 0; background: var(--gray-100); color: var(--gray-900); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.product-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}
.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-content { padding: 20px; }
.product-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.product-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
}
.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
    .offer-card.large { grid-column: span 2; }
}

@media (max-width: 1024px) {
    section { padding: 80px 0; }
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    .nav-phone span { display: none; }
    .nav-phone { padding: 12px; border-radius: 50%; }
    .about-grid, .rental-content, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-visual { order: -1; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero-stats { gap: 25px; }
    .offer-grid { grid-template-columns: 1fr; }
    .offer-card.large { grid-column: span 1; }
    .offer-card { min-height: 350px; }
    .rental-gallery { grid-template-columns: repeat(2, 1fr); }
    .rental-img img { height: 140px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.large { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom .container { flex-direction: column; gap: 10px; text-align: center; }
    .about-images { grid-template-columns: 1fr; }
    .about-img-1, .about-img-2, .about-img-3 { grid-row: auto; }
    .about-img img, .about-img-1 img, .about-img-2 img, .about-img-3 img { height: 200px !important; }
    .about-float { bottom: -10px; left: 10px; padding: 15px 20px; }
    .float-number { font-size: 2rem; }
    .hero-slider-nav { bottom: 20px; right: 20px; }
    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .hero-badge { font-size: 0.8rem; padding: 8px 16px; }
    .rental-items { gap: 8px; }
    .rental-item { padding: 8px 14px; font-size: 0.85rem; }
    .rental-gallery { gap: 10px; }
    .rental-img img { height: 120px; }
    .contact-buttons { flex-direction: column; }
    .contact-map { min-height: 350px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; }
    .back-to-top { right: 80px; width: 45px; height: 45px; }
}
