/* =============================================
   GAC LANDSCAPING LLC — MAIN STYLESHEET
   Paleta: Verde Profundo + Dorado Premium
   ============================================= */

:root {
    --gac-green:        #1B5E20;
    --gac-green-light:  #2E7D32;
    --gac-green-mid:    #388E3C;
    --gac-green-bright: #43A047;
    --gac-green-pale:   #E8F5E9;

    --gac-gold:         #F9A825;
    --gac-gold-light:   #FFD54F;
    --gac-gold-dark:    #F57F17;
    --gac-gold-pale:    #FFF8E1;

    --gac-dark:         #0A1A0B;
    --gac-dark-2:       #112211;
    --gac-gray:         #F4F6F4;
    --gac-text:         #1A2E1B;
    --gac-text-muted:   #5A6B5B;
    --gac-white:        #FFFFFF;

    /* Colores exactos del logo */
    --gac-logo-green:       #5ec922;
    --gac-logo-green-light: #8cd63c;
    --gac-logo-green-dark:  #1e6b00;
    --gac-logo-green-mid:   #2a7a00;

    --nav-height:    70px;
    --drawer-width:  300px;
    --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:        14px;
    --radius-sm:     8px;
    --shadow-sm:     0 2px 14px rgba(0,0,0,0.08);
    --shadow-md:     0 8px 32px rgba(0,0,0,0.14);
    --shadow-lg:     0 20px 60px rgba(0,0,0,0.20);
    --shadow-green:  0 8px 28px rgba(27,94,32,0.35);
    --shadow-gold:   0 8px 28px rgba(249,168,37,0.40);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--gac-text);
    background: #EDF2ED;
    padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, .display-1, .display-2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* ===== UTILITIES ===== */
.text-green       { color: var(--gac-green) !important; }
.text-green-light { color: var(--gac-green-bright) !important; }
.text-gold        { color: var(--gac-gold) !important; }
.bg-green         { background-color: var(--gac-green) !important; }
.fw-semibold      { font-weight: 600; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes gacFadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes gacZoomIn  { from { opacity:0; transform:scale(0.88); } to { opacity:1; transform:scale(1); } }
@keyframes shimmerGold { 0%,100% { opacity:.7; } 50% { opacity:1; } }

.fade-in-up { animation: fadeInUp 0.65s ease both; }
.delay-1 { animation-delay:.1s; } .delay-2 { animation-delay:.2s; }
.delay-3 { animation-delay:.3s; } .delay-4 { animation-delay:.4s; }
.delay-5 { animation-delay:.5s; }


/* =============================================
   NAVBAR
   ============================================= */
.gac-topnav {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: #0d1f0e;
    z-index: 1000;
    display: flex; align-items: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.30);
    transition: background var(--transition), box-shadow var(--transition);
}
.gac-topnav.scrolled {
    background: #080808;
    box-shadow: 0 6px 32px rgba(0,0,0,0.50);
}

/* Línea dorada inferior al hacer scroll */
.gac-topnav.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gac-logo-green), rgba(94,201,34,0.05));
}

/* ===== LOGO IMAGEN (desktop) ===== */
.gac-logo      { height: 52px; width: auto; object-fit: contain; filter: brightness(1.1); }
.gac-logo-link { display: inline-flex; align-items: center; text-decoration: none; }

/* =============================================
   TIPOGRAFÍA DE MARCA — estilo logo
   (usada en móvil navbar + drawer)
   ============================================= */
.gac-brand-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

/* GAC — verde brillante con borde blanco y sombra verde oscuro */
.gac-brand-gac {
    font-family: 'Fredoka One', cursive;
    font-size: 1.55rem;
    color: var(--gac-logo-green);
    -webkit-text-stroke: 1.8px #ffffff;
    paint-order: stroke fill;
    text-shadow:
        0   0   0   var(--gac-logo-green-dark),
        2px 2px 0px var(--gac-logo-green-dark),
        3px 3px 0px rgba(0,0,0,0.30);
    letter-spacing: 0.01em;
    line-height: 1;
}

/* Landscaping — verde más claro */
.gac-brand-land {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--gac-logo-green-light);
    -webkit-text-stroke: 1.1px var(--gac-logo-green-mid);
    paint-order: stroke fill;
    text-shadow:
        1.5px 1.5px 0px var(--gac-logo-green-dark),
        2px   2px   0px rgba(0,0,0,0.20);
    letter-spacing: 0.01em;
    line-height: 1;
}

/* LLC — mismo estilo que Landscaping */
.gac-brand-llc {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--gac-logo-green-light);
    -webkit-text-stroke: 1.1px var(--gac-logo-green-mid);
    paint-order: stroke fill;
    text-shadow:
        1.5px 1.5px 0px var(--gac-logo-green-dark),
        2px   2px   0px rgba(0,0,0,0.20);
    line-height: 1;
}

/* Licensed & Insured — subtítulo pequeño */
.gac-brand-insured {
    font-family: 'Fredoka One', cursive;
    font-size: 0.58rem;
    color: var(--gac-logo-green-dark);
    letter-spacing: 0.06em;
    margin-top: 2px;
    display: block;
    opacity: 0.85;
}

/* ===== HAMBURGER MODERNO ===== */
.gac-hamburger {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    width: 42px; height: 42px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px; cursor: pointer; padding: 0;
    transition: background var(--transition);
}
.gac-hamburger:hover {
    background: rgba(255,255,255,0.14);
}
.gac-hamburger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--gac-white);
    border-radius: 2px;
    transition: all var(--transition);
}
.gac-ham-accent {
    width: 12px !important;
    background: var(--gac-logo-green) !important;
}
.gac-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gac-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gac-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 18px !important; background: var(--gac-white) !important; }

/* ===== DESKTOP NAV LINKS ===== */
.gac-desktop-nav { display: flex; gap: 0.15rem; align-items: center; }
.gac-desktop-nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-weight: 500; font-size: 0.9rem;
    padding: 0.45rem 0.85rem; border-radius: 6px;
    position: relative;
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.01em;
}
.gac-desktop-nav a::after {
    content: ''; position: absolute;
    bottom: 2px; left: 50%; right: 50%;
    height: 2px; background: var(--gac-logo-green);
    transition: left var(--transition), right var(--transition);
    border-radius: 2px;
}
.gac-desktop-nav a:hover,
.gac-desktop-nav a.active {
    color: var(--gac-logo-green);
    background: rgba(94,201,34,0.08);
}
.gac-desktop-nav a.active::after,
.gac-desktop-nav a:hover::after { left: 12px; right: 12px; }

/* ===== CTA BUTTON ===== */
.gac-cta-btn {
    display: inline-flex; align-items: center;
    background: var(--gac-logo-green);
    color: #fff !important; text-decoration: none;
    padding: 0.5rem 1.25rem; border-radius: 50px;
    font-weight: 700; font-size: 0.875rem; letter-spacing: 0.02em;
    transition: all var(--transition);
    border: 2px solid var(--gac-logo-green-mid);
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.gac-cta-btn:hover {
    background: #6fd42e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(94,201,34,0.40);
    color: #fff !important;
}
/* Al hacer scroll el botón cambia a dorado */
.gac-topnav.scrolled .gac-cta-btn {
    background: var(--gac-gold);
    border-color: var(--gac-gold-dark);
    color: var(--gac-dark) !important;
    text-shadow: none;
}
.gac-topnav.scrolled .gac-cta-btn:hover {
    background: var(--gac-gold-light);
    box-shadow: 0 8px 24px rgba(249,168,37,0.45);
    color: var(--gac-dark) !important;
}


/* =============================================
   SIDEBAR DRAWER
   ============================================= */
.gac-drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 1100; opacity: 0; pointer-events: none;
    transition: opacity var(--transition);
}
.gac-drawer-overlay.active { opacity: 1; pointer-events: all; }

.gac-drawer {
    position: fixed; top: 0; right: 0;
    width: var(--drawer-width); height: 100%;
    background: #0A1A0B;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex; flex-direction: column; overflow-y: auto;
}
.gac-drawer.open { transform: translateX(0); }

/* Header del drawer */
.gac-drawer-header {
    display: flex; align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 1.25rem 1.1rem;
    border-bottom: 1px solid rgba(94,201,34,0.15);
    background: #0d1f0e;
    position: relative;
}
.gac-drawer-brand {
    display: flex; flex-direction: column; gap: 6px;
}

/* Badge "Licensed & Insured" en el drawer */
.gac-drawer-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(94,201,34,0.10);
    border: 1px solid rgba(94,201,34,0.25);
    padding: 3px 10px; border-radius: 50px;
    width: fit-content;
}
.gac-drawer-badge-dot {
    width: 6px; height: 6px;
    background: var(--gac-logo-green);
    border-radius: 50%;
}
.gac-drawer-badge span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem; font-weight: 600;
    color: var(--gac-logo-green);
    letter-spacing: 0.08em; text-transform: uppercase;
}

.gac-drawer-close {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--gac-white);
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 0.95rem;
    transition: background var(--transition);
    flex-shrink: 0;
}
.gac-drawer-close:hover {
    background: var(--gac-logo-green);
    color: #fff;
    border-color: var(--gac-logo-green-mid);
}

/* Nav links del drawer */
.gac-drawer-nav { flex: 1; padding: 0.5rem 0; display: flex; flex-direction: column; }
.gac-drawer-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 0.85rem 1.25rem;
    color: rgba(255,255,255,0.60); text-decoration: none;
    font-weight: 500; font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all var(--transition);
    border-left: 3px solid transparent;
    font-family: 'DM Sans', sans-serif;
}
.gac-drawer-nav a:hover,
.gac-drawer-nav a.active {
    color: var(--gac-logo-green);
    background: rgba(94,201,34,0.07);
    border-left-color: var(--gac-logo-green);
    padding-left: 1.5rem;
}

/* Ícono dentro de cada link */
.gac-drawer-nav-icon {
    width: 30px; height: 30px;
    border-radius: 7px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
    transition: background var(--transition);
}
.gac-drawer-nav a:hover .gac-drawer-nav-icon,
.gac-drawer-nav a.active .gac-drawer-nav-icon {
    background: rgba(94,201,34,0.15);
    color: var(--gac-logo-green);
}

/* Footer del drawer */
.gac-drawer-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(94,201,34,0.12);
    text-align: center;
}
.gac-drawer-cta {
    display: block;
    background: var(--gac-logo-green);
    color: #fff !important; text-decoration: none;
    padding: 0.75rem 1.5rem; border-radius: 50px;
    font-weight: 700; font-size: 0.95rem;
    transition: all var(--transition); margin-bottom: 0.75rem;
    border: 2px solid var(--gac-logo-green-mid);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.gac-drawer-cta:hover {
    background: #6fd42e;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(94,201,34,0.35);
}
.gac-drawer-tagline {
    color: rgba(255,255,255,0.28);
    font-size: 0.75rem; margin: 0;
    letter-spacing: 0.06em; text-transform: uppercase;
}


/* =============================================
   SHARED COMPONENTS
   ============================================= */
.gac-btn-primary {
    background: linear-gradient(135deg, var(--gac-gold), var(--gac-gold-dark));
    color: var(--gac-dark) !important; text-decoration: none;
    padding: 0.85rem 2rem; border-radius: 50px;
    font-weight: 700; font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-gold);
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: none; cursor: pointer;
}
.gac-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(249,168,37,0.55);
    background: linear-gradient(135deg, var(--gac-gold-light), var(--gac-gold));
}
.gac-btn-outline {
    background: transparent; color: var(--gac-white) !important;
    text-decoration: none; padding: 0.85rem 2rem; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    transition: all var(--transition);
    border: 2px solid rgba(255,255,255,0.5);
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.gac-btn-outline:hover {
    border-color: var(--gac-gold);
    color: var(--gac-gold) !important;
    background: rgba(249,168,37,0.08);
}

/* =============================================
   HERO UNIFICADO
   ============================================= */
.gac-page-hero,
.gac-about-hero,
.gac-services-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
                url('../../img/img02.jpeg') center center / cover no-repeat;
    padding: 5rem 0 4rem;
    text-align: center;
    color: var(--gac-white);
    position: relative;
    overflow: hidden;
}
.gac-page-hero::before,
.gac-about-hero::before,
.gac-services-hero::before {
    content: ''; position: absolute; top: -50%; left: 50%;
    transform: translateX(-50%); width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(249,168,37,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.gac-about-hero-inner,
.gac-services-hero-inner { position: relative; z-index: 1; }

.gac-page-hero h1,
.gac-about-hero h1,
.gac-services-hero h1 { font-size: clamp(2.5rem,5vw,4rem); margin-bottom: 0.75rem; }

.gac-page-hero p,
.gac-about-hero p,
.gac-services-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* Breadcrumb */
.gac-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.85rem; }
.gac-breadcrumb a { color: var(--gac-gold); text-decoration: none; }
.gac-breadcrumb a:hover { text-decoration: underline; }
.gac-breadcrumb span { color: rgba(255,255,255,0.4); }

/* Secciones */
.gac-section       { padding: 5rem 0; }
.gac-section-gray  { background: #E8F0E8; }
.gac-section-dark  { background: var(--gac-dark); color: var(--gac-white); }
.gac-section-green { background: var(--gac-green); color: var(--gac-white); }

.gac-section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--gac-green-bright); font-weight: 700; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.75rem;
}
.gac-section-tag::before {
    content: ''; display: inline-block; width: 22px; height: 2px;
    background: var(--gac-gold); border-radius: 2px;
}
.gac-section-title    { font-size: clamp(1.75rem,3.5vw,2.6rem); margin-bottom: 1rem; line-height: 1.2; }
.gac-section-subtitle { color: var(--gac-text-muted); font-size: 1.05rem; max-width: 540px; line-height: 1.7; }

.gac-cta-banner {
    background: linear-gradient(135deg, var(--gac-green) 0%, var(--gac-dark) 100%);
    padding: 4rem 0; text-align: center; color: var(--gac-white);
    position: relative; overflow: hidden;
}
.gac-cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(249,168,37,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.gac-cta-banner h2 { font-size: clamp(1.75rem,3vw,2.5rem); margin-bottom: 0.75rem; }
.gac-cta-banner p  { opacity: 0.85; max-width: 500px; margin: 0 auto 2rem; }

.gac-scroll-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 44px; height: 44px;
    background: var(--gac-gold); color: var(--gac-dark);
    border-radius: 50%; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; z-index: 900; font-weight: 700;
    opacity: 0; transform: translateY(20px);
    transition: all var(--transition); box-shadow: var(--shadow-gold);
}
.gac-scroll-top.visible { opacity: 1; transform: translateY(0); }
.gac-scroll-top:hover   { background: var(--gac-gold-light); transform: translateY(-3px); }

.gac-check-list { list-style: none; padding: 0; }
.gac-check-list li { display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.4rem 0; font-size: 0.95rem; color: var(--gac-text); }
.gac-check-list li i { color: var(--gac-gold-dark); margin-top: 0.1rem; flex-shrink: 0; font-size: 1.1rem; }

.gac-badge {
    background: rgba(249,168,37,0.15);
    border: 1px solid rgba(249,168,37,0.4);
    color: var(--gac-gold-dark); padding: 0.3rem 0.85rem;
    border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.gac-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(249,168,37,0.15);
    border: 1px solid rgba(249,168,37,0.5);
    color: var(--gac-gold);
    padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.gac-svc-row-accent { width: 44px; height: 3px; background: var(--gac-gold); margin-bottom: 1.25rem; border-radius: 2px; }


/* =============================================
   FOOTER
   ============================================= */
.gac-footer {
    background: var(--gac-dark);
    color: rgba(255,255,255,0.72);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--gac-gold);
}
.gac-footer-logo    { height: 56px; width: auto; }
.gac-footer-desc    { font-size: 0.88rem; line-height: 1.7; opacity: 0.62; }
.gac-footer-heading {
    color: var(--gac-gold); font-family: 'DM Sans', sans-serif;
    font-weight: 700; font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.gac-footer-links li { margin-bottom: 0.5rem; }
.gac-footer-links a { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 0.9rem; transition: color var(--transition); }
.gac-footer-links a:hover { color: var(--gac-gold); }
.gac-footer-contact li { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 0.65rem; font-size: 0.88rem; }
.gac-footer-contact i { color: var(--gac-gold); margin-top: 0.15rem; }
.gac-footer-contact a { color: rgba(255,255,255,0.62); text-decoration: none; }
.gac-footer-contact a:hover { color: var(--gac-gold); }
.gac-social-links { display: flex; gap: 0.6rem; }
.gac-social-links a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.62);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; text-decoration: none; transition: all var(--transition);
    border: 1px solid rgba(249,168,37,0.2);
}
.gac-social-links a:hover { background: var(--gac-gold); color: var(--gac-dark); transform: translateY(-2px); }
.gac-footer-divider { border-color: rgba(249,168,37,0.15); margin: 2.5rem 0 1.5rem; }
.gac-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.38); }


/* =============================================
   HOME — HERO SLIDER
   ============================================= */
.gac-hero-slider { position: relative; width: 100%; overflow: hidden; }
.gac-hero-slider .carousel-item img {
    width: 100%;
    height: calc(100vh - var(--nav-height));
    object-fit: cover; object-position: center; display: block;
}
.carousel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(5,20,5,0.90) 0%,
        rgba(10,35,10,0.65) 45%,
        rgba(10,35,10,0.20) 100%
    );
    pointer-events: none; z-index: 1;
}
.carousel-caption-custom {
    position: absolute; top: 50%; left: 5%;
    transform: translateY(-50%);
    width: 90%; color: #fff; z-index: 10;
}
.carousel-content-row {
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem; width: 100%;
}
.carousel-text { flex: 1; min-width: 0; text-align: left; }
.carousel-logo {
    flex-shrink: 0; display: flex; align-items: center;
    justify-content: center; padding-right: 2rem;
}
.carousel-logo img {
    max-height: 150px; width: auto; max-width: 260px;
    object-fit: contain;
    filter: drop-shadow(0 2px 20px rgba(0,0,0,0.9));
}
.carousel-caption-custom .gac-hero-badge { justify-content: flex-start; }
.carousel-caption-custom h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem,3vw,2.8rem);
    font-weight: 800; color: #fff !important;
    line-height: 1.2; margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.carousel-caption-custom h1 span { color: var(--gac-gold) !important; }
.carousel-caption-custom p {
    font-size: clamp(0.88rem,1.4vw,1rem);
    color: rgba(255,255,255,0.92) !important;
    margin-bottom: 1.5rem; line-height: 1.65;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    max-width: 480px;
}
.carousel-caption-custom .gac-hero-btns { justify-content: flex-start; flex-wrap: wrap; gap: 0.75rem; }
.gac-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.carousel-indicators {
    margin-bottom: 1.5rem; z-index: 20;
    justify-content: flex-start; padding-left: 5%;
}
.carousel-indicators button {
    width: 28px; height: 3px; border-radius: 3px;
    background-color: rgba(255,255,255,0.35);
    border: none; opacity: 1; margin: 0 3px;
    transition: all var(--transition);
}
.carousel-indicators button.active { background-color: var(--gac-gold); width: 44px; }
.carousel-control-prev,
.carousel-control-next { width: 4%; z-index: 20; }
.gac-hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(249,168,37,0.25); }
.gac-stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gac-gold); line-height: 1; }
.gac-stat-label  { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; }


/* =============================================
   HOME — SERVICE CARDS
   ============================================= */
.gac-service-card {
    background: var(--gac-white); border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition); height: 100%;
    position: relative; overflow: hidden;
}
.gac-service-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gac-green), var(--gac-gold));
    transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.gac-service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.gac-service-card:hover::after { transform: scaleX(1); }
.gac-service-img { width: 100%; height: 210px; overflow: hidden; }
.gac-service-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.65s ease; }
.gac-service-card:hover .gac-service-img img { transform: scale(1.08); }
.gac-service-body { padding: 1.5rem; }
.gac-service-body h4 { font-size: 1.15rem; margin-bottom: 0.55rem; color: var(--gac-text); }
.gac-service-body p  { color: var(--gac-text-muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }
.gac-service-icon {
    width: 60px; height: 60px; border-radius: 14px;
    background: var(--gac-gold-pale); display: flex;
    align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--gac-gold-dark);
    margin-bottom: 1.25rem; transition: all var(--transition);
}
.gac-service-card:hover .gac-service-icon { background: var(--gac-gold); color: var(--gac-dark); transform: scale(1.1) rotate(-5deg); }


/* =============================================
   HOME — TESTIMONIALS
   ============================================= */
.gac-testimonial-card {
    background: var(--gac-white); border-radius: var(--radius);
    padding: 2rem; border: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition); height: 100%; position: relative;
    border-top: 3px solid var(--gac-gold);
}
.gac-testimonial-card::before {
    content: '"'; position: absolute; top: 1rem; right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem; line-height: 1; color: var(--gac-gold-pale);
    font-weight: 700; pointer-events: none;
}
.gac-testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.gac-stars { color: var(--gac-gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.gac-testimonial-text { color: var(--gac-text); font-size: 0.95rem; line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.gac-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.gac-author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gac-green), var(--gac-gold));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--gac-white); font-size: 1rem; flex-shrink: 0;
}
.gac-author-name     { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.1rem; }
.gac-author-location { color: var(--gac-text-muted); font-size: 0.8rem; }


/* =============================================
   HOME — VIDEO
   ============================================= */
.gac-home-video-wrapper {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gac-gold);
}
.gac-home-video { width: 100%; height: 600px; object-fit: cover; display: block; }
.gac-home-cta      { background: #EDF2ED; padding-top: 3rem; padding-bottom: 4rem; }
.gac-home-cta-logo { max-width: 420px; width: 100%; height: auto; object-fit: contain; }


/* =============================================
   ABOUT US
   ============================================= */
.gac-about-photo { position: relative; border-radius: var(--radius); overflow: hidden; height: 520px; }
.gac-about-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
    transition: transform 0.85s ease; border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.gac-about-photo:hover img { transform: scale(1.04); }
.gac-about-photo-badge {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    background: var(--gac-gold); color: var(--gac-dark);
    padding: 1rem 1.5rem; border-radius: var(--radius);
    box-shadow: var(--shadow-gold); text-align: center; z-index: 2;
}
.gac-about-photo-badge strong { display: block; font-size: 1.75rem; font-family: 'Playfair Display', serif; }
.gac-about-photo-badge span   { font-size: 0.8rem; opacity: 0.85; font-weight: 600; }
.gac-about-cta      { background: #EDF2ED; padding-top: 0; }
.gac-about-cta-logo { max-width: 420px; width: 100%; height: auto; object-fit: contain; }


/* =============================================
   SERVICES — GRID
   ============================================= */
.gac-svc-grid-section { padding: 5rem 0 6rem; background: #E8F0E8; }
.gac-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }

.gac-svc-card {
    background: var(--gac-white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
}
.gac-svc-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gac-green), var(--gac-gold));
    transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.gac-svc-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.14); border-color: rgba(249,168,37,0.3); }
.gac-svc-card:hover::after { transform: scaleX(1); }
.gac-svc-card-img { width: 100%; height: 230px; overflow: hidden; position: relative; }
.gac-svc-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,26,10,0.55) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.4s ease;
}
.gac-svc-card:hover .gac-svc-card-img::after { opacity: 1; }
.gac-svc-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(.22,.68,0,1.2); }
.gac-svc-card:hover .gac-svc-card-img img { transform: scale(1.08); }
.gac-svc-card-num {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--gac-gold); color: var(--gac-dark);
    font-size: 0.68rem; font-weight: 800;
    letter-spacing: 0.08em; padding: 0.25rem 0.65rem;
    border-radius: 50px; z-index: 2;
}
.gac-svc-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.gac-svc-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--gac-text); margin-bottom: 0.5rem; transition: color 0.3s ease; }
.gac-svc-card:hover .gac-svc-card-body h3 { color: var(--gac-green); }
.gac-svc-card-body p { color: var(--gac-text-muted); font-size: 0.875rem; line-height: 1.7; margin: 0; }
.gac-services-cta      { background: #EDF2ED; padding-top: 3rem; padding-bottom: 4rem; }
.gac-services-cta-logo { max-width: 420px; width: 100%; height: auto; object-fit: contain; }


/* =============================================
   GALLERY
   ============================================= */
.gac-gallery-section { background: #EDF2ED; padding-block: 5rem; overflow: hidden; }
.gac-gallery-section h2, .gac-gallery-section p { color: var(--gac-dark); }
.gac-gallery-section .text-muted { color: rgba(0,0,0,0.45) !important; }
.gac-gallery-wrapper { position: relative; width: 100%; }
.gac-gallery-track { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; padding: 0.75rem 1rem 1rem; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; -webkit-overflow-scrolling: touch; }
.gac-gallery-track::-webkit-scrollbar { display: none; }
.gac-gallery-track.is-dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
.gac-gallery-slide { flex: 0 0 320px; height: 380px; border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 10px 35px rgba(0,0,0,0.42); transition: transform 0.35s cubic-bezier(.22,.68,0,1.2); }
.gac-gallery-slide:hover { transform: translateY(-8px) scale(1.025); }
.gac-gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; pointer-events: none; display: block; }
.gac-gallery-slide:hover img { transform: scale(1.09); }
.gac-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,26,10,0.78) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: center; justify-content: center; }
.gac-gallery-slide:hover .gac-gallery-overlay { opacity: 1; }
.gac-gallery-zoom { background: var(--gac-gold); color: var(--gac-dark); width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; opacity: 0; transform: scale(0.6); transition: all 0.3s cubic-bezier(.22,.68,0,1.4); }
.gac-gallery-slide:hover .gac-gallery-zoom { opacity: 1; transform: scale(1); }
.gac-gallery-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--gac-gold); color: var(--gac-dark); border: none; width: 46px; height: 46px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); transition: background 0.25s ease, transform 0.25s ease; font-weight: 700; }
.gac-gallery-btn:hover { background: var(--gac-gold-light); transform: translateY(-50%) scale(1.1); }
.gac-gallery-prev { left: 0.6rem; } .gac-gallery-next { right: 0.6rem; }
.gac-gallery-fade-left, .gac-gallery-fade-right { display: none; }
.gac-portfolio-cta      { background: #EDF2ED; padding-top: 4rem; padding-bottom: 4rem; }
.gac-portfolio-cta-logo { max-width: 420px; width: 100%; height: auto; object-fit: contain; }


/* =============================================
   LIGHTBOX
   ============================================= */
.gac-lightbox { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
.gac-lightbox.is-active { display: flex; }
.gac-lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.93); backdrop-filter: blur(6px); animation: gacFadeIn 0.25s ease; }
.gac-lightbox-content { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; max-width: 92vw; max-height: 92vh; animation: gacZoomIn 0.3s cubic-bezier(.22,.68,0,1.2); }
.gac-lightbox-img-wrap { display: flex; align-items: center; justify-content: center; }
.gac-lightbox-img { max-width: 78vw; max-height: 84vh; border-radius: 12px; object-fit: contain; box-shadow: 0 25px 70px rgba(0,0,0,0.6); display: block; }
.gac-lightbox-close { position: absolute; top: -44px; right: 0; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.gac-lightbox-close:hover { background: var(--gac-gold); color: var(--gac-dark); transform: scale(1.1); }
.gac-lightbox-nav { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s ease; }
.gac-lightbox-nav:hover { background: var(--gac-gold); border-color: var(--gac-gold); color: var(--gac-dark); transform: scale(1.1); }
.gac-lightbox-counter { position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.8rem; white-space: nowrap; }


/* =============================================
   SERVICE AREAS
   ============================================= */
.gac-area-card { background: var(--gac-white); border-radius: var(--radius); padding: 1.5rem; border: 2px solid var(--gac-gold-pale); text-align: center; transition: all var(--transition); cursor: default; }
.gac-area-card:hover { border-color: var(--gac-gold); background: var(--gac-gold-pale); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.gac-area-card i  { font-size: 1.75rem; color: var(--gac-green); margin-bottom: 0.5rem; display: block; }
.gac-area-card h5 { font-size: 1rem; margin: 0; }
.gac-map-wrapper  { border-radius: var(--radius); overflow: hidden; border: 3px solid var(--gac-gold); box-shadow: var(--shadow-gold); }


/* =============================================
   TESTIMONIALS
   ============================================= */
.gac-testimonials-cta      { background: #EDF2ED; padding-top: 0; padding-bottom: 4rem; }
.gac-testimonials-cta-logo { max-width: 420px; width: 100%; height: auto; object-fit: contain; }


/* =============================================
   CONTACT
   ============================================= */
.gac-form-card { background: var(--gac-white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-md); border-top: 3px solid var(--gac-gold); }
.gac-form-control { border: 1.5px solid #D4E0D4; border-radius: var(--radius-sm); padding: 0.75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; transition: border-color var(--transition), box-shadow var(--transition); width: 100%; background: #FAFCFA; }
.gac-form-control:focus { outline: none; border-color: var(--gac-gold); box-shadow: 0 0 0 3px rgba(249,168,37,0.15); background: #fff; }
.gac-form-label { font-weight: 600; font-size: 0.875rem; color: var(--gac-text); margin-bottom: 0.4rem; display: block; }


/* =============================================
   BOTONES FLOTANTES — REDES SOCIALES
   ============================================= */
.gac-float-social {
    position: fixed; right: 1.25rem; bottom: 5rem;
    display: flex; flex-direction: column; gap: 0.6rem;
    z-index: 999;
    animation: fadeInUp 0.6s ease 0.5s both;
}
.gac-float-btn {
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff; text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.gac-float-btn:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.35); color: #fff; }
.gac-float-btn::before {
    content: attr(aria-label); position: absolute; right: 54px;
    background: var(--gac-dark); color: var(--gac-white);
    font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 600;
    padding: 0.3rem 0.7rem; border-radius: 6px; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.gac-float-btn:hover::before { opacity: 1; }
.gac-float-fb { background: #1877F2; }
.gac-float-fb:hover { background: #0d6ae0; }
.gac-float-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.gac-float-ig:hover { opacity: 0.9; }
.gac-float-wa { background: #25D366; }
.gac-float-wa:hover { background: #1ebe5a; }


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .gac-hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .gac-form-card  { padding: 1.5rem; }
    .gac-scroll-top { bottom: 1.25rem; right: 1.25rem; }
}
@media (max-width: 991px) {
    .carousel-logo img { max-height: 120px; max-width: 200px; }
    .gac-about-photo { height: 420px; }
    .gac-svc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 767px) {
    .gac-hero-slider .carousel-item img { height: 620px; }
    .carousel-caption-custom { left: 5%; width: 90%; top: 62%; }
    .carousel-logo { display: none; }
    .carousel-content-row { flex-direction: column; }
    .carousel-caption-custom h1 { font-size: clamp(1.3rem,5vw,1.8rem); }
    .carousel-caption-custom p  { font-size: 0.85rem; }
    .carousel-caption-custom .gac-hero-btns { flex-direction: column; align-items: flex-start; }
    .carousel-control-prev, .carousel-control-next { display: none; }
    .carousel-indicators { padding-left: 5%; }
    .gac-home-video { height: 480px; }
    .gac-home-cta-logo, .gac-about-cta-logo, .gac-services-cta-logo,
    .gac-testimonials-cta-logo, .gac-portfolio-cta-logo { max-width: 280px; }
    .gac-about-photo { height: 300px; margin-bottom: 1.5rem; }
    .gac-about-photo-badge { right: 0.75rem; bottom: 0.75rem; padding: 0.6rem 1rem; }
    .gac-about-photo-badge strong { font-size: 1.2rem; }
    .gac-about-photo-badge span   { font-size: 0.72rem; }
    .gac-float-social { right: 0.75rem; bottom: 4.5rem; gap: 0.5rem; }
    .gac-float-btn { width: 42px; height: 42px; font-size: 1.1rem; }
    .gac-float-btn::before { display: none; }
}
@media (max-width: 575px) {
    .gac-svc-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .gac-svc-card-img { height: 200px; }
}
@media (max-width: 768px) {
    .gac-gallery-slide { flex: 0 0 240px; height: 390px; }
    .gac-gallery-track { padding: 0.75rem 1rem 1rem; }
    .gac-lightbox-img  { max-width: 95vw; max-height: 78vh; }
    .gac-lightbox-nav  { width: 38px; height: 38px; font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .gac-gallery-slide { flex: 0 0 300px; height: 480px; }
}