/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
  --gold: #d4af37;
  --dark: #121212;
  --darker: #0a0a0a;
  --card-bg: #1e1e1e;
  --text: #f0f0f0;
  --muted: #888888;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, .logo, .btn {
  font-family: var(--font-head);
  text-transform: uppercase;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.header {
  background: rgba(18, 18, 18, 0.95);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.3rem;
  color: var(--gold);
}

.nav a {
  margin-left: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  position: relative;
}

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

/* Menu Toggle for Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* =========================================
   3. HERO SECTIONS
   ========================================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: zoomEffect 20s infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}

.hero .content {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.1rem; color: #ddd; margin-bottom: 30px; }

.page-header {
  padding-top: 140px;
  padding-bottom: 40px;
  text-align: center;
  animation: fadeDown 1s ease-out;
}
.page-header h1 { font-size: 3rem; margin-bottom: 10px; }
.gold-text { color: var(--gold); }

/* =========================================
   4. BUTTONS & SECTIONS
   ========================================= */
.ctas { display: flex; gap: 15px; justify-content: center; }

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  display: inline-block;
}

.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: #fff; border-color: #fff; transform: translateY(-3px); }

.btn-ghost { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost:hover { background: #fff; color: #000; transform: translateY(-3px); }

.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.section-dark { background-color: var(--darker); width: 100%; max-width: 100%; }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 10px; }
.line { width: 60px; height: 3px; background: var(--gold); margin: 0 auto; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: var(--card-bg); padding: 40px 30px; border-radius: 12px; text-align: center; transition: 0.3s; border: 1px solid #333; }
.service-card:hover { transform: translateY(-10px); background: #252525; border-color: var(--gold); }
.service-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; color: #fff; }
.service-card p { color: var(--muted); font-size: 0.9rem; }

/* Gallery & About & Contact (Compressed for brevity, keeping all your styles) */
.gallery-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; padding-bottom: 80px; }
.gallery-item { position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 4px; overflow: hidden; background: #222; cursor: pointer; opacity: 0; animation: popIn 0.6s forwards; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.gallery-overlay i { color: var(--gold); font-size: 1.5rem; transform: scale(0); transition: 0.3s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

.filter-bar { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 1px solid #444; color: #aaa; padding: 8px 20px; border-radius: 30px; cursor: pointer; text-transform: uppercase; font-size: 0.8rem; transition: 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }

.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.image-frame { position: relative; }
.image-frame img { width: 100%; border-radius: 8px; filter: grayscale(20%); transition: 0.5s; }
.image-frame:hover img { filter: grayscale(0%); }
.image-frame::after { content: ''; position: absolute; top: 20px; left: 20px; width: 100%; height: 100%; border: 2px solid var(--gold); z-index: -1; border-radius: 8px; transition: 0.3s; }
.image-frame:hover::after { top: 10px; left: 10px; }

.stats-bar { display: flex; justify-content: space-around; text-align: center; margin-top: 60px; padding: 40px; background: var(--card-bg); border-radius: 8px; }
.stat-item h3 { font-size: 2.5rem; color: var(--gold); margin-bottom: 5px; }

.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.info-card { background: var(--card-bg); padding: 25px; border-radius: 8px; margin-bottom: 20px; display: flex; align-items: center; border: 1px solid #333; transition: 0.3s; }
.info-card:hover { border-color: var(--gold); transform: translateX(5px); }
.icon-box { width: 50px; height: 50px; background: rgba(212, 175, 55, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-right: 20px; flex-shrink: 0; }
.form-wrapper { background: var(--card-bg); padding: 30px; border-radius: 10px; border: 1px solid #333; }
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 12px; background: #2a2a2a; border: 1px solid #444; border-radius: 4px; color: #fff; font-family: var(--font-body); }
.form-control:focus { outline: none; border-color: var(--gold); background: #333; }
.submit-btn { width: 100%; padding: 15px; background: var(--gold); font-weight: 700; border: none; border-radius: 4px; cursor: pointer; }

.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.modal img { max-width: 95%; max-height: 90vh; border: 1px solid var(--gold); }
.close-btn { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 2rem; cursor: pointer; }
.footer { background: #000; padding: 40px; text-align: center; color: #666; font-size: 0.9rem; }
.footer a { color: #fff; margin: 0 5px; }

.nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.5); color: #d4af37; border: 2px solid #d4af37; width: 50px; height: 50px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: 0.3s; z-index: 10001; display: flex; align-items: center; justify-content: center; }
.nav-btn:hover { background: #d4af37; color: #000; }
.prev { left: 30px; }
.next { right: 30px; }

#scrollTopBtn { display: none; position: fixed; bottom: 30px; right: 30px; z-index: 99; border: none; outline: none; background-color: #d4af37; color: #000; cursor: pointer; padding: 15px; border-radius: 50%; font-size: 18px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); transition: 0.3s; }
#scrollTopBtn:hover { background-color: #fff; transform: translateY(-5px); }

/* Animations */
@keyframes zoomEffect { from { transform: scale(1); } to { transform: scale(1.1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes popIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* =========================================
   10. MOBILE MENU (FIXED & MOVED TO LEFT)
   ========================================= */
@media (max-width: 768px) {
  .header { padding: 0 20px; }
  
  .nav { display: none; } /* Hidden by default */

  .menu-toggle {
    display: block !important; 
    /* THIS COMMAND MOVES THE BUTTON TO THE LEFT */
    order: -1; 
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .hero h1 { font-size: 2.5rem; }
  .about-container, .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .image-frame::after { display: none; }
  .gallery-container { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stats-bar { flex-direction: column; gap: 20px; }
  .nav-btn { width: 40px; height: 40px; font-size: 1rem; border-width: 1px; }
  .prev { left: 10px; }
  .next { right: 10px; }
}

@media (min-width: 769px) {
  .nav { display: flex !important; }
  .menu-toggle { display: none !important; }
}