.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ==========================================================
   GUDANI MASHANYU — Portfolio CSS v3.0
   Clean rebuild. Paste into WordPress > Additional CSS
   or WPCode > Add Snippet > CSS
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --blue:        #1a5fa8;
  --blue-light:  #e8f0fb;
  --blue-mid:    #3478c8;
  --yellow:      #f5c800;
  --yellow-pale: #fffbe6;
  --black:       #0d0d0d;
  --white:       #ffffff;
  --offwhite:    #f8f8f6;
  --gray-100:    #f2f2ef;
  --gray-200:    #e2e2de;
  --text:        #1a1a18;
  --text-muted:  #6b6b65;
  --radius:      10px;
  --radius-lg:   16px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --speed:       0.25s;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   BASE SECTION — every section gets this
══════════════════════════════════════════ */
.gm-section {
  width: 100%;
  padding: 60px 30px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

/* Inner content wrapper — uniform max-width across all sections */
.gm-section-inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Gap between sections — the margin-bottom creates the 15px+ gap */
.gm-section + .gm-section {
  margin-top: 0; /* background colours already separate them visually */
}

/* ── CENTRED SECTION HEADING — used on all sections except hero ── */
.gm-section-head {
  text-align: center;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.section-label::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

h2.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 12px;
  text-align: center;
}

.section-intro {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.btn-primary:hover {
  background: #1450a0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,95,168,0.25);
  color: var(--white);
}

.btn-outline {
  border: 1.5px solid var(--gray-200);
  color: var(--text);
  padding: 12px 26px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  transition: border-color var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.btn-yellow:hover {
  background: #e0b700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,200,0,0.35);
}

.btn-wa-outline {
  border: 1.5px solid #25d366;
  color: #25d366;
  padding: 12px 26px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.btn-wa-outline:hover {
  background: #25d366;
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════════ */
.gm-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 30px 60px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.gm-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: var(--blue-light);
  clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
  pointer-events: none;
}

.gm-hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
}

h1.hero-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  text-align: left;
}
h1.hero-name em { color: var(--blue); font-style: normal; }

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.75;
  text-align: left;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat-block { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--blue);
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero inner — flex row, content left, avatar right */
.gm-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

/* Avatar */
.gm-hero-visual {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.avatar-frame {
  width: 280px;
  height: 360px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--white);
  box-shadow: 0 8px 40px rgba(26,95,168,0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.avatar-frame:hover { transform: translateY(-6px); box-shadow: 0 18px 55px rgba(26,95,168,0.22); }
.avatar-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.5s var(--ease); }
.avatar-frame:hover img { transform: scale(1.03); }
.avatar-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.scroll-indicator span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line { width: 36px; height: 1px; background: var(--gray-200); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--blue); animation: scroll-pulse 1.8s ease-in-out infinite; }
@keyframes scroll-pulse { 0%{left:-100%} 50%{left:0%} 100%{left:100%} }

/* ══════════════════════════════════════════
   SECTION 2 — ABOUT
══════════════════════════════════════════ */
.gm-about {
  background: var(--offwhite);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text p strong { color: var(--text); font-weight: 500; }

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.skill-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
  transition: border-color var(--speed), color var(--speed), background var(--speed);
  cursor: default;
}
.skill-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.skill-tag.highlight { background: var(--blue-light); border-color: #b5cef0; color: var(--blue); }

.timeline {
  border-left: 2px solid var(--gray-200);
  padding-left: 24px;
}
.tl-item { margin-bottom: 24px; position: relative; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
  margin-left: -4px;
  border: 2px solid var(--offwhite);
  transition: background var(--speed), transform var(--speed);
}
.tl-item:hover::before { background: var(--yellow); transform: scale(1.3); }
.tl-year { font-size: 0.72rem; font-weight: 500; color: var(--blue); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 4px; }
.tl-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════════
   SECTION 3 — PORTFOLIO
══════════════════════════════════════════ */
.gm-portfolio-section {
  background: var(--white);
}

/* Geometric animated background canvas */
.geo-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* All section content sits above geo canvas */
.gm-section > *:not(.geo-canvas) {
  position: relative;
  z-index: 1;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.portfolio-filters .filter-btn,
.portfolio-filters .filter-btn:link,
.portfolio-filters .filter-btn:visited {
  background: var(--white) !important;
  border: 1px solid var(--gray-200) !important;
  color: var(--text-muted) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  padding: 7px 16px !important;
  border-radius: 20px !important;
  cursor: pointer !important;
  transition: all var(--speed) var(--ease) !important;
  font-family: 'DM Sans', sans-serif !important;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.portfolio-filters .filter-btn:hover,
.portfolio-filters .filter-btn:focus {
  background: var(--blue-light) !important;
  border-color: var(--blue) !important;
  color: var(--blue) !important;
  box-shadow: none !important;
  outline: none !important;
}
.portfolio-filters .filter-btn.active,
.portfolio-filters .filter-btn.active:hover,
.portfolio-filters .filter-btn.active:focus {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s ease;
  will-change: transform;
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(26,95,168,0.11); border-color: #b5cef0; }
.portfolio-card.is-hidden { opacity: 0; pointer-events: none; position: absolute; }

.card-thumb { height: 180px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card-thumb-inner {
  width: 68%; height: 73%;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 7px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.portfolio-card:hover .card-thumb-inner { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.07); }
.card-thumb-domain { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; }
.card-thumb-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.card-body { padding: 14px 16px 16px; }
.card-title { font-weight: 500; font-size: 0.92rem; color: var(--text); margin-bottom: 3px; }
.card-url { font-size: 0.76rem; color: var(--blue); }
.card-meta { margin-top: 9px; display: flex; gap: 5px; flex-wrap: wrap; }
.card-tag { font-size: 0.68rem; padding: 3px 9px; border-radius: 12px; background: var(--gray-100); color: var(--text-muted); }
.card-tag.featured { background: var(--yellow-pale); color: #7a6000; }

/* ══════════════════════════════════════════
   SECTION 4 — SERVICES
══════════════════════════════════════════ */
.gm-services {
  background: var(--offwhite);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
  cursor: default;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(26,95,168,0.09); border-color: #b5cef0; }
.service-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 14px; transition: background var(--speed), transform var(--speed); }
.service-card:hover .service-icon { background: var(--blue); transform: scale(1.08); }
.service-title { font-weight: 500; font-size: 0.93rem; color: var(--text); margin-bottom: 7px; }
.service-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.68; }

/* ══════════════════════════════════════════
   SECTION 5 — CONTACT
══════════════════════════════════════════ */
.gm-contact {
  background: var(--white);
  color: var(--text);
}


.gm-contact .gm-section-head { position: relative; z-index: 1; }
.gm-contact .section-label { color: var(--blue); }
.gm-contact .section-label::before,
.gm-contact .section-label::after { background: var(--yellow); }
.gm-contact h2.section-title { color: var(--black); }
.gm-contact .section-intro { color: var(--text-muted); }

/* Contact info cards — 3 cols, wraps to 2 then 1 */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background var(--speed), border-color var(--speed), transform var(--speed);
}
.contact-card:hover { background: var(--blue-light); border-color: #b5cef0; transform: translateY(-3px); }
.contact-card a { text-decoration: none; }
.contact-card-icon { font-size: 1.2rem; display: block; margin-bottom: 4px; }
.contact-card-label { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.contact-card-val { font-size: 0.88rem; color: var(--text); line-height: 1.45; }
.contact-card-val a { color: var(--blue); transition: color var(--speed); }
.contact-card-val a:hover { color: var(--blue-mid); }

/* CTA strip */
.contact-cta-strip {
  background: var(--offwhite);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 12px;
  transition: border-color var(--speed), background var(--speed);
}
.contact-cta-strip:hover { background: var(--blue-light); border-color: #b5cef0; }
.contact-cta-strip-text { flex: 1; min-width: 200px; }
.contact-cta-strip-text p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }
.contact-cta-strip-text strong { color: var(--text); font-weight: 500; }
.contact-cta-strip-btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════
   HEADER — kept here as reference only.
   Paste gudani-header.html separately in WP.
══════════════════════════════════════════ */
.gm-header, .gm-header * { box-sizing: border-box; }
.gm-header { position: relative !important; top: auto !important; z-index: 1000; transition: box-shadow var(--speed); margin: 0 !important; padding: 0 !important; }
.gm-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
/* Elementor sticky header fix — prevent double sticky bar */
.elementor-sticky--active .gm-header { position: relative !important; top: auto !important; }
.gm-nav { background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--gray-200); padding: 0 30px; display: flex; align-items: center; justify-content: space-between; height: 64px; position: relative; z-index: 10; }
.nav-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 600; color: var(--black); text-decoration: none; letter-spacing: 0.01em; transition: opacity var(--speed); }
.nav-logo:hover { opacity: 0.75; }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); transition: color var(--speed); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transition: transform var(--speed); transform-origin: left; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta { background: var(--blue); color: var(--white) !important; padding: 8px 18px; border-radius: 6px; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-mid) !important; color: var(--white) !important; transform: translateY(-1px); }
.nav-cta, .nav-cta:link, .nav-cta:visited { color: #ffffff !important; }
.nav-cta:hover, .nav-cta:focus, .nav-cta:active { color: #ffffff !important; }
.gm-nav .nav-cta, .gm-nav .nav-cta:link, .gm-nav .nav-cta:visited, .gm-header .nav-cta { color: #ffffff !important; }
.gm-nav .nav-cta:hover, .gm-nav .nav-cta:focus, .gm-header .nav-cta:hover { color: #ffffff !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; z-index: 20; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s ease; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav-drawer { position: fixed; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 1.5rem 30px 2rem; transform: translateY(-110%); transition: transform 0.35s var(--ease); z-index: 999; box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.nav-drawer.is-open { transform: translateY(0); }
.nav-drawer-links { list-style: none; display: flex; flex-direction: column; }
.nav-drawer-links li { border-bottom: 1px solid var(--gray-100); }
.nav-drawer-links a { display: block; padding: 14px 0; font-size: 1rem; font-weight: 500; color: var(--text); text-decoration: none; transition: color var(--speed); }
.nav-drawer-links a:hover { color: var(--blue); }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* ══════════════════════════════════════════
   FOOTER — kept here as reference only.
   Paste gudani-footer.html separately in WP.
══════════════════════════════════════════ */
.gm-footer { background: #060606; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 2rem; padding: 48px 30px 32px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--white); display: block; margin-bottom: 8px; }
.footer-logo span { color: var(--blue-mid); }
.footer-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.38); line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.42); text-decoration: none; transition: color var(--speed); }
.footer-links a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 8px; }
.footer-social-link { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.48); text-decoration: none; transition: background var(--speed), color var(--speed), transform var(--speed); }
.footer-social-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 16px 30px; font-size: 0.76rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 6px; }

/* ══════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════ */
.fab-stack { position: fixed; bottom: 24px; right: 20px; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; z-index: 9999; }
.fab-whatsapp { display: flex; align-items: center; gap: 9px; background: #25d366; color: #fff; padding: 11px 16px 11px 13px; border-radius: 50px; text-decoration: none; font-size: 0.8rem; font-weight: 500; box-shadow: 0 4px 16px rgba(37,211,102,0.38); transition: transform var(--speed), box-shadow var(--speed); white-space: nowrap; font-family: 'DM Sans', sans-serif; }
.fab-whatsapp:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 24px rgba(37,211,102,0.45); color: #fff; }
.fab-wa-icon { position: relative; display: flex; align-items: center; justify-content: center; }
.fab-wa-icon::before { content: ''; position: absolute; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.3); animation: wa-pulse 2.2s ease-out infinite; }
@keyframes wa-pulse { 0%{transform:scale(0.8);opacity:0.8} 70%{transform:scale(1.6);opacity:0} 100%{transform:scale(1.6);opacity:0} }
.fab-top { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--gray-200); display: flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; color: var(--text); box-shadow: 0 2px 12px rgba(0,0,0,0.09); opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform var(--speed), border-color var(--speed); }
.fab-top.visible { opacity: 1; pointer-events: auto; }
.fab-top:hover { transform: translateY(-3px); border-color: var(--blue); box-shadow: 0 5px 18px rgba(26,95,168,0.17); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .gm-section { padding: 50px 20px; }
  .gm-hero { padding: 60px 20px 50px; min-height: auto; }
  .gm-hero::before { display: none; }
  .gm-hero-visual { display: none; }
  .gm-hero-content { max-width: 100%; }
  h1.hero-name { font-size: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .contact-cta-strip { flex-direction: column; text-align: center; }
  .contact-cta-strip-btns { justify-content: center; }
}

@media (max-width: 600px) {
  .gm-section { padding: 40px 15px; }
  .gm-hero { padding: 50px 15px 40px; }
  h1.hero-name { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.7rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-cta-strip { padding: 20px 16px; }
  .scroll-indicator { display: none; }
  .fab-whatsapp .fab-label { display: none; }
  .fab-whatsapp { padding: 13px; border-radius: 50%; }
  .fab-stack { bottom: 16px; right: 14px; }
  .gm-nav { padding: 0 15px; }
  .nav-drawer { padding: 1.25rem 15px 1.75rem; }
  .footer-inner { padding: 36px 15px 24px; }
  .footer-bottom { padding: 14px 15px; }
}

/* ── ELEMENTOR STICKY BAR FIX ──
   Prevents the empty floating bar above the header.
   Elementor Theme Builder adds its own sticky wrapper;
   this neutralises any double-sticky conflict. */
.e-con-inner > .gm-header,
[data-elementor-type="header"] .gm-header {
  position: relative !important;
  top: auto !important;
}
body.admin-bar .gm-header {
  top: auto !important;
}/* End custom CSS */