/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #1a2e1a;
    --green-darker: #111a0f;
    --green-mid: #263d26;
    --gold: #c5a55a;
    --gold-light: #d4b96e;
    --gold-dark: #a88b3d;
    --white: #ffffff;
    --gray-light: #f5f5f0;
    --gray: #aaaaaa;
    --text-light: #cccccc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background: var(--green-darker);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--green-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 165, 90, 0.3);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--green-dark);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(17, 26, 15, 0.8);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(17, 26, 15, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-img {
    height: 80px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--gold);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-divider {
    width: 1px;
    height: 24px;
    background: rgba(197, 165, 90, 0.3);
}

.header-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(197, 165, 90, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.header-icon svg {
    width: 16px;
    height: 16px;
}

.header-icon:hover {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
}

.lang-dropdown {
    position: relative;
}

.lang-current {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-current:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.lang-dropdown.open .lang-current {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.lang-globe {
    width: 18px;
    height: 18px;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    display: flex;
    gap: 4px;
    padding: 6px;
    background: var(--green-dark);
    border: 1px solid rgba(197, 165, 90, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100;
    white-space: nowrap;
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-option {
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    background: transparent;
    color: var(--gray);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(197, 165, 90, 0.15);
    color: var(--gold);
}

.lang-option.active {
    color: var(--green-dark);
    background: var(--gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('wallpaper.png') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(197, 165, 90, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(197, 165, 90, 0.03) 0%, transparent 60%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 26, 15, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-content h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ===== About ===== */
.about {
    padding: 80px 0;
    background: var(--green-dark);
    text-align: center;
}

.section-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.about-text {
    max-width: 750px;
    margin: 0 auto 40px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.mission-block {
    max-width: 750px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(197, 165, 90, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.mission-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.mission-block p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== Directions ===== */
.directions {
    padding: 80px 0;
    background: var(--green-darker);
    text-align: center;
}

.directions-intro {
    max-width: 650px;
    margin: 0 auto 50px;
    color: var(--gray);
    font-size: 0.95rem;
}

.direction-card {
    background: rgba(26, 46, 26, 0.8);
    border: 1px solid rgba(197, 165, 90, 0.25);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 25px;
    text-align: left;
    transition: border-color 0.3s ease;
}

.direction-card:hover {
    border-color: rgba(197, 165, 90, 0.3);
}

.direction-header {
    margin-bottom: 12px;
}

.direction-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    background: rgba(197, 165, 90, 0.05);
}

.direction-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.direction-tagline {
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 75px;
}

.direction-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding-left: 75px;
}

.direction-item {
    padding: 20px;
    background: rgba(17, 26, 15, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(197, 165, 90, 0.15);
}

.direction-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.direction-item p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Services ===== */
.services {
    padding: 80px 0;
    background: var(--green-dark);
    text-align: center;
}

.services-intro {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--gray);
    font-size: 0.95rem;
}

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

.service-card {
    text-align: center;
    padding: 35px 25px;
    background: rgba(17, 26, 15, 0.4);
    border: 1px solid rgba(197, 165, 90, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 165, 90, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 20px;
    color: var(--green-dark);
    box-shadow: 0 4px 20px rgba(197, 165, 90, 0.2);
}

.service-icon svg {
    width: 44px;
    height: 44px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    padding: 40px 0;
    border-top: 1px solid rgba(197, 165, 90, 0.2);
    border-bottom: 1px solid rgba(197, 165, 90, 0.2);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cta-phone-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    flex-shrink: 0;
}

.cta-phone-icon svg {
    width: 26px;
    height: 26px;
}

.cta-phone-info {
    display: flex;
    flex-direction: column;
}

.cta-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
}

.cta-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.cta-center p {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 350px;
}

/* ===== Footer ===== */
.footer {
    background: var(--green-darker);
    padding: 60px 0 0;
    border-top: 1px solid rgba(197, 165, 90, 0.15);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
}

.footer-about > p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(197, 165, 90, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-links a svg {
    width: 16px;
    height: 16px;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col > p {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.contact-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-left {
        flex-direction: column;
    }

    .cta-center p {
        max-width: 100%;
    }

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

    .direction-tagline,
    .direction-items {
        padding-left: 0;
    }

    .direction-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-darker);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

    .direction-header h3 {
        font-size: 1.15rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 350px;
    }

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

    .header-icon {
        width: 30px;
        height: 30px;
    }

    .header-icon svg {
        width: 14px;
        height: 14px;
    }

    .lang-current {
        width: 30px;
        height: 30px;
    }

    .header-right {
        gap: 6px;
    }

    .header-icons {
        gap: 5px;
    }

    .header-divider {
        height: 20px;
    }
}
