:root{
    --gold:#c89b2c;
    --dark:#111;
    --light:#fff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    padding-top:90px;
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:9999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.header .container{
    max-width:1400px;
    margin:auto;
    padding:0 30px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:65px !important;
    width:auto !important;
    max-width:220px !important;
    object-fit:contain;
    display:block;
}

nav{
    display:flex;
    gap:25px;
    align-items:center;
}

nav a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    font-size:15px;
    transition:.3s;
}

nav a:hover,
.lang a:hover{
    color:var(--gold);
}

.lang{
    display:flex;
    gap:10px;
}

.hero{
    min-height:calc(100vh - 90px);
    background:url('../img/hero.jpg') center center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:10;
    color:#fff;
    padding:20px;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

.btn-gold,
.btn-dark{
    display:inline-block;
    padding:15px 30px;
    text-decoration:none;
    border-radius:6px;
    color:#fff;
}

.btn-gold{
    background:var(--gold);
}

.btn-dark{
    background:#111;
}

@media(max-width:768px){
    .header .container{
        height:auto;
        padding:12px 20px;
        flex-wrap:wrap;
        gap:12px;
    }

    body{
        padding-top:130px;
    }

    nav{
        width:100%;
        justify-content:center;
        gap:15px;
        flex-wrap:wrap;
    }

    .logo img{
        height:55px !important;
    }

    .hero h1{
        font-size:38px;
    }
}
.about-section{
    padding:100px 0;
    background:#fff;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.section-tag{
    color:var(--gold);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content h2{
    font-size:42px;
    color:#111;
    margin:15px 0 25px;
}

.about-content p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}

.feature{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#222;
}

.feature i{
    color:var(--gold);
    font-size:20px;
}

@media(max-width:900px){

    .about-container{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

}
.services-section{
    padding:100px 0;
    background:#f7f7f7;
}

.section-header{
    max-width:760px;
    margin:0 auto 55px;
    text-align:center;
}

.section-header h2{
    font-size:42px;
    color:#111;
    margin:15px 0;
}

.section-header p{
    font-size:18px;
    color:#666;
    line-height:1.7;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
    border:1px solid rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.14);
}

.service-icon{
    width:70px;
    height:70px;
    margin:0 auto 22px;
    border-radius:50%;
    background:rgba(200,155,44,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon i{
    font-size:30px;
    color:var(--gold);
}

.service-card h3{
    font-size:20px;
    margin-bottom:15px;
    color:#111;
}

.service-card p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

@media(max-width:1000px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:32px;
    }
}
.gallery-section{
    padding:100px 0;
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-card{
    position:relative;
    height:320px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.78),
        rgba(0,0,0,.10)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:25px;
    color:#fff;
}

.gallery-overlay span{
    color:var(--gold);
    font-weight:700;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:8px;
}

.gallery-overlay h3{
    font-size:24px;
}

.empty-message{
    grid-column:1/-1;
    text-align:center;
    color:#777;
    font-size:18px;
}

@media(max-width:900px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card{
        height:260px;
    }
}
.videos-section{
    padding:100px 0;
    background:#f7f7f7;
}

.videos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.video-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.video-frame{
    width:100%;
    aspect-ratio:16/9;
    background:#111;
}

.video-frame iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

.video-info{
    padding:22px;
}

.video-info h3{
    font-size:20px;
    color:#111;
}

@media(max-width:900px){
    .videos-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .videos-grid{
        grid-template-columns:1fr;
    }
}
.video-frame video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.video-placeholder{
    width:100%;
    height:100%;
    min-height:220px;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}
.reviews-section{
    padding:100px 0;
    background:#fff;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    border:1px solid rgba(0,0,0,.05);
}

.stars{
    color:var(--gold);
    margin-bottom:20px;
    font-size:18px;
}

.review-card p{
    font-size:16px;
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.review-card h3{
    font-size:18px;
    color:#111;
}

@media(max-width:900px){
    .reviews-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .reviews-grid{
        grid-template-columns:1fr;
    }
}
.contact-section{
    padding:100px 0;
    background:#f7f7f7;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    align-items:start;
}

.contact-info h2{
    font-size:42px;
    margin:15px 0 20px;
    color:#111;
}

.contact-info p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;
}

.contact-item{
    display:flex;
    gap:15px;
    align-items:center;
    margin-bottom:18px;
    font-size:17px;
    color:#333;
}

.contact-item i{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(200,155,44,.15);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group.full{
    grid-column:1/-1;
}

.form-group label{
    font-weight:700;
    margin-bottom:8px;
    color:#222;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:8px;
    padding:14px;
    font-size:15px;
    outline:none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--gold);
}

.contact-form button{
    border:0;
    cursor:pointer;
    grid-column:1/-1;
    font-weight:700;
    font-size:16px;
}

@media(max-width:900px){
    .contact-container{
        grid-template-columns:1fr;
    }
}

@media(max-width:600px){
    .contact-form{
        grid-template-columns:1fr;
        padding:25px;
    }

    .contact-info h2{
        font-size:32px;
    }
}
.footer{
    background:#111;
    color:#fff;
    padding:80px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    max-width:220px;
    margin-bottom:20px;
}

.footer-col h3{
    margin-bottom:20px;
    color:var(--gold);
}

.footer-col p{
    color:#ccc;
    line-height:1.8;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
    color:#ccc;
}

.footer-col ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:var(--gold);
}

.footer-col i{
    color:var(--gold);
    margin-right:8px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.10);
    margin-top:40px;
    padding-top:25px;
    text-align:center;
    color:#aaa;
}

@media(max-width:900px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .footer-grid{
        grid-template-columns:1fr;
    }

}
.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

nav{
    margin-left:auto;
    margin-right:40px;
}
.header .lang{
    display:flex;
    align-items:center;
    gap:10px;
    color:#111;
    font-weight:700;
}

.header .lang a,
.header .lang a:link,
.header .lang a:visited{
    color:#111 !important;
    text-decoration:none !important;
    font-weight:700;
    font-size:15px;
}

.header .lang a:hover,
.header .lang a.active{
    color:var(--gold) !important;
}
.success-message{
    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
    font-weight:600;
}