/* Variables globales */
:root {
    --primary-color: #2d5a27;      /* Verde bosque oscuro */
    --secondary-color: #1e4020;    /* Verde bosque más oscuro */
    --accent-color: #8b4513;       /* Marrón tierra */
    --light-accent: #a67c52;       /* Marrón claro */
    --dark-color: #2c3e50;         /* Azul oscuro para contraste */
    --light-color: #f5f5f0;        /* Beige claro */
    --text-color: #2c3e50;         /* Color de texto oscuro */
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --gradient-overlay: linear-gradient(rgba(45, 90, 39, 0.8), rgba(30, 64, 32, 0.9));
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #204020 !important;
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo a {
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

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

.nav-menu a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--light-accent) !important;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff !important;
    transition: all 0.3s ease;
}

/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-menu .arrow {
    margin-left: 0.4em;
    font-size: 0.8em;
}

.nav-phone a {
    display: flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-phone a:hover {
    background-color: var(--light-accent);
    color: var(--white) !important;
}

.nav-phone .fa-phone {
    margin-right: 8px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    background: #204020 !important;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    padding: 1.5rem 0.5rem;
    z-index: 2000;
    flex-direction: column;
    align-items: stretch;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    padding: 1rem 2.5rem;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.5px;
}

.dropdown-menu li:hover {
    background: #163015 !important;
    color: #a67c52 !important;
}

/* Responsive: Dropdown on mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0 0 16px 16px;
        padding: 0.5rem 0;
        background: #204020 !important;
    }
    .dropdown-menu li {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        color: #fff !important;
        list-style: none;
        background: transparent !important;
    }
    .dropdown-menu li:hover {
        background: #163015 !important;
        color: #a67c52 !important;
    }
}

/* Hero Section */
.hero {
    background: url('../img/services/iniciohero.jpg') center/cover no-repeat;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding-top: 120px;
}
.hero-content {
    background-color: rgba(47, 79, 79, 0.7); /* Dark Slate Gray with 70% opacity */
    padding: 2rem;
    border-radius: 1rem;
    max-width: 800px; /* Limit width for better readability on large screens */
    margin: 0 auto; /* Center the content block */
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ff9800;
}
.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #fff;
}
.hero-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background: #ff9800;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    text-decoration: none;
    transition: background 0.2s;
}
.hero-btn:hover {
    background: #ffa726;
}

@media (max-width: 600px) {
    .hero-title { font-size: 2rem; }
    .hero { min-height: 320px; padding-top: 90px; }
}

/* Features Bar */
.features-bar {
    padding: 1.5rem 0;
}

.features-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    margin: 0 10px;
    flex-shrink: 0;
}

.feature-item i {
    font-size: 1.3rem;
    margin-right: 10px;
}

/* Features Bar Section */
@media (max-width: 768px) {
    .features-bar {
        padding: 0.75rem 0;
    }
    .features-bar .container {
        flex-wrap: nowrap !important; /* Force no wrapping */
        justify-content: space-around;
        padding: 0 5px;
    }
    .feature-item {
        flex: 1; /* Force items to share space equally */
        font-size: 10px;
        flex-direction: column;
        text-align: center;
        padding: 0 2px;
        margin: 0;
    }

    .feature-item i {
        margin-right: 0;
        margin-bottom: 5px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .features-bar .container {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        padding: 0 0.5rem;
    }
    .feature-item {
        font-size: 0.7rem;
        padding: 0.25rem;
    }
    .feature-item span {
        white-space: nowrap;
    }
    .feature-item i {
        font-size: 1rem;
        margin-right: 5px;
    }
}

/* Servicios */
.services {
    padding: 4rem 0;
    background-color: #fff;
    text-align: center;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Nosotros */
.about {
    padding: 5rem 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features-list i {
    color: var(--primary-color);
}

.about-social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
    align-items: center;
}

.about-social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    padding: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    object-fit: contain;
}

.about-social-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    background: #f5f5f5;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: var(--white);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.gallery-slider-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.gallery-slide img,
.gallery-slide video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Adjust as needed */
}

.gallery-prev,
.gallery-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.gallery-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.gallery-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Contacto */
.contact {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 1.2rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.footer-social a:hover {
    color: var(--light-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #204020;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s, color 0.2s;
    text-decoration: none;
}

.social-icon.google { color: #ea4335; }
.social-icon.instagram { color: #e1306c; }
.social-icon.facebook { color: #1877f3; }
.social-icon.tiktok { color: #000; }
.social-icon.whatsapp { color: #25d366; }

.social-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    background: #f5f5f5;
}

/* =================================
   RESPONSIVE DESIGN STYLES
==================================== */

/* --- TABLET & LARGER PHONES --- */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }

    .hero-title, .hero-main .hero-title {
        font-size: 2.8rem;
    }

    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MOBILE DEVICES --- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a, .nav-menu .dropdown-toggle {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
        padding-left: 2rem;
    }

    .hero, .hero-main {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-title, .hero-main .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle, .hero-main .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-desc, .hero-main .hero-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-title, .hero-subtitle, .hero-desc {
        text-shadow: none;
    }

    .hero-content {
        background: rgba(0, 0, 0, 0.5) !important;
        padding: 1rem !important;
        border-radius: 0.5rem;
        margin: 0 1rem;
    }

    .hero-overlay {
        display: none; /* Hide overlay on mobile */
    }

    .features-bar .container {
      flex-wrap: wrap;
      justify-content: center;
    }

    .services-grid, .services-grid-modern, .services-grid-strict {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content, #contact .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .navbar .container {
        padding: 0 1rem;
    }

    .hero-main {
        min-height: 50vh;
    }

    .hero-content {
        background: transparent !important; /* Remove background for mobile */
        padding: 0 !important; /* Remove padding */
    }

    .hero-overlay {
        display: none; /* Hide overlay on mobile */
    }

    #contact .contact-title {
        font-size: 2.2rem;
    }

    .footer-title {
        font-size: 1.4rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }
}


/* --- SMALL MOBILE DEVICES --- */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo a {
        font-size: 1.2rem;
    }
    .logo-img {
        height: 40px;
    }

    .hero-title, .hero-main .hero-title {
        font-size: 1.8rem;
    }

    .hero-desc, .hero-main .hero-desc {
        font-size: 0.9rem;
    }

    .feature-item {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
    
    .quote-float {
      right: 70px;
      height: 48px;
      padding: 0 1rem;
    }

    .whatsapp-float {
      right: 15px;
      bottom: 15px;
      width: 55px;
      height: 55px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-desc {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 10px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-social-icons {
        gap: 1rem;
    }
    
    .about-social-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
}

/* Orientación landscape en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding-top: 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        max-height: 60vh;
    }
}

/* Tablets específicamente */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        gap: 2rem;
    }
}

/* Pantallas grandes */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

header, nav {
    background: #204020;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.08);
}

.about-section {
    background: #1b3c22;
    color: #fff;
    padding: 64px 0 56px 0;
    border-radius: 0 0 32px 32px;
    text-align: center;
}
.about-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}
.about-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    color: #e6e6e6;
}
.about-social-icons {
    display: flex;
    gap: 2.2rem;
    margin-top: 2.5rem;
    justify-content: center;
    align-items: center;
}
.about-social-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    padding: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    object-fit: contain;
}
.about-social-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    background: #f5f5f5;
}

.quote-float {
    position: fixed;
    bottom: 30px;
    right: 105px;
    background: #ff8800;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    padding: 0 28px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.18);
    z-index: 2000;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    letter-spacing: 1px;
}
.quote-popup {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    min-width: 270px;
    background: #fff;
    color: #204040;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44,62,80,0.18);
    padding: 1.1rem 1.2rem 1.1rem 1.2rem;
    font-size: 1.08rem;
    font-weight: 400;
    text-align: left;
    z-index: 3000;
    animation: fadeIn 0.25s;
}
.quote-float:hover .quote-popup,
.quote-float:focus .quote-popup {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
    .quote-float {
        right: 90px;
        font-size: 0.95rem;
        padding: 0 16px;
        height: 48px;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
    .hero {
        min-height: unset;
        height: 45vh !important;
        padding-top: 90px;
    }
    .hero-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .quote-float {
        right: 70px;
        font-size: 0.85rem;
        padding: 0 12px;
        height: 44px;
    }
    .whatsapp-float {
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
        bottom: 15px;
        right: 15px;
    }
    .quote-popup {
        min-width: 240px;
        font-size: 0.95rem;
        padding: 1rem;
    }
}

@media (max-width: 360px) {
    .quote-float {
        right: 60px;
        font-size: 0.8rem;
        padding: 0 10px;
        height: 40px;
    }
    .whatsapp-float {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
        bottom: 12px;
        right: 12px;
    }
    .quote-popup {
        min-width: 220px;
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

/* Mejoras para la sección de servicios */
.services-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: #eaeaea;
}
@media (max-width: 600px) {
  .services {
    padding: 2.5rem 0 1.5rem 0;
  }
  .services h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .service-card {
    padding: 1.2rem;
    font-size: 0.98rem;
  }
  .service-card img {
    height: 120px;
  }
  .services-grid {
    gap: 1.2rem;
  }
}

/* Ocultar sección de servicios en móvil */
@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }
}

/* Mostrar submenú de servicios en móvil al hacer click */
@media (max-width: 900px) {
  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .nav-menu > li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  .nav-menu > li > a,
  .nav-menu > li > .dropdown-toggle {
    display: block;
    width: 100%;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff !important;
    padding: 1.2rem 0;
    background: none;
    border: none;
    text-align: center;
    transition: background 0.2s, color 0.2s;
  }
  .nav-menu > li > a:hover,
  .nav-menu > li > .dropdown-toggle:hover {
    color: #ffb13b !important;
    background: none;
  }
  .nav-menu .dropdown {
    position: relative;
    width: 100%;
  }
  .nav-menu .dropdown-toggle {
    cursor: pointer;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff !important;
    padding: 1.2rem 0;
    background: none;
    border: none;
    width: 100%;
    text-align: center;
    display: block;
  }
  .nav-menu .arrow {
    margin-left: 0.4em;
    font-size: 0.9em;
  }
}

/* Mejorar submenú de servicios en menú hamburguesa */
.nav-menu .dropdown-menu {
  background: #18391a;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  padding: 0.5rem 0.5rem 0.5rem 1.2rem;
}
.nav-menu .dropdown-menu li a {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
  transition: color 0.2s;
}
.nav-menu .dropdown-menu li:last-child a {
  border-bottom: none;
}
.nav-menu .dropdown-menu li a:hover {
  color: #ffb13b;
  background: none;
}
@media (max-width: 900px) {
  .nav-menu .dropdown-menu {
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding-left: 1.5rem;
  }
  .nav-menu .dropdown-menu li a {
    font-size: 1.15rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

/* --- OUR SERVICES MODERN SECTION --- */
.services-section {
  background: #1b3c22;
  padding: 3.5rem 0 2.5rem 0;
}
.services-header {
  text-align: left;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}
.services-subtitle {
  color: #ffe94d;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.services-title {
  color: #d6f13a;
  font-size: 2.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.services-line {
  display: inline-block;
  height: 3px;
  width: 180px;
  background: #ffb13b;
  border-radius: 2px;
  margin-left: 1.2rem;
}
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 0 1.5rem;
}
.service-card-modern {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.service-card-modern img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.service-card-modern:hover img {
  transform: scale(1.04);
}
.service-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(30,40,60,0.92) 80%, rgba(30,40,60,0.0) 100%);
  color: #fff;
  width: 100%;
  padding: 1.1rem 1rem 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-name {
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.service-btn {
  background: #ffb13b;
  color: #18391a;
  border-radius: 50%;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  margin-left: 0.7rem;
  transition: background 0.2s;
}
.service-card-modern:hover .service-btn {
  background: #ffe94d;
}
@media (max-width: 900px) {
  .services-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-title {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .services-section {
    padding: 2rem 0 1.2rem 0;
  }
  .services-header {
    margin-left: 0.5rem;
  }
  .services-title {
    font-size: 1.3rem;
    gap: 0.5rem;
  }
  .services-line {
    width: 60px;
    margin-left: 0.5rem;
  }
  .services-grid-modern {
    grid-template-columns: 1fr;
    margin: 0 0.5rem;
    gap: 0.7rem;
  }
  .service-card-modern img {
    height: 120px;
  }
  .service-overlay {
    padding: 0.7rem 0.7rem 0.5rem 0.7rem;
  }
  .service-name {
    font-size: 0.98rem;
  }
  .service-btn {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }
}

/* --- OUR SERVICES STRICT SECTION --- */
.services-section {
  background: #295366;
  padding: 3.5rem 0 2.5rem 0;
}
.services-header-strict {
  text-align: center;
  margin-bottom: 0.4rem;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.services-subtitle-strict {
  color: #ffe94d;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}
.services-title-strict {
  color: #d6f13a;
  font-size: 2.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  margin-bottom: 0.2rem;
  justify-content: center;
}
.services-line-strict {
  display: inline-block;
  height: 3px;
  width: 260px;
  background: #ffb13b;
  border-radius: 2px;
  margin-left: 1.2rem;
}
.services-grid-strict {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.service-card-strict {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
  aspect-ratio: 4 / 3;
}
.service-card-strict-link {
  text-decoration: none;
  color: inherit;
}
.service-card-strict img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
}
.service-overlay-strict {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(30,40,60,0.92) 80%, rgba(30,40,60,0.0) 100%);
  color: #fff;
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-name-strict {
  font-size: 1.13rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  text-transform: uppercase;
}
.service-btn-strict {
  background: #ffb13b;
  color: #18391a;
  border-radius: 50%;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: none;
  margin-left: 0.7rem;
  transition: background 0.2s;
}
.service-card-strict:hover .service-btn-strict {
  background: #ffe94d;
}
.service-info-strict {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 95%;
  background: #fff;
  color: #1b3c22;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  padding: 1.1rem 1.2rem 1.1rem 1.2rem;
  font-size: 1.05rem;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.28s, transform 0.28s;
  z-index: 10;
  margin-left: 2.5%;
  margin-bottom: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.service-card-strict:hover .service-info-strict {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.service-info-strict strong {
  color: #204020;
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  display: block;
}
@media (max-width: 900px) {
  .services-grid-strict {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-header-strict {
    text-align: center;
    margin-left: 0;
    align-items: center;
    justify-content: center;
  }
  .services-title-strict {
    justify-content: center;
  }
  .services-line-strict {
    width: 120px;
    margin-left: 0.7rem;
  }
  .service-info-strict {
    font-size: 0.98rem;
    padding: 0.8rem 0.7rem 0.8rem 0.7rem;
    width: 98%;
    margin-left: 1%;
  }
}
@media (max-width: 600px) {
  .services-section {
    padding: 2rem 0 1.2rem 0;
  }
  .services-header-strict {
    text-align: center;
    margin-left: 0;
    align-items: center;
    justify-content: center;
  }
  .services-title-strict {
    justify-content: center;
  }
  .services-line-strict {
    width: 80px;
    margin-left: 0.5rem;
  }
  .services-grid-strict {
    grid-template-columns: 1fr;
    margin: 0 0.5rem;
    gap: 0.7rem;
  }
  .service-card-strict img {
    height: auto;
  }
  .service-overlay-strict {
    padding: 0.7rem 0.7rem 0.5rem 0.7rem;
  }
  .service-name-strict {
    font-size: 0.98rem;
  }
  .service-btn-strict {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }
  .service-info-strict {
    font-size: 0.93rem;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    width: 100%;
    margin-left: 0;
  }
}

.service-info-block {
  background: #fff;
  border: 2px solid #ffe94d;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
  padding: 0.7rem 0.7rem 0.7rem 0.7rem;
  margin: 2.2rem auto 1.5rem auto;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}
.service-info-block-header {
  background: #204020;
  color: #ffe94d;
  border-radius: 8px;
  padding: 1.1rem 1.2rem 1.1rem 1.2rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  box-sizing: border-box;
}
.service-info-block-title {
  color: #ffe94d;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-right: 1.1rem;
  display: block;
  margin-bottom: 0.4rem;
}
.service-info-block-desc {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.service-info-block-btn {
  background: #ffb13b;
  color: #18391a;
  border-radius: 50%;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin-left: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.service-info-block-btn:hover {
    background: #ff8c00;
}
@media (max-width: 600px) {
  .service-info-block {
    padding: 0.5rem 0.2rem 0.5rem 0.2rem;
    max-width: 98vw;
  }
  .service-info-block-header {
    padding: 0.7rem 0.6rem 0.7rem 0.6rem;
    gap: 0.5rem;
  }
  .service-info-block-title {
    font-size: 0.98rem;
    margin-right: 0.5rem;
  }
  .service-info-block-desc {
    font-size: 0.97rem;
  }
  .service-info-block-btn {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}

/* Proudly Serving Section */
.proudly-serving {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #fff;
}

.serving-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.area-tag {
    background-color: #cddc39; /* Lime green */
    color: var(--dark-color);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.area-tag:hover {
    background-color: #d4e157;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f7f8fa;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: #ff9800;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #ffa726;
}

@media (max-width: 600px) {
  .service-info-block {
    padding: 0.5rem 0.2rem 0.5rem 0.2rem;
    max-width: 98vw;
  }
  .service-info-block-header {
    padding: 0.7rem 0.6rem 0.7rem 0.6rem;
    gap: 0.5rem;
  }
  .service-info-block-title {
    font-size: 0.98rem;
    margin-right: 0.5rem;
  }
  .service-info-block-desc {
    font-size: 0.97rem;
  }
  .service-info-block-btn {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}

.gallery-section {
    padding: 4rem 0;
    text-align: center;
}
.gallery-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #bbb;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-next {
    right: -50px;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Contact Section Styles - REFACTORED */
#contact {
    background-color: #243824;
    padding: 80px 0;
    text-align: center;
}

#contact .contact-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 700;
}

#contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

#contact .contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

#contact .contact-info .contact-item i {
    font-size: 1.8rem;
    color: #ff9800;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

#contact .contact-info .contact-item span {
    color: #fff;
}

#contact .contact-form-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#contact .contact-form {
    display: grid;
    gap: 20px;
}

#contact .contact-form input,
#contact .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

#contact .contact-form textarea {
    resize: vertical;
}

#contact .contact-form .btn-submit {
    background-color: #ff9800;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

#contact .contact-form .btn-submit:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Footer Styles */
.footer {
    background: #222;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-info {
    max-width: 600px;
}
.footer-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-description {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-hours {
    font-size: 0.9rem;
    color: #aaa;
}
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    margin-top: 1rem;
    width: 100%;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .contact-info {
        margin-bottom: 2rem;
    }
    .contact-info .contact-item {
        margin-bottom: 1rem;
    }
}

/* ... existing responsive styles ... */
@media (max-width: 768px) {
   /* ... existing responsive styles ... */
    #contact .contact-title {
        font-size: 2.2rem;
    }
    .footer-title {
        font-size: 1.4rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }
}

/* New Hero Styles */
.hero-main {
    background: url('../img/services/iniciohero.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding-top: 120px;
}
.hero-main .hero-content {
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
    background-color: rgba(47, 79, 79, 0.7); /* Dark Slate Gray with 70% opacity */
    padding: 2rem;
    border-radius: 1rem;
    max-width: 800px; /* Limit width for better readability on large screens */
    margin: 0 auto; /* Center the content block */
}
.hero-main .hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.hero-main .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ff9800;
}
.hero-main .hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #fff;
}
.hero-main .hero-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background: #ff9800;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    text-decoration: none;
    transition: background 0.2s;
}
.hero-main .hero-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    .hero-main .hero-title { font-size: 2rem; }
    .hero-main { min-height: 320px; padding-top: 90px; }
}

/* Contact Section */
.contact-section {
    background: #243824;
    padding: 4rem 0;
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff9800;
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.contact-item p {
    color: #fff;
    margin: 0;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9800;
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    background: #ff9800;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        width: 30px;
    }
}

/* =================================
   RESPONSIVE OVERRIDE STYLES
==================================== */

/* --- GENERAL MOBILE --- */
@media (max-width: 768px) {
    .services-grid, 
    .services-grid-modern, 
    .services-grid-strict {
        grid-template-columns: 1fr;
    }

    #contact .contact-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        padding: 1rem 0;
        gap: 0;
    }

    .nav-menu a, .nav-menu .dropdown-toggle {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
    }
    
    .dropdown-menu {
        padding-left: 2rem;
        background: rgba(0,0,0,0.2);
    }
    
    .dropdown-menu li a {
        font-size: 1rem;
    }
}

/* --- SMALL MOBILE --- */
@media (max-width: 480px) {
    .hero-title, .hero-main .hero-title {
        font-size: 1.8rem;
    }

    .hero-desc, .hero-main .hero-desc {
        font-size: 0.95rem;
    }
    
    .quote-float {
      right: 80px;
      height: 50px;
      padding: 0 1rem;
      font-size: 0.9rem;
    }

    .whatsapp-float {
      right: 15px;
      bottom: 15px;
      width: 55px;
      height: 55px;
    }
}

/* --- Gallery Mobile Fix --- */
@media (max-width: 768px) {
    .gallery-section {
        padding: 2.5rem 0;
    }
    .gallery-slide img,
    .gallery-slide video {
        max-height: 320px;
    }
}

@media (max-width: 480px) {
    .gallery-slide img,
    .gallery-slide video {
        max-height: 240px;
    }
}

/* --- Hero Content Mobile Fix --- */
@media (max-width: 768px) {
    .hero-title, .hero-subtitle, .hero-desc {
        text-shadow: none;
    }

    .hero-content {
        background: rgba(0, 0, 0, 0.5) !important;
        padding: 1rem !important;
        border-radius: 0.5rem;
        margin: 0 1rem;
    }

    .hero-overlay {
        display: none; /* Hide overlay on mobile */
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.2rem; /* Further reduce padding for small phones */
    }
} 