:root{
  --bg1:#07080b;
  --bg2:#0b0f1a;

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);

  --gold1:#d4af37;
  --gold2:#f5d77b;

  --glass: rgba(255,255,255,.06);
  --glass2: rgba(255,255,255,.10);
  --line: rgba(255,255,255,.12);
  --shadow: 0 28px 80px rgba(0,0,0,.45);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}

html, body{width:100%; overflow-x:hidden;}

body{
  font-family:"Inter",system-ui,Arial,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,.18), transparent 45%),
    radial-gradient(circle at bottom right, rgba(245,215,123,.12), transparent 45%),
    linear-gradient(135deg,var(--bg1),var(--bg2));
  color:var(--text);
  min-height:100vh;
}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 44px;
  background: rgba(5,6,10,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.social-icons{
  display: flex;
  gap: 10px;
  margin-left: 14px;
}

.social-icons a{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(245,215,123,.95);
  transition: .25s ease;
}

.social-icons a:hover{
  transform: translateY(-2px);
  background: rgba(212,175,55,.18);
}

.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color:var(--text);
}

.brand img{
  width:60px; height:60px;
  border-radius:14px;
  box-shadow: 0 16px 45px rgba(0,0,0,.45);
}

.brand-text{display:flex; flex-direction:column; line-height:1;}
.brand-name{
  font-family:"Playfair Display",serif;
  font-weight:700;
  font-size:18px;
}
.brand-tag{
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.nav-links{
  list-style:none;
  display:flex; gap:18px;
  margin:0;
  padding:0;
}
.nav-links li{margin:0; padding:0;}

.nav-links a{
  color:var(--muted);
  text-decoration:none;
  font-weight:700;
  padding:10px 12px;
  border-radius:12px;
  transition:.25s ease;
}
.nav-links a:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
}
.nav-links a.active{
  color:var(--text);
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.24);
}

/* HERO SECTION + typography */
.eyebrow{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  color: rgba(245,215,123,.90);
  margin-bottom:10px;
}

.display{
  font-family:"Playfair Display",serif;
  font-size:56px;
  letter-spacing:-.8px;
  line-height:1.05;
  margin-bottom:14px;
}

.gold{
  background: linear-gradient(90deg,var(--gold1),var(--gold2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.lead{
  font-size:18px;
  color:var(--muted);
  max-width:680px;
}

/* SECTIONS */
.section{
  padding: 78px 10%;
  position:relative;
}
.section::before,
.section::after{
  content:"";
  position:absolute;
  width:320px;height:320px;border-radius:50%;
  filter: blur(2px);
  z-index:-1;
  opacity:.65;
}
.section::before{top:28px;left:-120px;background:rgba(212,175,55,.14);}
.section::after{bottom:28px;right:-120px;background:rgba(245,215,123,.10);}

.section-head{
  text-align:center;
  margin-bottom:26px;
}
.section-head h2{
  font-family:"Playfair Display",serif;
  font-size:38px;
  letter-spacing:-.6px;
}
.section-head p{color:var(--muted); margin-top:8px;}

.hero{padding: 86px 10% 22px;}
.hero-split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.trust-row{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:18px;
}
.trust-pill{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.2px;
  background: linear-gradient(90deg,var(--gold1),var(--gold2));
  color:#0d0f14;
  box-shadow: var(--shadow);
  transition: transform .22s ease, filter .22s ease;
}
.btn:hover{transform: translateY(-3px); filter:brightness(1.03);}

.btn.ghost{
  background: rgba(255,255,255,.05);
  color:var(--text);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.btn.ghost:hover{background: rgba(255,255,255,.08);}

.btn.small{
  padding:10px 14px;
  border-radius:12px;
  font-size:13px;
}

/* Split sections */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}

.image-card{
  background: var(--glass);
  border:1px solid var(--line);
  border-radius:22px;
  padding:14px;
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.image-card img{
  width:100%;
  border-radius:16px;
  display:block;
  transition: transform .35s ease;
}
.image-card:hover img{transform: scale(1.03);}

.image-caption{
  position:absolute;
  top:14px; left:14px;
  display:flex; gap:10px;
}

.chip{
  font-size:12px;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
}
.chip.gold{
  background: rgba(212,175,55,.14);
  border-color: rgba(212,175,55,.22);
  color: rgba(245,215,123,.95);
}

/* Grid */
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
}

/* Cards animation */
.card{
  background: var(--glass);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  opacity:0;
  transform: translateY(26px);
}
.card.show{opacity:1; transform: translateY(0);}
.card:hover{transform: translateY(-8px);}

.card h3{
  font-family:"Playfair Display",serif;
  font-size:22px;
  margin-bottom:10px;
}
.card p, .card li{color:var(--muted); line-height:1.55;}
.card ul{margin-left:18px;}

.icon{display:inline-block; margin-right:8px;}

.price{
  margin-top:12px;
  font-weight:900;
  color: rgba(245,215,123,.95);
}

/* Portfolio */
.project{padding:0; overflow:hidden;}
.project-img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
  transition: transform .35s ease;
}
.project:hover .project-img{transform: scale(1.05);}
.project-body{padding:16px 18px 18px;}

/* CTA */
.cta{padding-top:40px;}
.cta-inner{
  text-align:center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 30px 20px;
  box-shadow: var(--shadow);
}

.cta-actions{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Contact pills */
.contact-pills{
  display:flex;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  color: var(--text);
  text-decoration:none;
  font-weight:800;
}

/* Forms */
form{
  width:100%;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

form label{
  display:block;
  margin-top: 12px;
  font-weight:800;
  color: rgba(255,255,255,.85);
}

form input, form textarea{
  width:100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}

form button{
  width:100%;
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border:none;
  background: linear-gradient(90deg,var(--gold1),var(--gold2));
  color:#0d0f14;
  font-weight: 900;
  cursor:pointer;
}

form button:hover{filter: brightness(1.02); transform: translateY(-1px);}

/* Footer */
.footer{
  text-align:center;
  padding: 26px 10%;
  color: rgba(255,255,255,.65);
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}

/* Loader */
#loader{
  position: fixed;
  inset:0;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 99999;
}

.spinner{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.2);
  border-top-color: rgba(245,215,123,.95);
  animation: spin 1s linear infinite;
}

@keyframes spin{to{transform: rotate(360deg);}}

/* Showcase hero card */
.hero-showcase-bg{
  position: relative;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);

  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.65)),
    url("images/portfolio-logos.png");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 20%;
}

.showcase-overlay{
  position:absolute;
  top:14px; left:14px;
  display:flex;
  gap:10px;
  z-index: 2;
}

.showcase-bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding: 18px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,0));
  z-index: 2;
}

.showcase-bottom h3{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size: 22px;
  color: rgba(245,215,123,.95);
}

.showcase-bottom p{
  margin-top: 6px;
  color: rgba(255,255,255,.80);
  font-size: 13px;
  line-height: 1.4;
}

/* Mobile hamburger */
.menu-toggle{
  display:none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(245,215,123,.95);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 20px;
  cursor:pointer;
}

/* Fix images forcing overflow */
img{max-width:100%; height:auto; display:block;}

/* MOBILE FIX PACK */
@media (max-width: 900px){
  .nav{padding: 12px 14px; flex-wrap:wrap;}
  .menu-toggle{display:inline-flex;}
  .brand img{width:52px; height:52px;}

  .nav-links{
    display:none;
    width:100%;
    flex-direction:column;
    margin-top:10px;
    gap:8px;
    background: rgba(0,0,0,.92);
    border: 1px solid rgba(255,255,255,.10);
    border-radius:16px;
    padding:12px;
  }

  .nav-links.open{display:flex;}
  .nav-links a{ text-align:center; padding:12px; }

  .hero, .section{padding: 56px 6%;}
  .hero-split, .split{grid-template-columns:1fr; gap:18px;}

  .display{font-size: 42px;}
  .lead{font-size: 16px;}

  .btn, .btn.ghost{width:100%;}
  .hero-actions{width:100%;}
  .cta-actions{flex-direction:column;}
  .pill{width:100%; justify-content:center;}

  .hero-showcase-bg{height: 300px; background-position: center 0%;}
}

@media (max-width: 600px){
  .display{font-size: 38px;}
  .hero-showcase-bg{height: 260px; background-position: center 0%;}
}

/* WhatsApp floating button */
.whatsapp-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size: 28px;
  background: #25D366;
  color:#fff;
  z-index: 9999;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.footer-socials{
  margin-top: 10px;
  display:flex;
  justify-content:center;
  gap: 18px;
}

.footer-socials a{
  color: rgba(245,215,123,.9);
  text-decoration:none;
  font-weight:700;
}

.footer-socials a:hover{
  text-decoration: underline;
}

.social-float{
  position: fixed;
  left: 16px;
  bottom: 50%;
  transform: translateY(50%);
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:999;
}

.social-float a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:20px;
  color: rgba(245,215,123,.95);
}

@media(max-width:900px){
  .social-float{ display:none; }
}

.social-icons i,
.social-float i{
  font-size: 18px;
}

.footer-socials i{
  margin-right: 6px;
}