/* ===========================
   WEBSITE FACTORY — Base Template
   Theme: Deep Navy / Gold / White / Silver
   =========================== */

:root {
  --navy: #0a1628;
  --navy-mid: #122040;
  --navy-light: #1a2e55;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --white: #ffffff;
  --silver: #c0c8d8;
  --silver-light: #e8ecf4;
  --text-body: #d0d8e8;
  --text-muted: #8898b0;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-gold: 0 0 24px rgba(201,168,76,0.15);
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

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

.section { padding: 100px 0; }

/* SECTION LABELS */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-tag.center { display: block; text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-title.center { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #128C7E; color: white; }
.btn-email {
  background: var(--navy-light);
  color: var(--silver);
  border-color: var(--silver);
}
.btn-email:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}
.btn-nav:hover { background: var(--gold-light); }
.full-width { width: 100%; justify-content: center; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold) !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              linear-gradient(135deg, #0a1628 0%, #122040 50%, #0a1628 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(26,46,85,0.8) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 24px 80px;
}
.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 20px;
}
.hero-text {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  opacity: 0.6;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ABOUT */
.about { background: var(--navy-mid); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.portrait-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.portrait-inner { text-align: center; color: var(--text-muted); }
.portrait-icon { font-size: 3rem; color: var(--gold); margin-bottom: 12px; }
.about-lead {
  font-size: 1.1rem;
  color: var(--silver);
  margin-bottom: 16px;
  font-style: italic;
}
.about-body { margin-bottom: 40px; }
.about-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* SERVICES */
.services { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.service-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* GALLERY */
.gallery { background: var(--navy-mid); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.gallery-placeholder:hover { border-color: var(--gold); }

/* VIDEO */
.video-section { background: var(--navy); }
.video-placeholder {
  margin-top: 48px;
  aspect-ratio: 16/9;
  background: var(--navy-mid);
  border: 2px dashed rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.video-inner { text-align: center; color: var(--text-muted); }
.play-btn {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 12px;
  cursor: pointer;
}

/* TESTIMONIALS / AWARDS */
.testimonials { background: var(--navy-mid); }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 64px;
}
.award-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.award-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.award-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.award-card h3 { font-family: var(--font-heading); color: var(--white); margin-bottom: 8px; }
.award-card p { font-size: 0.85rem; color: var(--text-muted); }
.press-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.press-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.press-item {
  padding: 10px 24px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  color: var(--silver);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* CONTACT */
.contact { background: var(--navy); }
.contact-sub { text-align: center; color: var(--text-muted); margin-bottom: 56px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-item { margin-bottom: 24px; }
.contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item a { color: var(--silver); }
.contact-item a:hover { color: var(--gold); }
.contact-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; }

/* FOOTER */
.footer {
  background: var(--navy-mid);
  padding: 48px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner { text-align: center; }
.footer-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-copy { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.footer-location { font-size: 0.8rem; color: var(--text-muted); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,22,40,0.98); padding: 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .contact-buttons { flex-direction: column; }
}
