/* Variables Globales */
:root {
    --primary: #000000;
    --secondary: #0066cc;
    --accent: #f4f4f4;
    --text: #333333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* --- Header Mejorado --- */
.main-header {
    background: rgba(255, 255, 255, 0.8); /* Transparencia para efecto glass */
    backdrop-filter: blur(12px); /* Desenfoque elegante */
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Efecto cuando el usuario hace scroll (puedes activarlo con JS añadiendo una clase .scrolled) */
.main-header.scrolled {
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.brand-container {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.brand {
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.sub-brand {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-top: 4px;
}

/* Menú de Navegación */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
    margin: 0 15px;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative; /* Para el efecto de subrayado */
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Efecto de subrayado animado al hacer hover */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

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

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

/* --- Botones de Acción --- */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #333 100%);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px; /* Bordes redondeados modernos */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
    background: var(--secondary);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Aquí podrías implementar un menú hamburguesa */
    }
    
    .brand {
        font-size: 1.2rem;
    }
}

/* --- HERO SECTION --- */
.hero {
    padding: clamp(60px, 10vw, 120px) 0; /* Espaciado fluido según el tamaño de pantalla */
    background: radial-gradient(circle at top right, rgba(0, 102, 204, 0.05), transparent);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Un poco más de peso al texto */
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Tamaño de fuente fluido */
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    color: var(--primary);
    letter-spacing: -2px;
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    color: #555;
    max-width: 550px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    /* Efecto de sombra moderna: capas de sombras suaves en lugar de una dura */
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.1),
        0 10px 15px rgba(0, 102, 204, 0.05);
    transition: transform 0.5s ease;
}

/* Decoración detrás de la imagen */
.hero-image::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: 30px;
    opacity: 0.1;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* --- INFO BAR --- */
.info-bar {
    padding: 80px 0;
    background-color: #0066cc; /* Negro profundo mate */
    position: relative;
    margin-top: -40px; /* Solapamiento sutil con el hero para flow visual */
    z-index: 10;
}

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

.info-card {
    display: flex;
    align-items: flex-start; /* Mejor que center para textos largos */
    padding: 35px;
    background: rgba(255, 255, 255, 0.03); /* Vidrio oscuro */
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), #004a99);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.info-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent); /* Color énfasis para el label */
    margin-bottom: 8px;
}

.info-content p {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 300;
}

.info-content strong {
    color: white;
    font-weight: 600;
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 { margin: 0 auto 20px; }
    .lead { margin: 0 auto 30px; }
    .hero-image { order: -1; margin-bottom: 40px; }
}

@media (max-width: 600px) {
    .info-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }
    .info-icon {
        margin: 0 auto 20px;
    }
}

/* Services Section - Darker & Grittier */
.services {
    padding: 100px 0;
    background: #ffffff; /* Pure black for maximum brand impact */
    color: #000000; /* Pure white */
    position: relative;
}

.section-title {
    text-align: left; 
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px; 
    margin-bottom: 60px;
    border-left: 8px solid #0066cc; /* Brand Blue Accent */
    padding-left: 20px;
}

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

.service-card {
    background: #ffffff; /* Deep charcoal/black */
    padding: 40px;
    border-radius: 0; 
    border: 1px solid #1a1a1a; /* Subtle boundary */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: scale(1.02); 
    border-color: #0066cc; /* Border lights up on hover */
    background: #e4ebf1;
    box-shadow: 10px 10px 0px rgba(0, 102, 204, 0.2); /* Hard brand-colored shadow */
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #0066cc; /* Icons now use brand blue */
    filter: none; /* Removed grayscale to let the blue shine */
}

/* The Highlight - Heavy top bar */
.highlight {
    border-top: 8px solid #0066cc; /* Bold Brand Blue */
}

/* Subtle Texture Background */
.services::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    pointer-events: none;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image, .about-text {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

.label {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 2px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin: 15px 0;
}

.check-list {
    list-style: none;
    margin-top: 25px;
}

.check-list li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--secondary);
    font-weight: bold;
}





/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f9f9f9; /* Light contrast to your white sections */
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff; /* Use your primary brand color here */
    opacity: 0.3;
}

.feature-text h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 50px 0;
    }
}






/* --- Our Process Section --- */
.process {
    padding: 80px 0;
    background-color: #f9f9f9; /* Light contrast to the white sections */
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
    border-top: 4px solid #000; /* Matching your black accents */
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #111;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .process {
        padding: 60px 0;
    }
}





/* Gallery Section */

.gallery {
    padding: 100px 0;
    background-color: #fff;
}

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

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.work-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 123, 255, 0.9); /* Your brand blue */
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.gallery-footer {
    text-align: center;
    margin-top: 40px;
}

/* Responsive tweak */
@media (max-width: 600px) {
    .gallery-item {
        height: 250px;
    }
}












/* --- Professional Footer Styles --- */
.site-footer {
    background-color: var(--bg-dark, #0d0d0d); /* Use your dark background variable */
    color: var(--text-light, #ffffff);
    padding-top: 0; /* CTA creates its own padding */
    font-family: 'Inter', sans-serif;
}

/* 1. The Call to Action Bar */
.footer-cta {
    background-color: var(--primary, #007aff); /* Your brand color */
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-content h2 { 
    margin: 0; font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; 
}

.footer-btn {
    padding: 14px 28px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}






/* --- Professional Footer Structure --- */

/* 1. The Call to Action Bar (The "Ready for Maui Shine" section) */
.footer-cta {
    background-color: var(--primary, #007aff);
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-content h2 { 
    margin: 0; 
    font-size: 1.8rem; 
    font-weight: 800; 
    letter-spacing: -0.5px;
    color: #fff;
}

.footer-btn {
    padding: 14px 28px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* 2. Main Footer Area */
.footer-main {
    background-color: #0d0d0d; /* Deep professional black */
    padding: 80px 5% 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Brand Section & NEW Social Icons */
.f-logo {
    font-size: 2.2rem;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    display: block;
    margin-bottom: 20px;
}

.f-logo span { color: var(--primary, #007aff); }

.footer-brand p {
    color: var(--slate, #a1a1aa);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 25px; /* Space for icons below */
}

/* NEW: Social Icon Container & Styling */
.social-container {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08); 
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary, #007aff);
    border-color: var(--primary, #007aff);
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 122, 255, 0.4);
    color: #fff;
}

/* Navigation & Links */
.footer-nav h3, .footer-contact h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--primary, #007aff);
}

.footer-nav ul { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 15px; }

.footer-nav a {
    text-decoration: none;
    color: var(--slate, #a1a1aa);
    transition: 0.3s;
}

.footer-nav a:hover { 
    color: #fff; 
    padding-left: 5px; 
}

/* Contact & Hours */
.c-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.c-link:hover {
    color: var(--primary, #007aff);
}

.f-hours {
    margin-top: 25px;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    color: var(--slate, #a1a1aa);
    gap: 5px;
}

/* 3. Legal Bar */
.footer-legal {
    background: #050505;
    padding: 25px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #555;
}

.legal-links a { 
    margin-left: 20px; 
    color: #555; 
    text-decoration: none; 
    transition: 0.3s;
}

.legal-links a:hover { color: #888; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        text-align: center;
    }
    
    .footer-cta { text-align: center; justify-content: center; }
    
    .footer-brand p, .social-container, .f-hours {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .about-flex {
        grid-template-columns: 1fr;
        flex-direction: column-reverse;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .nav-menu {
        display: none; /* Simplificado para el ejemplo */
    }
}

/* Contenedor principal del enlace */
a[href*="maps"] {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

a[href*="maps"]:hover {
    transform: translateY(-3px);
}

/* Tarjeta de Review */
.home-banner-left-review {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Fondo sutil si está sobre oscuro */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 50px; /* Estilo píldora */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    gap: 12px;
}

/* Si el fondo del sitio es blanco, usa este estilo en su lugar: */
.home-banner-left-review {
    background: #ffffff;
    border: 1px solid #f0f0f0;
}

/* Lado izquierdo: La imagen/logotipo */
.home-banner-left-review-left {
    display: flex;
    align-items: center;
}

.home-banner-left-review-left img {
    width: 28px; /* Ajuste para que no sea intrusivo */
    height: auto;
    border-radius: 50%;
}

/* Lado derecho: Textos */
.home-banner-left-review-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* El puntaje (4.9/5) */
.home-banner-left-review-right span:first-child {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
    line-height: 1.1;
}

/* El contador de reviews (1856+) */
.home-banner-left-review-right span:last-child {
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Efecto Hover en los textos */
.home-banner-left-review:hover .home-banner-left-review-right span:first-child {
    color: var(--accent); /* Cambia al azul de tu marca */
}