@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #FFCC00;
  --primary-dark: #F5C518;
  --bg: #FCF9F4;
  --text: #141414;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #FFCC00 #EEECE6;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #EEECE6; }
::-webkit-scrollbar-thumb { background: #FFCC00; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #F5C518; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: -0.005em;
}

::selection { background-color: var(--primary); color: #000; }
h1, h2, h3, h4, h5, h6 { font-family: 'Inter', system-ui, -apple-system, sans-serif; letter-spacing: -0.025em; font-weight: 800; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; padding: 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 576px) {
  .container { padding: 0 2rem; }
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.glass-card-yellow {
  background: rgba(255, 204, 0, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 204, 0, 0.25);
}

.yellow-glow {
  box-shadow: 0 0 40px rgba(255, 204, 0, 0.25), 0 0 80px rgba(255, 204, 0, 0.08);
}

.yellow-glow-hover { transition: box-shadow 0.3s ease; }
.yellow-glow-hover:hover {
  box-shadow: 0 0 24px rgba(255, 204, 0, 0.20), 0 8px 32px rgba(0,0,0,0.08);
}

.text-gradient {
  background: linear-gradient(135deg, #D4A800 0%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-grid {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.section-blur { position: relative; }
.section-blur::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,204,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.fade-init {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fade-left-init {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.fade-right-init {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.fade-init.visible, .fade-left-init.visible, .fade-right-init.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.60s; }

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s ease;
  padding: 1.25rem 0;
  background: rgba(252,250,243,0.60);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,204,0,0.12);
}

nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(252,250,243,0.90);
  border-bottom: 1px solid rgba(255,204,0,0.35);
  box-shadow: 0 4px 24px rgba(255,204,0,0.08), 0 1px 0 rgba(0,0,0,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { height: 56px; object-fit: contain; cursor: pointer; }
@media (min-width: 768px) { .nav-logo { height: 68px; } }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.85);
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 9999px;
  transition: width 0.3s;
}
.nav-link:hover { color: #000; }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: var(--primary);
  color: #000;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 0 16px rgba(255,204,0,0.3);
  cursor: pointer;
  font-family: inherit;
  border: none;
}
.nav-cta:hover { background: var(--primary-dark); transform: scale(1.05); }

.hamburger { display: flex; align-items: center; color: #000; }
@media (min-width: 768px) { .hamburger { display: none; } }

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  background: rgba(252,250,243,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,204,0,0.2);
}
.mobile-menu.open { max-height: 400px; opacity: 1; }

.mobile-menu-inner {
  padding: 0.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
}

.mobile-link {
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: left;
  transition: color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}
.mobile-link:hover { color: #000; }

/* ── HERO ── */
#home {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-blobs { position: absolute; inset: 0; pointer-events: none; }

.hero-blob-1 {
  position: absolute; top: 15%; left: 8%;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,204,0,0.10); filter: blur(80px);
}
.hero-blob-2 {
  position: absolute; bottom: 10%; right: 5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,204,0,0.08); filter: blur(120px);
}
.hero-blob-3 {
  position: absolute; top: 40%; right: 20%;
  width: 192px; height: 192px; border-radius: 50%;
  background: rgba(253,224,71,0.10); filter: blur(60px);
}

.hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; opacity: 0.25; }

.circle-cw {
  position: absolute; top: 10%; right: 8%;
  width: 288px; height: 288px; border-radius: 50%;
  border: 1px solid rgba(255,204,0,0.40);
  animation: rotateCW 40s linear infinite;
}
.circle-ccw {
  position: absolute; top: 12%; right: 10%;
  width: 192px; height: 192px; border-radius: 50%;
  border: 1px solid rgba(255,204,0,0.25);
  animation: rotateCCW 60s linear infinite;
}
.dot-1 {
  position: absolute; bottom: 20%; left: 15%;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,204,0,0.70);
  animation: floatUp 8s ease-in-out infinite;
}
.dot-2 {
  position: absolute; top: 30%; left: 40%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  animation: floatDown 6s ease-in-out 2s infinite;
}

@keyframes rotateCW  { to { transform: rotate(360deg); } }
@keyframes rotateCCW { to { transform: rotate(-360deg); } }
@keyframes floatUp   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }
@keyframes floatDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(20px)} }
@keyframes underlineIn { from{transform:scaleX(0)} to{transform:scaleX(1)} }
@keyframes pulseDot { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes fadeScaleIn { from{opacity:0;transform:scale(0.95)} to{opacity:1;transform:scale(1)} }

.hero-content {
  position: relative; z-index: 10;
  padding-top: 7rem;
  padding-bottom: 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(0,0,0,0.85); margin-bottom: 2rem;
}
.hero-badge .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); animation: pulseDot 1.5s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.75rem,9vw,6.25rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.035em; color: #000; margin-bottom: 2rem;
  padding-bottom: 0.1em;
}
.hero-title .underline-word { position: relative; display: inline-block; }
.hero-title .underline-word::after {
  content: ''; position: absolute; bottom: -8px; left: 0;
  width: 100%; height: 4px; background: var(--primary);
  border-radius: 9999px; transform-origin: left;
  animation: underlineIn 0.6s cubic-bezier(0.22,1,0.36,1) 1.2s both;
}

.hero-desc {
  font-size: 1.0625rem; color: rgba(0,0,0,0.82);
  max-width: 42rem; line-height: 1.75; font-weight: 300; margin-bottom: 3rem;
}
@media (min-width:768px) { .hero-desc { font-size: 1.25rem; } }

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: 9999px;
  background: var(--primary); color: #000;
  font-weight: 700; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: all 0.3s; box-shadow: 0 0 30px rgba(255,204,0,0.35);
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--primary-dark); transform: scale(1.05); box-shadow: 0 0 50px rgba(255,204,0,0.5); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.15); color: rgba(0,0,0,0.85);
  font-weight: 600; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.3s;
  background: none; cursor: pointer; font-family: inherit;
}
.btn-outline:hover { border-color: rgba(255,204,0,0.6); color: #000; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 5rem; }
@media (min-width:768px) { .hero-stats { gap: 4rem; } }

.stat-item { display: flex; flex-direction: column; }
.stat-num { font-family: 'Inter', system-ui, sans-serif; font-size:2rem; font-weight:900; color:var(--primary); line-height:1; }
@media (min-width:768px) { .stat-num { font-size:2.5rem; } }
.stat-label { font-size:0.6875rem; color:rgba(0,0,0,0.82); text-transform:uppercase; letter-spacing:0.1em; margin-top:0.25rem; }

.hero-fade-bottom {
  position:absolute; bottom:0; left:0; width:100%; height:6rem;
  background:linear-gradient(to top,var(--bg),transparent); pointer-events:none;
}

/* ── SERVICES ── */
#services { padding:6rem 0 9rem; position:relative; }
@media (min-width:768px) { #services { padding:9rem 0; } }

.services-blob {
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:600px; height:300px; border-radius:50%;
  background:rgba(255,204,0,0.05); filter:blur(100px); pointer-events:none;
}

.section-label { font-size:0.6875rem; font-weight:700; text-transform:uppercase; letter-spacing:0.3em; color:var(--primary); margin-bottom:0.75rem; }
.section-title { font-size:clamp(2.25rem,6vw,3.75rem); font-weight:900; color:#000; margin-bottom:1rem; line-height:1.05; }
.section-bar { width:4rem; height:4px; background:var(--primary); border-radius:9999px; }

.services-grid { display:grid; grid-template-columns:1fr; gap:1.25rem; margin-top:4rem; }
@media (min-width:768px) { .services-grid { grid-template-columns:1fr 1fr; gap:1.5rem; } }

.service-card {
  border-radius:1.5rem; padding:2rem; display:flex; flex-direction:column;
  cursor:default; transition:transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  box-shadow:0 1px 3px rgba(0,0,0,0.04);
}
@media (min-width:768px) { .service-card { padding:2.5rem; } }
.service-card:hover { transform:translateY(-8px) scale(1.01); box-shadow:0 0 24px rgba(255,204,0,0.20),0 8px 32px rgba(0,0,0,0.08); }

.service-card-top { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:1.5rem; }
.service-icon-wrap { width:3.5rem; height:3.5rem; border-radius:0.75rem; display:flex; align-items:center; justify-content:center; transition:transform 0.3s; flex-shrink:0; }
.service-card:hover .service-icon-wrap { transform:scale(1.1); }
.service-num { font-family: 'Inter', system-ui, sans-serif; font-size:3rem; font-weight:900; color:rgba(0,0,0,0.65); line-height:1; transition:color 0.3s; }
.service-card:hover .service-num { color:rgba(0,0,0,0.65); }
.service-title { font-size:1.5rem; font-weight:900; color:#000; margin-bottom:1rem; transition:color 0.3s; line-height:1.2; }
.service-card:hover .service-title { color:var(--primary); }
.service-desc { color:rgba(0,0,0,0.85); line-height:1.75; flex-grow:1; margin-bottom:2rem; font-size:0.9375rem; }
.service-link { display:inline-flex; align-items:center; gap:0.5rem; font-size:0.8125rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--primary); transition:gap 0.3s; background:none; border:none; cursor:pointer; font-family:inherit; }
.service-link:hover { gap:0.75rem; }

/* ── WHY CHOOSE US ── */
#why { padding:5rem 0 7rem; position:relative; overflow:hidden; }
@media (min-width:768px) { #why { padding:7rem 0; } }
#why::before { content:''; position:absolute; inset:0; background:linear-gradient(to bottom,transparent,rgba(255,204,0,0.04),transparent); pointer-events:none; }

.why-grid { display:grid; grid-template-columns:1fr; gap:1.25rem; margin-top:4rem; }
@media (min-width:576px) { .why-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:1024px) { .why-grid { grid-template-columns:repeat(4,1fr); } }

.why-card {
  border-radius:1rem; padding:1.5rem; display:flex; flex-direction:column; align-items:center; text-align:center;
  transition:transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  box-shadow:0 1px 3px rgba(0,0,0,0.04);
}
@media (min-width:768px) { .why-card { padding:2rem; } }
.why-card:hover { transform:translateY(-6px) scale(1.02); box-shadow:0 0 24px rgba(255,204,0,0.20),0 8px 32px rgba(0,0,0,0.08); }
.why-icon-wrap { width:3rem; height:3rem; border-radius:0.75rem; display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; }
.why-title { font-size:1.0625rem; font-weight:900; text-transform:uppercase; letter-spacing:0.05em; color:#000; margin-bottom:0.75rem; }
.why-desc { font-size:0.875rem; color:rgba(0,0,0,0.82); line-height:1.7; }

/* ── ABOUT ── */
#about { padding:6rem 0 9rem; position:relative; }
@media (min-width:768px) { #about { padding:9rem 0; } }
.about-blob { position:absolute; right:0; top:50%; transform:translateY(-50%); width:500px; height:500px; border-radius:50%; background:rgba(255,204,0,0.06); filter:blur(120px); pointer-events:none; }
.about-grid { display:grid; grid-template-columns:1fr; gap:4rem; align-items:center; }
@media (min-width:1024px) { .about-grid { grid-template-columns:1fr 1fr; } }
.about-text-col { position:relative; z-index:1; }
.about-bar { width:4rem; height:4px; background:var(--primary); border-radius:9999px; margin-bottom:2rem; }
.about-paragraphs { color:rgba(0,0,0,0.85); line-height:1.8; display:flex; flex-direction:column; gap:1.25rem; font-size:0.9375rem; }

.about-stats { display:grid; grid-template-columns:1fr 1fr; gap:1rem; position:relative; z-index:1; }
.stat-card { border-radius:1rem; padding:1.5rem; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; transition:transform 0.3s ease; }
@media (min-width:768px) { .stat-card { padding:2rem; } }
.stat-card:hover { transform:scale(1.04) translateY(-4px); }
.stat-card.yellow { background:var(--primary); box-shadow:0 0 40px rgba(255,204,0,0.25),0 0 80px rgba(255,204,0,0.08); }
.stat-card-num { font-family: 'Inter', system-ui, sans-serif; font-size:3rem; font-weight:900; display:block; margin-bottom:0.5rem; line-height:1; }
@media (min-width:768px) { .stat-card-num { font-size:3.5rem; } }
.stat-card.yellow .stat-card-num { color:#000; }
.stat-card:not(.yellow) .stat-card-num { background:linear-gradient(135deg,#D4A800 0%,#F5A623 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.stat-card-label { font-size:0.6875rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; }
.stat-card.yellow .stat-card-label { color:rgba(0,0,0,0.85); }
.stat-card:not(.yellow) .stat-card-label { color:rgba(0,0,0,0.75); }

/* ── CONTACT ── */
#contact { padding:6rem 0 9rem; position:relative; overflow:hidden; }
@media (min-width:768px) { #contact { padding:9rem 0; } }
.contact-blob { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:700px; height:400px; border-radius:50%; background:rgba(255,204,0,0.05); filter:blur(140px); pointer-events:none; }
.section-desc { color:rgba(0,0,0,0.82); max-width:36rem; margin:0 auto; font-size:1rem; }

.contact-grid { display:grid; grid-template-columns:1fr; gap:2rem; max-width:64rem; margin:4rem auto 0; align-items:stretch; }
@media (min-width:1024px) { .contact-grid { grid-template-columns:2fr 3fr; } }

.contact-info { display:flex; flex-direction:column; gap:1.25rem; height:100%; }
#form-wrap { height:100%; display:flex; flex-direction:column; }
.contact-card { border-radius:1rem; padding:1.75rem; display:flex; align-items:flex-start; gap:1rem; box-shadow:0 1px 3px rgba(0,0,0,0.04); }
.contact-icon-wrap { width:2.75rem; height:2.75rem; border-radius:0.75rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-card-label { font-size:0.6875rem; color:rgba(0,0,0,0.82); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:0.25rem; }
.contact-card-email { font-size:0.875rem; font-weight:600; color:#000; transition:color 0.2s; word-break:break-all; }
.contact-card-email:hover { color:var(--primary); }
.contact-response { border-radius:1rem; padding:1.75rem; box-shadow:0 1px 3px rgba(0,0,0,0.04); }
.contact-response h4 { font-size:1.25rem; font-weight:900; color:#000; margin-bottom:0.75rem; }
.contact-response p { font-size:0.875rem; color:rgba(0,0,0,0.82); line-height:1.7; }
.contact-ready { border-radius:1rem; padding:1.75rem; background:var(--primary); box-shadow:0 0 40px rgba(255,204,0,0.25),0 0 80px rgba(255,204,0,0.08); flex:1; }
.contact-ready h4 { font-family: 'Inter', system-ui, sans-serif; font-size:1.25rem; font-weight:900; color:#000; margin-bottom:0.5rem; }
.contact-ready p { font-size:0.875rem; color:rgba(0,0,0,0.85); }

/* ── FORM ── */
.contact-form-wrap { border-radius:1.5rem; padding:1.75rem; display:flex; flex-direction:column; gap:1.25rem; box-shadow:0 1px 3px rgba(0,0,0,0.04); flex:1; min-height:400px; }
@media (min-width:768px) { .contact-form-wrap { padding:2.5rem; } }

.form-row { display:grid; grid-template-columns:1fr; gap:1.25rem; }
@media (min-width:576px) { .form-row { grid-template-columns:1fr 1fr; } }

.form-group { display:flex; flex-direction:column; }
.form-label { font-size:0.6875rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:rgba(0,0,0,0.75); margin-bottom:0.5rem; }
.form-input, .form-textarea {
  width:100%; background:rgba(0,0,0,0.03); border:1px solid rgba(0,0,0,0.10); border-radius:0.75rem;
  padding:0.875rem 1rem; font-family:inherit; font-size:0.875rem; color:#000;
  transition:border-color 0.2s, box-shadow 0.2s; outline:none;
}
.form-input::placeholder, .form-textarea::placeholder { color:rgba(0,0,0,0.65); }
.form-input:focus, .form-textarea:focus { border-color:rgba(255,204,0,0.60); box-shadow:0 0 0 3px rgba(255,204,0,0.15); }
.form-textarea { resize:none; min-height:140px; flex:1; }
.form-error { color:#ef4444; font-size:0.75rem; font-weight:500; min-height:1rem; }
.form-submit {
  width:100%; padding:1rem; border-radius:0.75rem; background:var(--primary); color:#000;
  font-weight:700; font-size:0.875rem; text-transform:uppercase; letter-spacing:0.05em;
  transition:all 0.3s; box-shadow:0 0 24px rgba(255,204,0,0.25); margin-top:auto;
  border:none; cursor:pointer; font-family:inherit;
}
.form-submit:hover { background:var(--primary-dark); box-shadow:0 0 40px rgba(255,204,0,0.4); transform:scale(1.02); }
.form-submit:disabled { opacity:0.6; cursor:not-allowed; transform:none; }

.form-success { border-radius:1.5rem; padding:2.5rem; min-height:360px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; animation:fadeScaleIn 0.5s cubic-bezier(0.22,1,0.36,1) both; }
.success-icon { width:4rem; height:4rem; border-radius:1rem; display:flex; align-items:center; justify-content:center; margin-bottom:1.5rem; }
.success-title { font-size:1.5rem; font-weight:900; text-transform:uppercase; color:#000; margin-bottom:0.75rem; }
.success-desc { font-size:0.875rem; color:rgba(0,0,0,0.75); }
.form-reset-note { display:inline-block; margin-top:0.75rem; font-size:0.75rem; color:rgba(0,0,0,0.55); font-weight:500; }
.form-error .form-reset-note { display:inline; margin-top:0; margin-left:0.25rem; color:rgba(239,68,68,0.75); }

/* ── FOOTER ── */
footer { position:relative; padding:4rem 0 2rem; overflow:hidden; background:rgba(240,237,224,0.95); border-top:1px solid rgba(255,204,0,0.20); }
.footer-top-line { position:absolute; top:0; left:50%; transform:translateX(-50%); width:400px; height:1px; background:linear-gradient(to right,transparent,rgba(255,204,0,0.60),transparent); }
.footer-grid { display:grid; grid-template-columns:1fr; gap:2.5rem; margin-bottom:3rem; }
@media (min-width:768px) { .footer-grid { grid-template-columns:1.5fr 1fr 1fr; } }
.footer-logo { height:44px; object-fit:contain; margin-bottom:1.25rem; }
.footer-desc { font-size:0.875rem; color:rgba(0,0,0,0.82); line-height:1.7; max-width:18rem; }
.footer-email-link { display:inline-flex; align-items:center; gap:0.5rem; margin-top:1.25rem; font-size:0.875rem; font-weight:600; color:var(--primary); transition:color 0.2s; }
.footer-email-link:hover { color:#D4A800; }
.footer-socials { display:flex; align-items:center; gap:0.75rem; margin-top:1.25rem; }
.social-btn { width:2.25rem; height:2.25rem; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--primary); transition:all 0.3s; }
.social-btn:hover { background:var(--primary) !important; color:#000 !important; transform:scale(1.1); }
.footer-col-title { font-size:0.6875rem; font-weight:700; text-transform:uppercase; letter-spacing:0.2em; color:rgba(0,0,0,0.75); margin-bottom:1.25rem; }
.footer-nav-list { list-style:none; display:flex; flex-direction:column; gap:0.75rem; }
.footer-nav-btn { font-size:0.875rem; color:rgba(0,0,0,0.75); transition:color 0.2s; display:flex; align-items:center; gap:0.5rem; background:none; border:none; cursor:pointer; font-family:inherit; padding:0; }
.footer-nav-btn::before { content:''; width:4px; height:4px; border-radius:50%; background:rgba(255,204,0,0.50); flex-shrink:0; transition:background 0.2s; }
.footer-nav-btn:hover { color:var(--primary); }
.footer-nav-btn:hover::before { background:var(--primary); }
.footer-item { display:flex; align-items:center; gap:0.5rem; font-size:0.875rem; color:rgba(0,0,0,0.75); }
.footer-item-icon { color:rgba(255,204,0,0.70); flex-shrink:0; }
.footer-bottom { display:flex; flex-direction:column; align-items:center; gap:0.75rem; padding-top:2rem; border-top:1px solid rgba(0,0,0,0.07); }
@media (min-width:768px) { .footer-bottom { flex-direction:row; justify-content:space-between; } }
.footer-copy { font-size:0.75rem; color:rgba(0,0,0,0.65); text-align:center; }
@media (min-width:768px) { .footer-copy { text-align:left; } }
.footer-credit { font-size:0.75rem; color:rgba(0,0,0,0.65); }
.footer-credit a { color:rgba(0,0,0,0.75); transition:color 0.2s; text-decoration:underline; text-underline-offset:2px; }
.footer-credit a:hover { color:var(--primary); }

/* ── Contact card address text ── */
.contact-card-address { font-size:0.875rem; color:rgba(0,0,0,0.85); line-height:1.55; font-weight:500; }

/* ── Footer address line ── */
.footer-address-line {
  display:flex; align-items:flex-start; gap:0.5rem;
  margin-top:0.75rem; font-size:0.8125rem;
  color:rgba(0,0,0,0.65); line-height:1.55; max-width:18rem;
}
.footer-address-line svg { color:rgba(255,204,0,0.85); flex-shrink:0; margin-top:0.15rem; }

/* ── WhatsApp floating button ── */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.18);
  z-index: 999;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease;
  text-decoration: none;
  isolation: isolate;
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,0.22);
}
.whatsapp-fab:active { transform: scale(1.02); }
.whatsapp-fab svg {
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}
.whatsapp-fab-tip {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #141414;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.whatsapp-fab-tip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #141414;
}
.whatsapp-fab:hover .whatsapp-fab-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes whatsapp-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 600px) {
  .whatsapp-fab { width: 3.125rem; height: 3.125rem; right: 1rem; bottom: 1rem; }
  .whatsapp-fab svg { width: 1.625rem; height: 1.625rem; }
  .whatsapp-fab-tip { display: none; }
}

/* ── Form select dropdown ── */
.form-select-wrap { position:relative; display:block; }
.form-select {
  appearance:none; -webkit-appearance:none; -moz-appearance:none;
  width:100%; padding:0.875rem 2.5rem 0.875rem 1rem;
  font-family:inherit; font-size:0.875rem; color:#000;
  background:rgba(255,255,255,0.55);
  border:1px solid rgba(0,0,0,0.10);
  border-radius:0.75rem;
  transition:border-color 0.2s, box-shadow 0.2s, background 0.2s;
  cursor:pointer; line-height:1.4;
}
.form-select:hover { background:rgba(255,255,255,0.75); }
.form-select:focus { outline:none; border-color:rgba(255,204,0,0.60); box-shadow:0 0 0 3px rgba(255,204,0,0.15); background:rgba(255,255,255,0.85); }
.form-select:invalid, .form-select option[disabled] { color:rgba(0,0,0,0.45); }
.form-select option { color:#000; background:#fff; padding:0.5rem; }
.form-select-chevron {
  position:absolute; right:1rem; top:50%;
  transform:translateY(-50%);
  color:rgba(0,0,0,0.55); pointer-events:none;
}

/* ════════════════════════════════════════════════
   RESPONSIVE FIXES — overhaul for mobile/tablet/desktop
   (Appended after the original stylesheet so these rules win)
   ════════════════════════════════════════════════ */

/* Stop horizontal scroll & iOS Safari auto text-resize that lets users zoom out */
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Sections that hold large decorative blobs must clip them */
#services,
#about {
  overflow: hidden;
}

/* Universal safety: never let any element burst past the viewport width */
img, svg, video, canvas, iframe { max-width: 100%; }

/* Prevent iOS Safari from auto-zooming when a form field is focused
   (iOS zooms whenever the input's font-size is below 16px) */
.form-input,
.form-textarea,
.form-select {
  font-size: 16px;
}
@media (min-width: 768px) {
  .form-input,
  .form-textarea,
  .form-select { font-size: 0.9375rem; }
}

/* Larger, easier-to-tap hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  justify-content: center;
  margin-right: -0.5rem;
}

/* ───── Phone (≤640px) ───── */
@media (max-width: 640px) {
  body { font-size: 1rem; line-height: 1.6; }
  .container { padding: 0 1.125rem; }

  /* Tame oversized decorations on small viewports */
  .hero-blob-1 { width: 200px; height: 200px; filter: blur(60px); }
  .hero-blob-2 { width: 300px; height: 300px; right: -60px; filter: blur(80px); }
  .hero-blob-3 { width: 140px; height: 140px; }
  .circle-cw  { width: 200px; height: 200px; right: -40px; }
  .circle-ccw { width: 130px; height: 130px; right: -20px; }
  .services-blob { width: 90vw; max-width: 380px; height: 220px; filter: blur(70px); }
  .about-blob   { width: 320px; height: 320px; right: -120px; filter: blur(90px); }
  .contact-blob { width: 90vw; max-width: 420px; height: 280px; filter: blur(90px); }

  /* Hero — title sized to fit narrow screens */
  .hero-title { font-size: clamp(2.25rem, 11vw, 3.25rem); margin-bottom: 1.5rem; }
  .hero-content { padding-top: 6rem; padding-bottom: 3rem; }
  .hero-desc { font-size: 1rem; margin-bottom: 2rem; line-height: 1.65; }
  .hero-stats { gap: 1.25rem 1.75rem; margin-top: 3rem; }
  .stat-num { font-size: 1.75rem; }
  .stat-label { font-size: 0.625rem; }

  /* Buttons stretch nicely on phones */
  .hero-btns { gap: 0.75rem; }
  .btn-primary, .btn-outline {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    flex: 1 1 auto;
    justify-content: center;
  }

  /* Section spacing — less air on phones */
  #services, #about, #contact { padding: 4rem 0 5rem; }
  #why { padding: 4rem 0 5rem; }

  /* Service grid */
  .services-grid, .why-grid { gap: 1rem; margin-top: 2.5rem; }
  .service-card { padding: 1.5rem; border-radius: 1.25rem; }
  .service-icon-wrap { width: 3rem; height: 3rem; }
  .service-num { font-size: 2.25rem; }
  .service-title { font-size: 1.25rem; }
  .service-desc { font-size: 0.9375rem; margin-bottom: 1.5rem; line-height: 1.65; }

  /* Why-choose-us cards */
  .why-card { padding: 1.5rem 1.25rem; }
  .why-icon-wrap { width: 2.75rem; height: 2.75rem; margin-bottom: 1rem; }
  .why-title { font-size: 1rem; }

  /* About */
  .about-grid { gap: 2.5rem; }
  .about-stats { gap: 0.75rem; }
  .stat-card { padding: 1.25rem 0.75rem; }
  .stat-card-num { font-size: 2.25rem; }
  .stat-card-label { font-size: 0.625rem; }

  /* Contact */
  .contact-grid { gap: 1.25rem; margin-top: 2.5rem; }
  .contact-card { padding: 1.25rem; gap: 0.875rem; }
  .contact-icon-wrap { width: 2.5rem; height: 2.5rem; }
  .contact-card-email,
  .contact-card-address { font-size: 0.875rem; }
  .contact-form-wrap { padding: 1.5rem 1.25rem; min-height: 0; gap: 1rem; }
  .contact-response, .contact-ready { padding: 1.5rem 1.25rem; }
  .form-row { gap: 1rem; }

  /* Section title smaller on phones */
  .section-title { font-size: clamp(2rem, 8vw, 2.5rem); }

  /* Footer */
  footer { padding: 3rem 0 1.5rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2rem; }
  .footer-logo { height: 38px; }
  .footer-bottom { gap: 0.5rem; padding-top: 1.5rem; }
}

/* ───── Tiny phones (≤380px) ───── */
@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: clamp(1.875rem, 10vw, 2.5rem); }
  .hero-stats { gap: 1rem 1.5rem; }
  .stat-num { font-size: 1.5rem; }
  .nav-logo { height: 48px; }
  nav { padding: 0.875rem 0; }
  .hero-content { padding-top: 5.25rem; }
  .stat-card-num { font-size: 1.875rem; }
  .service-card { padding: 1.25rem; }
}

/* ───── Tablet (641–1023px) ─────
   Stack the about/contact 2-col grids so each side gets full breathing room,
   and use a comfortable 2-up grid for "why choose us". */
@media (min-width: 641px) and (max-width: 1023px) {
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 1.75rem; max-width: 44rem; }
  .why-grid      { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .services-grid { gap: 1.5rem; }
}

/* ───── Honor reduced-motion users ───── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
