:root {
    --primary: #0a0a0a;
    --secondary: #c5a059;
    --accent: #e5c185;
    --text: #ffffff;
    --text-dark: #333333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: var(--white); color: var(--text-dark); overflow-x: hidden; line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Header & Nav */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 20px 0; transition: var(--transition);
    background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px);
}
header.scrolled { padding: 10px 0; background: var(--primary); box-shadow: 0 5px 20px rgba(0,0,0,0.2); }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo h1 { font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: 2px; }
.logo h1 span { color: var(--secondary); }
.logo p { font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-top: -5px; }

nav ul { display: flex; gap: 30px; }
nav ul li a { color: var(--white); font-weight: 500; font-size: 15px; text-transform: uppercase; }
nav ul li a:hover { color: var(--secondary); }

.nav-contact { display: flex; align-items: center; gap: 15px; }
.btn-call { 
    background: var(--secondary); color: var(--white); 
    padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 14px;
}
.btn-call:hover { background: var(--accent); transform: translateY(-2px); }

/* Hero Section */
.hero {
    height: 100vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/bolme-3.jpg') no-repeat center center/cover;
    display: flex; align-items: center; color: var(--white); position: relative;
}
.hero-content { max-width: 800px; animation: fadeInUp 1s ease; }
.hero-content h2 { font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-content h2 span { color: var(--secondary); }
.hero-content p { font-size: 20px; margin-bottom: 40px; opacity: 0.9; border-left: 4px solid var(--secondary); padding-left: 20px; }

.hero-btns { display: flex; gap: 20px; }
.btn-main { 
    padding: 15px 40px; border-radius: 5px; font-weight: 700; text-transform: uppercase; 
    letter-spacing: 1px; transition: var(--transition);
}
.btn-gold { background: var(--secondary); color: var(--white); }
.btn-gold:hover { background: var(--white); color: var(--primary); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* Sections */
section { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 70px; }
.section-head h6 { color: var(--secondary); text-transform: uppercase; letter-spacing: 3px; font-weight: 700; margin-bottom: 10px; }
.section-head h2 { font-size: 42px; font-weight: 800; color: var(--primary); position: relative; padding-bottom: 20px; }
.section-head h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--secondary); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: 10px; box-shadow: 30px 30px 0 var(--bg-light); }
.about-text h3 { font-size: 32px; margin-bottom: 25px; color: var(--primary); }
.about-text p { margin-bottom: 20px; font-size: 17px; color: #555; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 25px; }
.gallery-item { 
    position: relative; overflow: hidden; border-radius: 10px; height: 300px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(10, 10, 10, 0.8); display: flex; flex-direction: column; 
    justify-content: center; align-items: center; opacity: 0; transition: var(--transition);
    color: var(--white); padding: 20px; text-align: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }

/* Contact */
.contact-section { background: var(--primary); color: var(--white); }
.contact-section .section-head h2 { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
.contact-info-card i { font-size: 24px; color: var(--secondary); background: rgba(197, 160, 89, 0.1); padding: 15px; border-radius: 10px; }
.contact-info-card h5 { font-size: 18px; margin-bottom: 5px; color: var(--secondary); }

.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.action-btn { 
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px; border-radius: 5px; font-weight: 700; color: var(--white);
}
.btn-wp { background: #25d366; }
.btn-sms { background: #007bff; }
.btn-tel { background: var(--secondary); }

/* Footer */
footer { padding: 50px 0; background: #050505; color: rgba(255,255,255,0.6); text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
footer a { color: var(--secondary); font-weight: 600; }

/* Sticky Mobile */
.mobile-nav { 
    display: none; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); 
    width: 90%; background: var(--primary); padding: 10px; border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 2000; justify-content: space-around;
}
.mobile-nav a { color: var(--white); font-size: 20px; display: flex; flex-direction: column; align-items: center; font-size: 10px; }
.mobile-nav a i { font-size: 20px; margin-bottom: 3px; color: var(--secondary); }

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

@media (max-width: 992px) {
    .hero-content h2 { font-size: 48px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    nav, .nav-contact { display: none; }
    .mobile-nav { display: flex; }
}
