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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: #F59E0B;
}

.mt-40 {
    margin-top: 40px;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1F2937;
}

.section-header.light h2,
.section-header.light p {
    color: #fff;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: #F59E0B;
    margin: 0 auto 20px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #6B7280;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #F59E0B;
    color: white;
}

.btn-primary:hover {
    background-color: #D97706;
}

.btn-secondary {
    background-color: white;
    color: #1F2937;
}

.btn-secondary:hover {
    background-color: #F3F4F6;
}

.btn-block {
    display: block;
    width: 100%;
}

.icon-right {
    margin-left: 8px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
}

.desktop-nav {
    display: none;
    align-items: center;
}

.nav-link {
    margin: 0 16px;
    font-weight: 500;
    color: #4B5563;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #F59E0B;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4B5563;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-nav .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}

.mobile-nav .nav-link:last-child {
    border-bottom: none;
}

.mobile-controls {
    display: flex;
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    margin-right: 15px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.language-btn {
    padding: 5px 10px;
    background-color: #F3F4F6;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.language-btn:hover {
    background-color: #E5E7EB;
}

.language-btn.active {
    background-color: #F59E0B;
    color: white;
}

@media (max-width: 767px) {
    .language-switcher {
        margin-right: 10px;
    }
    
    .language-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* Carousel Styles */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #F59E0B;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

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

/* About Section */
.about-section {
    background-color: #F9FAFB;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: #1F2937;
}

.about-text p {
    margin-bottom: 24px;
    color: #4B5563;
}

.language-payment {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.language h4, .payment h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1F2937;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-methods span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4B5563;
}

.payment-methods span i {
    color: #F59E0B;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.stat-item {
    border-left: 4px solid #F59E0B;
    padding-left: 16px;
}

.stat-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
}

.stat-item p {
    margin: 0;
    color: #6B7280;
}

/* Services Section */
.services-tabs {
    margin-bottom: 60px;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-btn {
    padding: 10px 20px;
    background-color: #F3F4F6;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #E5E7EB;
}

.tab-btn.active {
    background-color: #F59E0B;
    color: white;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text {
    padding: 30px;
}

.service-text h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #1F2937;
}

.service-text p {
    margin-bottom: 15px;
    color: #4B5563;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #1F2937;
}

.service-content p {
    color: #6B7280;
}

/* Gallery Section */
.gallery-section {
    background-color: #F9FAFB;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 16px;
    background-color: #F3F4F6;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #E5E7EB;
}

.filter-btn.active {
    background-color: #F59E0B;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transition: opacity 0.3s ease;
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

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

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Contact Section */
.contact-section {
    background-color: #1F2937;
    color: white;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h3,
.map-container h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    margin-bottom: 24px;
}

.contact-icon {
    color: #F59E0B;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 24px;
    width: 24px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #F59E0B;
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #D97706;
}

.payment-methods-large {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.payment-method i {
    color: #F59E0B;
    font-size: 20px;
}

/* Map Container */
.map-container {
    width: 100%;
}

.map {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Estimate Banner */
.estimate-banner {
    background-color: #F59E0B;
    color: white;
    padding: 40px 0;
}

.estimate-content {
    text-align: center;
}

.estimate-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.estimate-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.estimate-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: white;
    color: #1F2937;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background-color: #F3F4F6;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: white;
    padding: 32px 0;
    border-top: 1px solid #374151;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Media Queries */
@media (min-width: 640px) {
    .hero-text h1 {
        font-size: 3rem;
    }

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

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

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

    .language-payment {
        flex-direction: row;
        justify-content: space-between;
    }

    .estimate-phones {
        flex-direction: row;
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .about-content {
        flex-direction: row;
    }

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

    .service-detail {
        flex-direction: row;
    }

    .service-image {
        width: 40%;
        height: auto;
    }

    .service-text {
        width: 60%;
    }

    .contact-content {
        flex-direction: row;
    }

    .contact-info,
    .map-container {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-text h1 {
        font-size: 4rem;
    }
}

@media (min-width: 768px) {
    .mobile-controls .language-switcher {
        display: none;
    }
}

.logo-image {
  max-height: 70px;
  width: auto;
}

@media (max-width: 767px) {
  .logo-image {
    max-height: 45px;
  }
}