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

:root {
    --primary-color: #d32f2f;
    --secondary-color: #f44336;
    --accent-color: #ff5252;
    --text-dark: #212121;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f5f5f5;
    --bg-gray: #e0e0e0;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--accent-color);
}

.language-selector a {
    color: var(--white);
    text-decoration: none;
    margin-left: 15px;
    padding-bottom: 2px;
}

.language-selector a.active {
    border-bottom: 2px solid var(--accent-color);
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.dropdown {
    position: relative;
}

.dropdown i {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
    background: #000; /* isolates blending */
    z-index: -1; /* ensure each slide stacks independently */
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}



/* Content Section */
.hero-content {
    flex: 1;
    z-index: 2;
    padding: 60px 80px;
    max-width: 650px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slide.active .hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Image Section */
.hero-image-container {
    flex: 1;
    position: relative;
    
    overflow: hidden;
    
}



.hero-image-container img {
    width: 75%;
    height: auto;
    object-fit:cover;
    object-position: center;
    display: block;
    
}

@media (max-width: 768px) {
  .hero-slide {
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-content {
    padding: 20px;
    height: auto;
    object-fit: cover;
    max-width: 100%;
    text-align: center;
  }

  .hero-image-container {
    order: -1; /* show image on top */
  }

  .hero-image-container img {
    width: 100%;
    aspect-ratio: auto;
  }
}




/* Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 6px;
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    z-index: 1;
}

/* Info Bar */
.info-bar {
    pointer-events: none;
    background: var(--primary-color);
    padding: 30px 0;
}

.info-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-item {
    text-align: center;
    color: var(--white);
}

.info-item i {
    font-size: 40px;
    margin-bottom: 10px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 60px 0;
}

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

.section-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border-top: 3px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* FAQ Section */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-gray);
}

.faq-question h3 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Locations Section */
.locations {
    background: var(--bg-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.location-card {
    background: var(--white);
    padding: 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.location-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 24px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: start;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 30px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 400;
}

.contact-item p {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-map {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button a {
    display: flex;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Instagram Button */
.instagram-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
}

.instagram-button a {
    display: flex;
    width: 60px;
    height: 60px;
    background: #f09433; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.instagram-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ============================================ */

/* Large Tablets and Small Desktops (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    /* Hero Section */
    .hero-content {
        padding: 50px 50px;
        max-width: 550px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Info Bar */
    .info-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Locations */
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 32px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Top Bar - Hide on mobile */
    .top-bar {
        display: none;
    }

    /* Header/Navigation */
    .navbar {
        padding: 12px 0;
    }

    .logo img {
        height: 35px;
    }

    .logo-main {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 11px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-hover);
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 10px;
        font-size: 16px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        display: none;
        background: var(--bg-light);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero-slide {
        flex-direction: column;
        position: relative;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column; /* for mobile */
        justify-content: flex-start;
        opacity: 0;
        pointer-events: none;
        transition: opacity 1s ease-in-out;
        min-height: 400px; /* prevents collapse */
    }

    .hero-slide.active {
        opacity: 1;
        pointer-events: auto;
    }


    .hero-overlay {
        width: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.9) 100%);
    }

    .hero-image-container {
        width: 100%;
        height: 50vh;
        min-height: 350px;
        order: 1;
    }

    .hero-image-container::before {
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    }

    .hero-content {
        width: 100%;
        order: 2;
        padding: 40px 24px;
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-dots {
        bottom: 20px;
    }

    /* Info Bar */
    .info-bar {
        padding: 30px 0;
    }

    .info-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .info-item i {
        font-size: 35px;
    }

    .info-item h3 {
        font-size: 16px;
    }

    .info-item p {
        font-size: 13px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        font-size: 40px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    /* FAQ */
    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 15px;
        padding-right: 10px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-card {
        padding: 20px;
    }

    /* CTA */
    .cta {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .btn-cta {
        font-size: 18px;
        padding: 12px 35px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h3 {
        font-size: 22px;
    }

    .contact-map iframe {
        height: 350px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 14px;
    }

    /* Social/Contact Buttons */
    .whatsapp-button,
    .instagram-button {
        right: 20px;
    }

    .whatsapp-button {
        bottom: 20px;
    }

    .instagram-button {
        bottom: 90px;
    }

    .whatsapp-button a,
    .instagram-button a {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .logo img {
        height: 30px;
    }

    .logo-main {
        font-size: 16px;
    }

    .logo-sub {
        font-size: 10px;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
    }

    .hero-image-container {
        height: 45vh;
        min-height: 300px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }

    /* Info Bar */
    .info-bar {
        padding: 25px 0;
    }

    .info-items {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-item {
        padding: 20px 15px;
    }

    .info-item i {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .info-item h3 {
        font-size: 15px;
    }

    .info-item p {
        font-size: 12px;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* About Section */
    .about-content {
        gap: 25px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    /* Services */
    .services-grid {
        gap: 15px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .service-link {
        font-size: 13px;
    }

    /* FAQ */
    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-question h3 {
        font-size: 14px;
        line-height: 1.5;
    }

    .faq-question i {
        font-size: 14px;
        margin-left: 10px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 12px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.7;
    }

    /* Locations */
    .locations-grid {
        gap: 15px;
    }

    .location-card {
        padding: 18px 15px;
    }

    .location-card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .location-card p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .read-more {
        font-size: 13px;
    }

    /* CTA */
    .cta {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .btn-cta {
        font-size: 16px;
        padding: 12px 30px;
        width: 100%;
        max-width: 300px;
    }

    /* Contact */
    .contact-content {
        gap: 25px;
    }

    .contact-info h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 18px;
        gap: 12px;
    }

    .contact-item i {
        font-size: 18px;
        width: 25px;
    }

    .contact-item h4 {
        font-size: 13px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .contact-map {
        margin-top: 20px;
    }

    .contact-map iframe {
        height: 300px;
    }

    /* Footer */
    .footer {
        padding: 35px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section a {
        font-size: 13px;
    }

    .footer-contact li {
        justify-content: center;
        font-size: 13px;
    }

    .social-links {
        justify-content: center;
        margin-top: 15px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }

    /* Social/Contact Buttons */
    .whatsapp-button,
    .instagram-button {
        right: 15px;
    }

    .whatsapp-button {
        bottom: 15px;
    }

    .instagram-button {
        bottom: 80px;
    }

    .whatsapp-button a,
    .instagram-button a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .service-card h3,
    .location-card h3 {
        font-size: 16px;
    }

    .btn-cta {
        font-size: 15px;
        padding: 10px 25px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-image-container {
        height: 100vh;
        min-height: auto;
    }

    .hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .hamburger,
    .whatsapp-button,
    .instagram-button,
    .hero-dots,
    .btn,
    .cta {
        display: none !important;
    }

    .hero {
        height: auto;
        max-height: none;
        page-break-after: always;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}
    