:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --gold: #c9956c;
    --gold-dark: #a67c52;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --dark-gray: #343a40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

*:focus-visible {
    outline: none;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

section, .map-section, footer {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--primary);
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 5px; }

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content { text-align: center; }

.loader-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 30px;
    animation: pulse 1.5s infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: var(--gold);
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 50px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

header.scrolled .logo { color: var(--primary); }
header.scrolled .nav-link { color: var(--primary); }
header.scrolled .nav-link::after { background: var(--gold); }

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.logo span { 
    color: var(--gold); 
    transition: color 0.3s;
}

header.scrolled .logo span { 
    color: var(--gold-dark); 
}

nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover::after { width: 100%; }

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    padding: 10px;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    z-index: 1000;
}

.nav-dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.contact-copy {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 15px;
    background: var(--light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--primary);
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.contact-copy:last-child {
    margin-bottom: 0;
}

.contact-copy:hover {
    background: var(--gold);
    color: var(--primary);
}

.contact-copy svg {
    flex-shrink: 0;
}

.contact-copy.copied {
    background: #22c55e;
    color: white;
}

/* Mobile contact - hidden on desktop */
.mobile-contact {
    display: none;
}

/* Header Contact Buttons */
.header-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.header-contact-btn:hover {
    background: var(--gold);
    color: var(--primary);
    transform: scale(1.1);
}

header.scrolled .header-contact-btn {
    background: var(--light);
    color: var(--primary);
}

header.scrolled .header-contact-btn:hover {
    background: var(--gold);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

header.scrolled .lang-btn {
    border-color: rgba(26,26,46,0.3);
    color: var(--primary);
}

header.scrolled .lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

header.scrolled .lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

header.scrolled .hamburger span { background: var(--primary); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), transparent);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation-delay: -5s; }
.shape-3 { width: 300px; height: 300px; top: 50%; left: 50%; animation-delay: -10s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 10px) rotate(-5deg); }
    75% { transform: translate(10px, 20px) rotate(3deg); }
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 30px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 165, 116, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero h1 span { color: var(--gold); }

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sections Common */
section {
    padding: 120px 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active { opacity: 1; transform: translateX(0); }

/* About Section */
.about { background: var(--light); }

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image { position: relative; }

.about-image-main {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slider img.active {
    opacity: 1;
}

.about-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: flex;
    gap: 40px;
}

.stat { text-align: center; }

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
}

.about-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), #c49560);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature span {
    font-weight: 500;
    color: var(--primary);
}

/* Services Section */
.services { background: var(--white); }

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px 30px 30px;
}

.service-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Before After Section */
.before-after {
    background: var(--primary);
    color: var(--white);
}

.before-after .section-tag { color: var(--gold); }
.before-after .section-title { color: var(--white); }
.before-after .section-desc { color: rgba(255,255,255,0.7); }

/* Before/After Carousel */
.ba-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.ba-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.ba-item {
    display: none;
    position: relative;
    height: 500px;
    cursor: pointer;
    animation: fadeIn 0.5s ease;
}

.ba-item.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.ba-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 30;
}

.ba-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.ba-nav:hover svg {
    stroke: var(--white);
}

.ba-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}

.ba-prev { left: -80px; }
.ba-next { right: -80px; }

.ba-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.ba-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ba-dot:hover {
    background: rgba(255,255,255,0.6);
}

.ba-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-before, .ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ba-before {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 5;
}

.ba-after {
    z-index: 1;
}

.ba-label {
    position: absolute;
    padding: 8px 20px;
    background: rgba(0,0,0,0.7);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.ba-before .ba-label { top: 20px; left: 20px; }
.ba-after .ba-label { top: 20px; right: 20px; }

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 20;
    cursor: ew-resize;
}

.ba-handle::before {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--primary);
    padding: 15px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.ba-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    z-index: 15;
}

.ba-info h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ba-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Gallery Section */
.gallery { background: var(--light); }

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before { opacity: 0.3; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-column: span 2; }

.gallery-item.hidden {
    display: none;
}

/* Gallery Filter */
.gallery-filter {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }

.gallery-overlay h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}


/* ========== GALLERY ========== */
.gallery {
    padding: 80px 40px;
    background: #fff;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
}

.lightbox-close { top: 20px; right: 20px; font-size: 2.5rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* Why Us Section */
.why-us { background: var(--white); }

.why-us-container { max-width: 1400px; margin: 0 auto; }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 50px 30px;
    border-radius: 20px;
    background: var(--light);
    transition: all 0.4s ease;
    position: relative;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-number {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 15px;
    display: block;
}

.why-number-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.why-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.why-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
    background: var(--light);
    padding: 100px 50px;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.review-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-text {
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.review-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.review-location {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent);
    border-radius: 50%;
}

.contact .section-tag { color: var(--gold); }
.contact .section-title { color: var(--white); }
.contact .section-desc { color: rgba(255,255,255,0.7); }

.contact-container { max-width: 1200px; margin: 0 auto; }

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Contact Person */
.contact-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.person-image {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.person-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.8));
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    border: 4px solid var(--gold);
}

.person-info {
    text-align: left;
}

.person-info h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.person-info p {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 15px;
}

.person-quote {
    display: block;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 400px;
}

.person-languages {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.person-languages span:first-child {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-right: 10px;
}

.lang-flags {
    font-size: 1.3rem;
    letter-spacing: 5px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.contact-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold);
}

.contact-item p {
    opacity: 0.8;
    line-height: 1.8;
}

.contact-item a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.contact-item a:hover { opacity: 0.8; }

/* Map Section */
.map-section {
    height: 400px;
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.map-overlay { text-align: center; }

.map-overlay h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.map-overlay p {
    opacity: 0.7;
    margin-bottom: 25px;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 50px 30px;
}

.footer-container { max-width: 1400px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-column ul { list-style: none; }

.footer-column li { margin-bottom: 12px; }

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    section { padding: 80px 30px; }
    header { padding: 20px 30px; }
    .about-container { grid-template-columns: 1fr; gap: 60px; }
    .about-stats { position: relative; bottom: auto; right: auto; margin-top: 20px; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ba-prev { left: 10px; }
    .ba-next { right: 10px; }
    .ba-nav { width: 45px; height: 45px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews { padding: 80px 30px; }
    .gallery { padding: 80px 30px; }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
    }
    nav.active { right: 0; }
    nav .nav-link { font-size: 1.2rem; color: var(--white) !important; }
    .hamburger { display: flex; }
    .header-contact-btn { display: none; }
    .nav-dropdown-content { display: none; }
    .mobile-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 30px; width: 100%; padding: 0 20px; }
    .mobile-contact .contact-copy { background: rgba(255,255,255,0.1); color: var(--white); justify-content: center; }
    .mobile-contact .contact-copy:hover { background: var(--gold); color: var(--primary); }
    .header-right { gap: 12px; }
    .lang-switcher { gap: 3px; }
    .lang-btn { padding: 5px 8px; font-size: 0.7rem; }
    .map-overlay { padding: 30px 20px; }
    .map-overlay h3 { font-size: 1.8rem; }
    .map-overlay p { font-size: 0.95rem; padding: 0 10px; }
    .hero h1 { font-size: 2.5rem; }
    .about-features { grid-template-columns: 1fr; }
    .about-image-main { height: 400px; }
    .ba-item { height: 400px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-img { height: 220px; }
    .why-us-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-item { padding: 35px 25px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-item { padding: 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { justify-content: center; text-align: center; }
    .contact-person { flex-direction: column; text-align: center; padding: 30px; }
    .person-info { text-align: center; }
    .person-quote { max-width: 100%; }
    .person-languages { justify-content: center; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { padding: 30px; }
    .gallery-item { border-radius: 8px; }
    .gallery-item img { border-radius: 8px; }
    .lightbox-prev, .lightbox-next { padding: 15px 12px; font-size: 2rem; }
    .lightbox-close { font-size: 2.5rem; top: 15px; right: 20px; }
}

@media (max-width: 480px) {
    section { padding: 50px 15px; }
    header { padding: 12px 15px; }
    .logo { font-size: 1.2rem; }
    .header-right { gap: 8px; }
    .lang-switcher { gap: 2px; }
    .lang-btn { padding: 4px 6px; font-size: 0.6rem; }
    .hamburger { gap: 5px; }
    .hamburger span { width: 24px; height: 2px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-badge { font-size: 0.8rem; padding: 8px 16px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .btn { width: 100%; max-width: 260px; padding: 14px 28px; font-size: 0.9rem; }
    .about-stats { flex-direction: column; gap: 15px; }
    .stat-item { padding: 15px 20px; }
    .stat-number { font-size: 2rem; }
    .about-image-main { height: 280px; }
    .ba-item { height: 260px; }
    .ba-nav { width: 32px; height: 32px; }
    .ba-nav svg { width: 16px; height: 16px; }
    .ba-dots { margin-top: 12px; }
    .ba-dot { width: 8px; height: 8px; }
    .person-image { width: 110px; height: 110px; }
    .person-info h3 { font-size: 1.3rem; }
    .person-quote { font-size: 0.9rem; }
    .why-number { font-size: 2.2rem; }
    .why-item h3 { font-size: 1rem; }
    .section-header { margin-bottom: 35px; }
    .section-tag { font-size: 0.75rem; }
    .section-title { font-size: 1.6rem; }
    .section-desc { font-size: 0.9rem; padding: 0 5px; }
    .map-section { min-height: 350px; }
    .map-overlay { padding: 20px 15px; max-width: 90%; }
    .map-overlay h3 { font-size: 1.4rem; margin-bottom: 10px; }
    .map-overlay p { font-size: 0.85rem; line-height: 1.5; margin-bottom: 15px; }
    .map-overlay .btn { padding: 12px 24px; font-size: 0.85rem; }
    .contact-item { padding: 25px 20px; }
    .contact-item h3 { font-size: 0.95rem; }
    .contact-item p { font-size: 0.9rem; }
    .footer-grid { gap: 25px; }
    .footer-brand p { font-size: 0.9rem; }
    .footer-column h4 { font-size: 1rem; }
    .review-card { padding: 25px; }
    .review-text { font-size: 0.95rem; }
    .review-stars { font-size: 1rem; }
}
