:root {
    --bg: #ffffff;
    --bg2: #f8f9fa;
    --bg3: #f0f0f0;
    --accent: #c9952e;
    --accent2: #b8860b;
    --gold: #c9952e;
    --text: #1a1a2e;
    --text2: #555555;
    --text3: #888888;
    --border: #e0e0e0;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Noto Sans Georgian', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-alt { background: var(--bg2); }

/* Typography */
h1, h2, h3, h4, .logo, .hero-title, .page-title, .cta-title, .footer-logo {
    font-family: 'Bebas Neue', 'Noto Sans Georgian', sans-serif;
    letter-spacing: 1px;
}

.ka-text { font-family: 'Noto Sans Georgian', sans-serif; }
.en-text { font-family: 'Inter', sans-serif; }

/* Language toggle */
.lang-ka, .lang-en { display: none; }
html[lang="ka"] .lang-ka { display: inline; }
html[lang="ka"] .lang-en { display: none; }
html[lang="en"] .lang-en { display: inline; }
html[lang="en"] .lang-ka { display: none; }

/* Show/hide based on language */
html[lang="ka"] .en-text { display: none; }
html[lang="en"] .ka-text { display: none; }

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    box-shadow: var(--shadow);
    border-bottom-color: var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo {
    font-size: 28px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}
.logo span { color: var(--accent); }
.nav { display: flex; gap: 32px; }
.nav-link {
    text-decoration: none;
    color: var(--text2);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    transition: var(--transition);
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }
.lang-divider { color: var(--text3); margin: 0 2px; }
.active-lang { color: var(--accent); font-weight: 700; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1920') center/cover no-repeat;
    opacity: 0.25;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.6) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding-top: 70px;
}
.hero-badge {
    display: inline-block;
    background: rgba(201,149,46,0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 24px;
    font-weight: 300;
}
.hero-rating { margin-bottom: 32px; }
.stars { color: var(--accent); font-size: 20px; letter-spacing: 2px; }
.rating-text { color: rgba(255,255,255,0.7); margin-left: 8px; font-size: 15px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-gold {
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    padding: 18px 40px;
}
.btn-gold:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,149,46,0.3); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* Section styles */
.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    line-height: 1.1;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-cta { text-align: center; margin-top: 40px; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text p { color: var(--text2); margin-bottom: 16px; font-size: 16px; }
.about-stats { display: flex; gap: 40px; margin-top: 32px; }
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--accent);
}
.stat-label { font-size: 14px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-name { font-size: 20px; margin-bottom: 8px; }
.service-desc { color: var(--text2); font-size: 14px; margin-bottom: 16px; }
.service-price {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
}

/* Services full page */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card-full {
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-card-full:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.service-card-header h3 { font-size: 22px; }
.service-price-lg {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--accent);
    white-space: nowrap;
}
.service-card-full p { color: var(--text2); font-size: 14px; margin-bottom: 16px; }

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
}
.page-title {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 12px;
}
.page-subtitle { color: rgba(255,255,255,0.7); font-size: 18px; font-weight: 300; }

/* Gallery */
.gallery-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: #fff;
    font-weight: 500;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* CTA */
.cta-content {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--text), #2d2d44);
    border-radius: var(--radius-lg);
    color: #fff;
}
.cta-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.cta-text { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 16px; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    background: var(--bg2);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--accent);
}
.contact-card p { color: var(--text2); }
.contact-card a { color: var(--accent); text-decoration: none; }
.contact-social { display: flex; gap: 12px; }
.contact-social a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.contact-social a:hover { text-decoration: underline; }
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--text);
    color: #fff;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo { font-size: 28px; margin-bottom: 8px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-rating { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-nav h4, .footer-contact h4, .footer-social h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--accent);
}
.footer-nav a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: var(--transition);
}
.footer-nav a:hover { color: #fff; }
.footer-contact p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.social-link:hover { text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .services-grid-full { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { gap: 20px; }
}
