/*
Theme Name: Memon Graphics
Theme URI: https://memongraphics.in
Author: Zeeshan Memon
Author URI: https://memongraphics.in
Description: Premium Black & Gold luxury design theme for Memon Graphics. Editable, portfolio-ready, WhatsApp integrated.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: memon-graphics
Tags: black, gold, portfolio, agency, design-studio, dark, luxury
*/

/* ================================================================
   CSS VARIABLES — Edit Gold/Black colors here
   ================================================================ */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C96D;
  --gold-dark:    #9A7328;
  --gold-faint:   rgba(201,168,76,0.10);
  --gold-border:  rgba(201,168,76,0.18);
  --black:        #0A0A0A;
  --black-2:      #111111;
  --black-3:      #1A1A1A;
  --black-4:      #222222;
  --white:        #F5F0E8;
  --white-dim:    rgba(245,240,232,0.65);
  --white-faint:  rgba(245,240,232,0.10);
  --transition:   0.35s ease;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ================================================================
   TYPOGRAPHY UTILITIES
   ================================================================ */
.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
}
.gold-text  { color: var(--gold); }
.gold-divider {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 2.5rem;
}
.center-divider { margin-left: auto; margin-right: auto; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.95rem 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer; transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.95rem 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid rgba(245,240,232,0.30);
  cursor: pointer; transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ================================================================
   NAVIGATION / HEADER
   ================================================================ */
#masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  transition: padding var(--transition);
}
#masthead.scrolled { padding: 0.75rem 5%; }

/* Logo */
.site-branding a.site-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.1em;
}
.site-branding a.site-title span { color: var(--white); font-weight: 400; }
.custom-logo { height: 48px; width: auto; }

/* Nav links */
#primary-navigation ul {
  display: flex; gap: 2.5rem;
}
#primary-navigation a {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white-dim); position: relative;
}
#primary-navigation a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
#primary-navigation a:hover,
#primary-navigation .current-menu-item > a { color: var(--gold); }
#primary-navigation a:hover::after,
#primary-navigation .current-menu-item > a::after { transform: scaleX(1); }

/* WA button */
.header-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.3rem;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: all var(--transition);
}
.header-wa:hover { background: var(--gold); color: var(--black); }
.header-wa svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* Mobile toggle */
.menu-toggle {
  display: none; background: none;
  border: 1px solid var(--gold-border);
  color: var(--gold); padding: 0.45rem 0.75rem;
  font-size: 1.3rem; cursor: pointer; line-height: 1;
}

/* Social sidebar */
.social-sidebar {
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%); z-index: 500;
  display: flex; flex-direction: column;
  background: var(--black-2);
  border-left: 1px solid var(--gold-border);
}
.social-sidebar a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-bottom: 1px solid var(--gold-border);
  color: var(--white-dim);
  font-size: 0.68rem; font-weight: 700;
  transition: all var(--transition);
}
.social-sidebar a:last-child { border-bottom: none; }
.social-sidebar a:hover { background: var(--gold); color: var(--black); }

/* ================================================================
   HERO
   ================================================================ */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 10rem 5% 6rem;
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 75% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 30% 50% at 15% 30%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.1s forwards;
}
.hero-eyebrow::after {
  content: ''; width: 55px; height: 1px; background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700; line-height: 1.02;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.25s forwards;
}
.hero-title .line-white { display: block; color: var(--white); }
.hero-title .line-gold  { display: block; color: var(--gold); }

.hero-sub {
  font-size: 0.9rem; font-weight: 300;
  color: var(--white-dim); line-height: 1.85;
  max-width: 420px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-buttons {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 0.55s forwards;
}

.hero-trust {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 3rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
}
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--black);
  background: var(--black-3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700; color: var(--gold);
  margin-left: -10px;
}
.avatar-stack .av:first-child { margin-left: 0; }
.avatar-stack img { width: 100%; height: 100%; object-fit: cover; }
.trust-text strong {
  display: block; color: var(--gold);
  font-size: 0.82rem; font-weight: 600; margin-bottom: 0.1rem;
}
.trust-text span { font-size: 0.72rem; color: var(--white-dim); }

/* Hero visual */
.hero-visual {
  position: relative; height: 580px; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg-mono {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,168,76,0.09);
  user-select: none; pointer-events: none; line-height: 1;
}
.hero-image-wrap {
  position: relative; z-index: 3; width: 85%; max-width: 480px;
  animation: floatY 7s ease-in-out infinite;
}
/* ★ REPLACE THIS — upload hero image via Appearance > Customize > Hero Image ★ */
.hero-image-placeholder {
  width: 100%; aspect-ratio: 1;
  background: var(--black-3);
  border: 1px solid var(--gold-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; text-align: center;
  padding: 2rem;
  animation: floatY 7s ease-in-out infinite;
}
.hero-image-placeholder .ph-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold);
}
.hero-image-placeholder .ph-line { width: 40px; height: 1px; background: var(--gold); }
.hero-image-placeholder p { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-dim); }

.hero-badge {
  position: absolute; bottom: 80px; right: 0; z-index: 4;
  background: var(--gold); color: var(--black);
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1.2;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  animation: spin 22s linear infinite;
}
.hero-badge strong { font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1; }

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 5;
}
.scroll-mouse {
  width: 22px; height: 36px; border-radius: 11px;
  border: 1.5px solid var(--gold-border);
  position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute;
  width: 3px; height: 7px; border-radius: 2px;
  background: var(--gold);
  top: 6px; left: 50%; transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
.scroll-cue span { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white-dim); }

@keyframes floatY   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes spin     { to{transform:rotate(360deg)} }
@keyframes scrollDot{ 0%{opacity:1;top:6px} 100%{opacity:0;top:18px} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ================================================================
   SERVICES
   ================================================================ */
#services {
  padding: 6rem 5%;
  background: var(--black-2);
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; margin-bottom: 3.5rem;
}
.services-sub { font-size: 0.88rem; color: var(--white-dim); max-width: 340px; line-height: 1.8; }

.services-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--gold-border);
  border: 1px solid var(--gold-border);
}
.service-card {
  background: var(--black-2);
  padding: 2.2rem 1.5rem 2rem;
  position: relative; overflow: hidden;
  cursor: pointer; transition: background var(--transition);
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--black-3); }
.service-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 54px; height: 54px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; transition: all var(--transition);
}
.service-card:hover .svc-icon { border-color: var(--gold); background: var(--gold-faint); }
.svc-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.svc-title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 0.55rem; }
.svc-desc  { font-size: 0.75rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 1.2rem; }
.svc-arrow { color: rgba(201,168,76,0.35); font-size: 1.1rem; display: inline-block; transition: all var(--transition); }
.service-card:hover .svc-arrow { color: var(--gold); transform: translate(5px,-5px); }

/* ================================================================
   PORTFOLIO
   ================================================================ */
#portfolio { padding: 6rem 5%; background: var(--black); }

.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; gap: 2rem;
}
.portfolio-intro { font-size: 0.88rem; color: var(--white-dim); line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem; }

/* Grid: 1 tall left + 2×2 right */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 5px;
}
.port-item {
  position: relative; overflow: hidden;
  background: var(--black-3); cursor: pointer;
}
.port-item.large { grid-row: span 2; }

/* ★ REPLACE: swap .port-ph with actual <img> tags ★ */
.port-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.8rem;
}
.port-ph .big-ltr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,0.22);
  user-select: none; line-height: 1;
}
.port-ph .ph-tag { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white-dim); }

.ph-c1 { background: linear-gradient(145deg,#140d00,#2a1b00); }
.ph-c2 { background: linear-gradient(145deg,#001408,#002a12); }
.ph-c3 { background: linear-gradient(145deg,#140000,#2a0606); }
.ph-c4 { background: linear-gradient(145deg,#06001a,#10002e); }
.ph-c5 { background: linear-gradient(145deg,#001414,#002828); }

.port-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.port-item:hover .port-img { transform: scale(1.05); }

.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.97) 0%, transparent 55%);
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0.9; transition: opacity var(--transition);
}
.port-item:hover .port-overlay { opacity: 1; }
.port-cat  { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.port-name { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-top: 0.25rem; }

/* ================================================================
   STATS BAR
   ================================================================ */
#stats { background: var(--black-2); }
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--gold-border);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.stat-box {
  background: var(--black-2);
  padding: 3rem 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: background var(--transition);
}
.stat-box:hover { background: var(--black-3); }
.stat-icon { margin-bottom: 0.7rem; }
.stat-icon svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-dim); margin-top: 0.4rem; }

/* ================================================================
   ABOUT / WHY US
   ================================================================ */
#about { padding: 6rem 5%; background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.why-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.why-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: rgba(201,168,76,0.18); min-width: 40px; line-height: 1; }
.why-title { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.why-desc  { font-size: 0.78rem; color: var(--white-dim); line-height: 1.75; }

.about-visual { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.ring { border-radius: 50%; border: 1px solid var(--gold-border); position: absolute; display: flex; align-items: center; justify-content: center; }
.ring-outer { width: 340px; height: 340px; animation: rotateSlow 28s linear infinite; }
.ring-outer::before { content:''; position:absolute; width:10px; height:10px; border-radius:50%; background:var(--gold); top:-5px; left:50%; transform:translateX(-50%); }
.ring-mid   { width: 240px; height: 240px; border-color: rgba(201,168,76,0.25); }
.ring-core  { width: 140px; height: 140px; border: none; background: var(--black-2); flex-direction: column; text-align: center; gap: 0.2rem; }
.ring-core .big   { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:700; color:var(--gold); line-height:1; }
.ring-core .small { font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--white-dim); }
@keyframes rotateSlow { to { transform:rotate(360deg); } }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
#testimonials { padding: 6rem 5%; background: var(--black-2); }
.testi-head { text-align: center; margin-bottom: 3.5rem; }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card {
  background: var(--black-3);
  border: 1px solid var(--gold-border);
  padding: 2rem 1.8rem;
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: rgba(201,168,76,0.4); }
.testi-qmark { font-family:'Cormorant Garamond',serif; font-size:5rem; font-weight:700; color:rgba(201,168,76,0.12); line-height:0.6; margin-bottom:1rem; user-select:none; }
.testi-stars { color:var(--gold); font-size:0.9rem; letter-spacing:0.08em; margin-bottom:0.9rem; }
.testi-text  { font-size:0.82rem; color:var(--white-dim); line-height:1.82; font-style:italic; margin-bottom:1.5rem; }
.testi-author { display:flex; align-items:center; gap:0.9rem; }
.testi-av {
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(201,168,76,0.3);
  background:rgba(201,168,76,0.08);
  display:flex; align-items:center; justify-content:center;
  font-size:0.78rem; font-weight:700; color:var(--gold);
  overflow:hidden; flex-shrink:0;
}
.testi-av img { width:100%; height:100%; object-fit:cover; }
.testi-name { font-size:0.85rem; font-weight:600; color:var(--white); }
.testi-role { font-size:0.7rem; color:var(--white-dim); margin-top:0.1rem; }

/* ================================================================
   CONTACT
   ================================================================ */
#contact { padding: 6rem 5%; background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }

.contact-items { display:flex; flex-direction:column; gap:1.5rem; margin-top:2rem; }
.cinfo-item { display:flex; gap:1rem; align-items:flex-start; }
.cinfo-icon { width:46px; height:46px; min-width:46px; border:1px solid rgba(201,168,76,0.22); display:flex; align-items:center; justify-content:center; }
.cinfo-icon svg { width:19px; height:19px; stroke:var(--gold); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.cinfo-label { font-size:0.6rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); margin-bottom:0.2rem; }
.cinfo-val   { font-size:0.88rem; color:var(--white-dim); }

.contact-form { display:flex; flex-direction:column; gap:1rem; margin-top:2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.fg { display:flex; flex-direction:column; gap:0.4rem; }
.fg label { font-size:0.6rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--white-dim); }
.fg input,
.fg textarea,
.fg select {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 0.88rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; outline: none; width: 100%;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus { border-color: var(--gold); }
.fg input::placeholder,
.fg textarea::placeholder { color: rgba(245,240,232,0.28); }
.fg textarea { resize:vertical; min-height:130px; }

/* ================================================================
   FOOTER
   ================================================================ */
#colophon {
  background: var(--black-2);
  border-top: 1px solid var(--gold-border);
  padding: 4rem 5% 2rem;
}
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-name { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:700; color:var(--gold); letter-spacing:0.1em; margin-bottom:0.9rem; }
.footer-tagline { font-size:0.78rem; color:var(--white-dim); line-height:1.8; max-width:260px; }
.footer-col-title { font-size:0.6rem; font-weight:600; letter-spacing:0.24em; text-transform:uppercase; color:var(--gold); margin-bottom:1.3rem; }
.footer-link-list { display:flex; flex-direction:column; gap:0.65rem; }
.footer-link-list a { font-size:0.78rem; color:var(--white-dim); }
.footer-link-list a:hover { color:var(--gold); }

.footer-bottom {
  border-top:1px solid rgba(201,168,76,0.08);
  padding-top:1.5rem;
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
}
.footer-copy { font-size:0.72rem; color:rgba(245,240,232,0.3); }
.footer-social { display:flex; gap:0.6rem; }
.footer-social a {
  width:36px; height:36px;
  border:1px solid rgba(201,168,76,0.18);
  display:flex; align-items:center; justify-content:center;
  font-size:0.7rem; font-weight:700; color:var(--white-dim);
  transition: all var(--transition);
}
.footer-social a:hover { border-color:var(--gold); color:var(--gold); }

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.wa-fab {
  position:fixed; bottom:2rem; right:2rem; z-index:900;
  background:#25D366; color:#fff;
  width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 24px rgba(37,211,102,0.4);
  transition:transform var(--transition);
}
.wa-fab:hover { transform:scale(1.1); }
.wa-fab svg { width:28px; height:28px; fill:#fff; }

/* ================================================================
   WORDPRESS CORE CLASSES
   ================================================================ */
.aligncenter { display:block; margin:0 auto; }
.alignright  { float:right; margin-left:1.5rem; }
.alignleft   { float:left; margin-right:1.5rem; }
.wp-caption-text { font-size:0.78rem; color:var(--white-dim); text-align:center; margin-top:0.4rem; }
.screen-reader-text { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:1100px){
  .services-grid { grid-template-columns:repeat(3,1fr); }
  .portfolio-grid { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .port-item.large { grid-row:auto; grid-column:span 2; height:300px; }
}
@media(max-width:900px){
  #hero { grid-template-columns:1fr; text-align:center; padding-top:8rem; }
  .hero-visual { display:none; }
  .hero-eyebrow { justify-content:center; }
  .hero-buttons, .hero-trust { justify-content:center; }
  .hero-sub { max-width:100%; }
  .services-header { flex-direction:column; }
  .portfolio-header { flex-direction:column; }
  .stats-bar { grid-template-columns:1fr 1fr; }
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .about-visual { height:300px; }
  .ring-outer { width:260px; height:260px; }
  .ring-mid   { width:185px; height:185px; }
  .testi-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; gap:3rem; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  #primary-navigation { display:none; }
  .menu-toggle { display:block; }
  .social-sidebar { display:none; }
  #primary-navigation.active { display:flex; }
}
@media(max-width:580px){
  .services-grid { grid-template-columns:1fr; }
  .portfolio-grid { grid-template-columns:1fr; }
  .port-item.large { grid-column:auto; height:260px; }
  .stats-bar { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .hero-buttons { flex-direction:column; align-items:center; }
}
