* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial;
  background: #050507;
  color: #fff;
  overflow-x: hidden;
}
/* FLOATING WHATSAPP ICON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* FLOATING EMAIL ICON */
.email-float {
  position: fixed;
  bottom: 95px; /* sits above WhatsApp */
  right: 25px;
  width: 60px;
  height: 60px;
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  z-index: 9999;
  transition: 0.3s ease;
}

.email-float img {
  width: 26px;
  height: 26px;
}

.email-float:hover {
  transform: scale(1.1);
  border-color: #d4af37;
}
/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.3), rgba(0,0,0,0.92));
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.5s ease;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 10px;
  font-weight: 200;
}

.hero p {
  margin-top: 15px;
  letter-spacing: 3px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-tagline {
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 35px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  letter-spacing: 3px;
  transition: 0.4s;
}

.btn:hover {
  background: #d4af37;
  color: black;
}

/* STRIP */
.strip {
  display: flex;
  justify-content: space-around;
  padding: 15px;
  font-size: 11px;
  letter-spacing: 3px;
  color: #aaa;
  background: rgba(255,255,255,0.03);
}

/* INTRO */
.intro {
  text-align: center;
  padding: 100px 20px;
}

.intro h2 {
  font-weight: 200;
  letter-spacing: 3px;
}

.intro p {
  max-width: 650px;
  margin: 20px auto;
  color: #bbb;
  line-height: 1.7;
}

/* EDITORIAL */
.editorial {
  padding: 60px 8%;
}

.feature {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.feature img {
  width: 50%;
  height: 520px;
  object-fit: cover;
  filter: contrast(1.1);
}

.text h3 {
  color: #d4af37;
  letter-spacing: 3px;
  font-size: 12px;
}

.text h2 {
  margin-top: 10px;
  font-weight: 200;
  letter-spacing: 2px;
}

.text p {
  margin-top: 15px;
  color: #bbb;
  line-height: 1.6;
  max-width: 400px;
}

.link {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 12px;
}

/* REVERSE */
.reverse {
  flex-direction: row-reverse;
}

/* PHILOSOPHY */
.philosophy {
  text-align: center;
  padding: 120px 20px;
}

.philosophy h2 {
  font-weight: 200;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.card {
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border: 1px solid rgba(212,175,55,0.2);
  transition: 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}

.card h3 {
  color: #d4af37;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 14px;
}

.card p {
  color: #bbb;
  font-size: 13px;
  line-height: 1.6;
}

/* QUOTE */
.quote {
  text-align: center;
  padding: 120px 20px;
  font-size: 2rem;
  font-style: italic;
  color: #ccc;
}

/* CONTACT - PERFECT CENTER FIX */
.contact {
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

.contact-card {
  background: #0a0a0d;
  border: 1px solid rgba(212,175,55,0.25);
  padding: 60px 50px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;

  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.contact-card h2 {
  font-weight: 200;
  letter-spacing: 4px;
  font-size: 22px;
}

.contact-email {
  color: #d4af37;
  font-size: 16px;
  text-decoration: none;
  font-family: Georgia, serif;
}

.contact-whatsapp {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-whatsapp:hover {
  transform: scale(1.05);
}

.contact-card p {
  color: #aaa;
  font-size: 12px;
  letter-spacing: 2px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #222;
  color: #777;
}

/* ANIMATION */
@keyframes fadeUp {
  from {opacity:0; transform: translateY(40px);}
  to {opacity:1; transform: translateY(0);}
}

/* MOBILE */
@media(max-width: 768px){
  .feature {
    flex-direction: column;
  }

  .feature img {
    width: 100%;
    height: 350px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 80px 20px;
  }

  .contact-card {
    padding: 40px 25px;
  }
}
