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

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #f7b731;
    --dark-color: #2d3436;
    --light-color: #f5f5f5;
    /*--gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    --gradient: linear-gradient(135deg, #000 0%, #000 100%);
}


body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    padding-top: 80px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .nav-menu {
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        justify-content: center;
        gap: 8px;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Selector */
/* ========== FIXED LANGUAGE SELECTOR ========== */
.language-selector {
    position: relative;
    cursor: pointer;
}

/* Enlarge the current-lang button */
.current-lang {
  display: block;
  padding: 0.8rem 1.6rem;    /* ↑ more tappable area */
  font-size: 1rem;           /* ↑ slightly larger text */
  background: var(--gradient);
  color: white;
  border-radius: 25px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.current-lang:hover {
  transform: translateY(-2px);
}

/* Hide dropdown by default */
.language-dropdown {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

/* Show when hovered (desktop) or when JS toggles `.active` (mobile) */
.language-selector:hover .language-dropdown,
.language-selector.active .language-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown links */
.language-dropdown a {
  display: block;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  color: var(--dark-color);
  transition: background 0.3s ease;
  white-space: nowrap;
}

.language-dropdown a:hover {
  background: var(--light-color);
}

.language-dropdown a:first-child {
  border-radius: 10px 10px 0 0;
}

.language-dropdown a:last-child {
  border-radius: 0 0 10px 10px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://lh3.googleusercontent.com/pw/AP1GczNQcik3r2kfqaZFoRNEpB46OmVB1FqQL8f6PvkCfN-XTv5MNDJjrn-mDxBYkJRI1iBdpjB_PQPABQwOd2R2FRIBk7JZUGc6D7oALauna5ewtVpflNR58kaw-yAQCdV4VL4ioC-husrfrlfE-IUSXqcFXQ=w1944-h1458-s-no?authuser=0') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Hero Contact Info */
.hero-contact-info {
    position: absolute;
    top: 120px;
    left: 20px;
    right: 20px;
    z-index: 10;
    background: none;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    color: white;
}

.hero-contact-info .contact-info-item {
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient);
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

/* Gallery Section */
.gallery {
    background: var(--light-color);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.review-card h4 {
    color: var(--dark-color);
    font-weight: 600;
}

/* Location Section */
.location {
    background: var(--light-color);
}

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

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.location-info {
    height: 100%;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
    margin-top: 0.2rem;
}

.info-item h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: #666;
    font-size: 0.9rem;
}

.directions-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.directions-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.directions-link i {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Google Reviews Styles */
.google-rating-summary {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.rating-stars i {
    color: var(--accent-color);
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.rating-count {
    color: #666;
}

.google-review {
    position: relative;
    padding-bottom: 3rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.google-review-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.google-review-link:hover {
    opacity: 1;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-contact-info {
        top: 120px;
        left: 10px;
        right: 10px;
        padding: 1rem;
    }

    .hero-contact-info .contact-info-item:last-child {
        margin-bottom: 3rem;
    }

    .contact-info-item {
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-grid,
    .services-grid,
    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }
}
