/* Taller Destin24 Styles - Enhanced Mobile Responsive */
:root {
    --primary-red: #E53E3E;
    --gold-accent: #D69E2E;
    --dark-gray: #2D3748;
    --light-gray: #F7FAFC;
    --white: #FFFFFF;
    --black: #1A202C;
    --border-color: #E2E8F0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Language Selector Page */
.language-selector-page {
    background: linear-gradient(135deg, var(--dark-gray), var(--primary-red));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.language-selector {
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 500px;
}

.logo-container {
    margin-bottom: 2rem;
}

.main-logo {
    height: 300px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.language-selector h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    padding: 0 20px;
}

.language-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.btn-spanish, .btn-english {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 25px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
    flex: 1;
    max-width: 200px;
}

.btn-spanish {
    background: var(--primary-red);
    color: var(--white);
}




.btn-english {
    background: var(--gold-accent);
    color: var(--dark-gray);
}

.btn-spanish:hover, .btn-english:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Enhanced Header Styles */
.navbar {
    background: linear-gradient(135deg, #1A202C, #E53E3E);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand .logo {
    height: 70px;
    width: auto;
    max-width: 150px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.lang-switch {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A202C, #E53E3E);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    padding: 0 20px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-gray), var(--primary-red));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    opacity: 0.9;
    padding: 0 20px;
}

/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    min-width: 140px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-accent);
    color: var(--dark-gray);
}

.btn-primary:hover {
    background: #B7791F;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-gray);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Services Grid */
.services-preview {
    padding: 4rem 0;
    background: var(--light-gray);
}

.services-preview h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--dark-gray);
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.services-cta {
    text-align: center;
    padding: 0 20px;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--dark-gray);
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature h3 {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

/* Services Detailed Page */
.services-detailed {
    padding: 4rem 0;
    background: var(--white);
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2rem;
    color: var(--dark-gray);
    border-bottom: 3px solid var(--gold-accent);
    padding-bottom: 0.5rem;
    padding-left: 20px;
    padding-right: 20px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    margin: 0 10px;
}

.service-item h3 {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.service-item p {
    margin-bottom: 1rem;
    color: #666;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.service-item ul {
    list-style: none;
    padding-left: 0;
}

.service-item ul li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
}

.service-item ul li:before {
    content: "?";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red), var(--gold-accent));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    padding: 0 20px;
}

.cta-section p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    padding: 0 20px;
}

/* Enhanced Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2rem;
    color: var(--dark-gray);
    text-align: center;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 50px;
    text-align: center;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 3vw, 1rem);
    word-break: break-word;
}

.contact-details a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details small {
    color: #666;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    display: block;
    line-height: 1.4;
}

/* Enhanced Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: clamp(0.9rem, 3vw, 1rem);
    transition: border-color 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    line-height: 1.4;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--white);
}

.map-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2rem;
    color: var(--dark-gray);
    padding: 0 20px;
}

.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 0 20px;
}

.map-placeholder {
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    padding: 20px;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-section h3 {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.footer-section ul li a:hover {
    color: var(--gold-accent);
}

.footer-section p {
    font-size: clamp(0.9rem, 3vw, 1rem);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-red), var(--gold-accent));
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .language-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-spanish, .btn-english {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        margin: 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .map-container {
        height: 250px;
        margin: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .main-logo {
        height: 80px;
    }
    
    .nav-brand .logo {
        height: 40px;
    }
    
    .service-card,
    .service-item,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .services-preview,
    .features,
    .services-detailed,
    .contact-section {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .map-container {
        height: 200px;
        margin: 0 10px;
    }
}


/* Instagram Integration Styles */
.social-showcase {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    text-align: center;
}

.social-showcase h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.social-showcase p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
    color: #666;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(188, 24, 136, 0.3);
    color: var(--white);
}

.btn-instagram-footer {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-instagram-footer:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
    color: var(--white);
}

.instagram-icon {
    font-size: 1.2rem;
}

.instagram-preview {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.instagram-preview p {
    margin: 0;
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: var(--dark-gray);
}

/* Social Links in Footer */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    color: var(--white);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-hashtags {
    margin-top: 1rem;
    opacity: 0.8;
}

.instagram-hashtags small {
    color: #ccc;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--gold-accent);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--white);
}

/* Mobile Responsive for Instagram */
@media (max-width: 768px) {
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .social-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .btn-instagram-footer {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .service-card:hover,
    .nav-menu a:hover {
        transform: none;
    }
    
    .btn:active,
    .service-card:active {
        transform: scale(0.98);
    }
}




/* Print Styles */
@media print {
    .navbar,
    .hero,
    .cta-section,
    footer,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .service-card,
    .contact-item {
        break-inside: avoid;
    }



}
