/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; transition: background 0.3s, color 0.3s; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES - DARK ===== */
:root {
  --primary: #6c3bff; --accent: #00d4aa;
  --bg: #0f0f1a; --bg2: #16213e; --bg3: #1a1a2e;
  --text: #e8e8f0; --text-muted: rgba(232,232,240,0.6);
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04); --card-border: rgba(255,255,255,0.08);
  --gradient: linear-gradient(135deg, #6c3bff 0%, #00d4aa 100%);
  --shadow: 0 4px 24px rgba(108,59,255,0.15);
  --radius: 12px; --radius-lg: 20px;
  --navbar-bg: rgba(15,15,26,0.95);
}

/* ===== LIGHT THEME ===== */
body.light {
  --bg: #f5f5fa; --bg2: #eeeef8; --bg3: #e8e8f5;
  --text: #1a1a2e; --text-muted: rgba(26,26,46,0.6);
  --border: rgba(0,0,0,0.08); --card-bg: rgba(255,255,255,0.8);
  --card-border: rgba(0,0,0,0.1); --navbar-bg: rgba(245,245,250,0.95);
}

body { background: var(--bg); color: var(--text); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; border: none; white-space: nowrap; }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }

/* ===== UTILS ===== */
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-tag { display: inline-block; background: rgba(108,59,255,0.15); color: var(--primary); padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.section { padding: 5rem 0; }
.alt-bg { background: var(--bg2); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.section-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--navbar-bg); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.1rem; color: var(--text); flex-shrink: 0; }
.logo img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.theme-toggle { background: var(--card-bg); border: 1px solid var(--border); color: var(--text); width: 38px; height: 38px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.2s; flex-shrink: 0; }
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 70px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(108,59,255,0.12) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(0,212,170,0.08) 0%, transparent 50%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; width: 100%; padding: 4rem 0; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(108,59,255,0.15); border: 1px solid rgba(108,59,255,0.3); color: var(--primary); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-text h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 0.5rem; }
.hero-sub { font-size: 1.05rem; font-weight: 500; color: var(--text-muted); margin-bottom: 1.5rem; }
.hero-sub a { color: var(--accent); }
.hero-sub a:hover { text-decoration: underline; }
.hero-text p { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; }
.hero-actions { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 1rem; margin-bottom: 2rem; align-items: center; }
.hero-actions .btn { flex-shrink: 0; }
.hero-socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-socials a { width: 42px; height: 42px; border-radius: 10px; background: var(--card-bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--text-muted); transition: all 0.2s; }
.hero-socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

/* PHOTO */
.hero-photo { position: relative; display: flex; justify-content: center; align-items: center; }
.photo-wrap { width: 320px; height: 320px; border-radius: 50%; overflow: hidden; background: var(--gradient); padding: 4px; position: relative; z-index: 1; }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.photo-badge { position: absolute; background: var(--bg3); border: 1px solid var(--border); border-radius: 50px; padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 0.4rem; box-shadow: var(--shadow); z-index: 2; }
.photo-badge i { color: var(--primary); }
.badge-1 { top: 10%; left: -5%; }
.badge-2 { bottom: 20%; left: -10%; }
.badge-3 { top: 15%; right: -5%; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.a-stat { text-align: center; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1rem; }
.a-stat span { display: block; font-size: 1.8rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.a-stat p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.about-info-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2rem; }
.info-row { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.info-row:last-of-type { border-bottom: none; }
.info-row > i { width: 36px; height: 36px; background: rgba(108,59,255,0.15); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-row span { font-size: 0.75rem; color: var(--text-muted); display: block; }
.info-row p { font-size: 0.9rem; font-weight: 600; margin: 0; }

/* ===== SKILLS ===== */
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.skill-category { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 1.75rem; }
.skill-category h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.skill-category h4 i { color: var(--primary); }
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.skill-tags span { background: rgba(108,59,255,0.12); color: var(--primary); border: 1px solid rgba(108,59,255,0.2); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.8rem; font-weight: 500; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 1.75rem; transition: all 0.3s; display: block; }
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { width: 48px; height: 48px; background: rgba(108,59,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary); margin-bottom: 1rem; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-price { display: inline-block; font-weight: 800; font-size: 1rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.free-badge { -webkit-text-fill-color: var(--accent) !important; color: var(--accent); }
.highlight-card { border-color: rgba(0,212,170,0.3); background: rgba(0,212,170,0.05); }

/* ===== COMPANY ===== */
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.company-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.company-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
.why-list { list-style: none; margin-bottom: 2rem; }
.why-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; color: var(--text-muted); font-size: 0.95rem; }
.why-list li i { color: var(--accent); flex-shrink: 0; }
.company-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.company-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; }
.company-logo { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 1rem; border-radius: 16px; }
.company-card h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.25rem; }
.company-card > p { color: var(--text-muted); margin-bottom: 1.5rem; }
.company-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.company-badges span { background: rgba(108,59,255,0.12); color: var(--primary); border: 1px solid rgba(108,59,255,0.2); padding: 0.35rem 0.85rem; border-radius: 50px; font-size: 0.8rem; font-weight: 500; display: flex; align-items: center; gap: 0.4rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.contact-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: all 0.3s; display: block; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 1rem; transition: all 0.3s; }
.contact-icon.wa { background: rgba(37,211,102,0.15); color: #25d366; }
.contact-icon.email { background: rgba(108,59,255,0.15); color: var(--primary); }
.contact-icon.insta { background: rgba(225,48,108,0.15); color: #e1306c; }
.contact-icon.fb { background: rgba(24,119,242,0.15); color: #1877f2; }
.contact-card h4 { font-weight: 700; margin-bottom: 0.25rem; }
.contact-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.contact-card span { font-size: 0.85rem; color: var(--primary); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.contact-card:hover .contact-icon.wa { background: #25d366; color: #fff; }
.contact-card:hover .contact-icon.email { background: var(--primary); color: #fff; }
.contact-card:hover .contact-icon.insta { background: #e1306c; color: #fff; }
.contact-card:hover .contact-icon.fb { background: #1877f2; color: #fff; }

/* ===== MAP ===== */
.map-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 0; align-items: stretch; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: none; }
.map-info { padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; border-left: 1px solid var(--border); }
.map-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.map-info-item > i { width: 36px; height: 36px; background: rgba(108,59,255,0.15); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.map-info-item strong { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.25rem; }
.map-info-item p, .map-info-item a { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }
.map-info-item a:hover { color: var(--primary); }

/* ===== FOOTER ===== */
.footer { background: var(--bg3); border-top: 1px solid var(--border); padding: 3rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-left p { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.footer-links-wrap h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-links-wrap ul li { margin-bottom: 0.6rem; }
.footer-links-wrap ul li a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.footer-links-wrap ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.25rem 0; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); text-align: center; }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; bottom: 2rem; right: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: transform 0.2s; position: relative; }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25d366; animation: pulse-wa 2s infinite; }
.float-call { background: var(--primary); }
@keyframes pulse-wa { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.5)} 50%{box-shadow:0 0 0 10px rgba(37,211,102,0)} }
.float-tooltip { position: absolute; right: 60px; background: var(--bg3); color: var(--text); padding: 0.3rem 0.75rem; border-radius: 6px; font-size: 0.8rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; border: 1px solid var(--border); }
.float-btn:hover .float-tooltip { opacity: 1; }

/* ===== TABLET (1024px) ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-text p { max-width: 100%; }
  .hero-actions, .hero-socials { justify-content: center; }
  .hero-photo { order: -1; }
  .photo-wrap { width: 240px; height: 240px; }
  .badge-1 { left: 2%; } .badge-2 { left: 0; } .badge-3 { right: 2%; }
  .about-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .company-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .map-wrap { grid-template-columns: 1fr; }
  .map-wrap iframe { min-height: 300px; }
  .map-info { border-left: none; border-top: 1px solid var(--border); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ===== MOBILE (768px) ===== */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--navbar-bg); flex-direction: column; padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-actions { flex-wrap: nowrap; gap: 0.75rem; }
  .hero-actions .btn-lg { padding: 0.8rem 1.25rem; font-size: 0.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .photo-wrap { width: 200px; height: 200px; }
  .photo-badge { font-size: 0.72rem; padding: 0.4rem 0.75rem; }
  .section-header h2, .about-text h2, .company-text h2 { font-size: 1.6rem; }
  .map-info { padding: 1.5rem; }
}

/* ===== SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-text h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: row; flex-wrap: nowrap; gap: 0.6rem; }
  .hero-actions .btn-lg { padding: 0.75rem 1rem; font-size: 0.85rem; flex: 1; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .company-actions { flex-direction: column; }
  .badge-1, .badge-2, .badge-3 { display: none; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .map-wrap iframe { min-height: 250px; }
}

/* ===== VERY SMALL (360px) ===== */
@media (max-width: 360px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-lg { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT FORM ADVANCED ===== */
.contact-form-wrap { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1.6fr; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--card-border); }
.cf-left { background: var(--gradient); padding: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.cf-left h3 { font-size: 1.5rem; font-weight: 800; color: #fff; }
.cf-left > p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; }
.cf-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.cf-info-item { display: flex; align-items: center; gap: 1rem; }
.cf-info-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; flex-shrink: 0; }
.cf-info-item span { font-size: 0.75rem; color: rgba(255,255,255,0.65); display: block; margin-bottom: 0.1rem; }
.cf-info-item p { font-size: 0.9rem; color: #fff; font-weight: 600; margin: 0; }
.cf-socials { display: flex; gap: 0.75rem; margin-top: auto; }
.cf-socials a { width: 38px; height: 38px; background: rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; transition: background 0.2s; }
.cf-socials a:hover { background: rgba(255,255,255,0.3); }
.cf-right { background: var(--card-bg); padding: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0; position: relative; }
/* Floating label inputs */
.float-label { position: relative; }
.float-label input, .float-label textarea { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 10px; padding: 1.25rem 1rem 0.5rem 2.75rem; font-size: 0.95rem; color: var(--text); font-family: inherit; outline: none; resize: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.float-label label { position: absolute; left: 2.75rem; top: 50%; transform: translateY(-50%); font-size: 0.9rem; color: var(--text-muted); pointer-events: none; transition: all 0.2s; }
.float-label.textarea-group label { top: 1.25rem; transform: none; }
.float-label input:focus ~ label, .float-label input:not(:placeholder-shown) ~ label,
.float-label textarea:focus ~ label, .float-label textarea:not(:placeholder-shown) ~ label { top: 0.45rem; transform: none; font-size: 0.72rem; color: var(--primary); font-weight: 600; }
.float-label input:focus, .float-label textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,59,255,0.12); }
.form-icon { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.9rem; pointer-events: none; transition: color 0.2s; }
.float-label.textarea-group .form-icon { top: 1.3rem; transform: none; }
.float-label input:focus ~ label ~ .form-icon, .float-label input:focus + label + .form-icon { color: var(--primary); }
/* Select */
.select-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.4rem; display: block; }
.select-wrap { position: relative; }
.select-wrap select { width: 100%; background: var(--bg2); border: 1.5px solid var(--border); border-radius: 10px; padding: 0.85rem 2.5rem 0.85rem 1rem; font-size: 0.95rem; color: var(--text); font-family: inherit; outline: none; appearance: none; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; }
.select-wrap select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,59,255,0.12); }
.select-arrow { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.8rem; pointer-events: none; }
/* Textarea char count */
.textarea-group textarea { padding-bottom: 1.75rem; }
.char-count { position: absolute; bottom: 0.5rem; right: 0.75rem; font-size: 0.72rem; color: var(--text-muted); }
/* Submit */
.cf-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; border-radius: 10px; gap: 0.6rem; transition: all 0.3s; }
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,59,255,0.35); }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 0.25rem; }
@media (max-width: 900px) { .contact-form-wrap { grid-template-columns: 1fr; } .cf-left { padding: 2rem; } }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .cf-right { padding: 1.5rem; } }
