/* =============================================
   VEDAZ GLOBAL - WordPress Theme Main CSS
   Colors: Primary #0a3320 | Secondary #c9a227
   ============================================= */

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

:root {
  --primary: #0a3320;
  --primary-light: #0e4a2e;
  --secondary: #c9a227;
  --secondary-light: #dbb53a;
  --foreground: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --card: #ffffff;
  --muted-bg: #f9fafb;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--foreground); background: var(--bg); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--foreground); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { line-height: 1.75; }

/* ---- LAYOUT ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: #fff; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: 0.75rem; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: all 0.25s ease; text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(10,51,32,.3); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,51,32,.4); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; box-shadow: 0 4px 14px rgba(201,162,39,.3); }
.btn-secondary:hover { background: var(--secondary-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,162,39,.4); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f0fdf4; color: var(--primary); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.125rem; }

/* ---- TOP BAR ---- */
.top-bar { background: var(--primary); color: rgba(255,255,255,.9); padding: 0.5rem 0; font-size: 0.875rem; font-weight: 500; }
.top-bar a { color: rgba(255,255,255,.9); transition: color .2s; }
.top-bar a:hover { color: var(--secondary); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-contact { display: flex; gap: 1.5rem; }
.top-bar-links { display: flex; gap: 1rem; }
.top-bar-icon { display: inline-flex; align-items: center; gap: 0.375rem; }

/* ---- HEADER / NAV ---- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: var(--shadow); }
.main-nav { padding: 1rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.site-logo img { height: 56px; width: auto; display: block; }
.site-logo-text { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a { font-weight: 600; font-size: 0.9375rem; color: var(--foreground); transition: color .2s; position: relative; padding-bottom: 0.25rem; }
.nav-menu a:hover, .nav-menu a.active { color: var(--secondary); }
.nav-menu a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--secondary); border-radius: 2px; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.25rem; cursor: pointer; font-weight: 600; font-size: 0.9375rem; color: var(--foreground); background: none; border: none; padding: 0; }
.nav-dropdown-toggle:hover { color: var(--secondary); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 0.75rem); left: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s; overflow: hidden; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 0.75rem 1.25rem; font-size: 0.9rem; font-weight: 500; border-bottom: 1px solid var(--border); transition: background .15s; color: var(--foreground); }
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(201,162,39,.08); color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--primary); }
.mobile-nav { display: none; background: #fff; border-top: 1px solid var(--border); padding: 1.5rem; flex-direction: column; gap: 1rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 600; color: var(--foreground); padding: 0.5rem 0; border-bottom: 1px solid var(--border); display: block; }
.mobile-nav a:hover { color: var(--secondary); }
.mobile-nav .mobile-section-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; margin-top: 0.5rem; }
.mobile-nav-btns { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }

/* ---- HERO ---- */
.hero { min-height: 90vh; background: var(--primary); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; mix-blend-mode: overlay; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--primary) 40%, rgba(10,51,32,.6) 70%, transparent); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 6rem 0 4rem; max-width: 760px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.25rem; border-radius: 999px; background: rgba(201,162,39,.2); color: var(--secondary); border: 1px solid rgba(201,162,39,.35); font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2rem; }
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(1.3); } }
.hero h1 { color: #fff; margin-bottom: 1.5rem; line-height: 1.1; }
.hero h1 span { color: var(--secondary); }
.hero p { color: rgba(255,255,255,.8); font-size: 1.1875rem; margin-bottom: 2.5rem; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats { position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2; background: rgba(255,255,255,.1); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-xl); padding: 1.5rem 2rem; display: flex; gap: 2.5rem; }
.hero-stat-item { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--secondary); display: block; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* ---- PAGE HEADER ---- */
.page-header { background: var(--primary); padding: 5rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: url('../img/page-header-pattern.png') center/cover; opacity: .08; }
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,.75); font-size: 1.125rem; max-width: 680px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: var(--secondary); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* ---- CARDS ---- */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow); transition: all .3s; }
.card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: rgba(201,162,39,.4); }
.card-icon { width: 56px; height: 56px; border-radius: var(--radius); background: rgba(10,51,32,.06); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all .3s; }
.card:hover .card-icon { background: var(--secondary); }
.card:hover .card-icon svg { stroke: #fff; }
.card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.card p { color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 0.375rem; font-weight: 700; color: var(--primary); font-size: 0.9rem; margin-top: 1.25rem; transition: color .2s; }
.card-link:hover { color: var(--secondary); }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--muted); font-size: 1.0625rem; }
.section-tag { display: inline-block; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--secondary); margin-bottom: 0.75rem; }

/* ---- WHY CHOOSE ---- */
.why-choose { background: var(--primary); padding: 5rem 0; position: relative; overflow: hidden; }
.why-choose::after { content: ''; position: absolute; right: -5rem; top: -5rem; width: 40rem; height: 40rem; background: rgba(201,162,39,.06); border-radius: 50%; }
.why-choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.why-choose h2 { color: #fff; margin-bottom: 1.5rem; }
.why-choose p.lead { color: rgba(255,255,255,.75); font-size: 1.0625rem; margin-bottom: 2rem; }
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-item { display: flex; align-items: center; gap: 1rem; }
.check-item svg { flex-shrink: 0; color: var(--secondary); }
.check-item span { color: rgba(255,255,255,.9); font-weight: 500; font-size: 1.0625rem; }
.why-choose-img { position: relative; }
.why-choose-img img { border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.years-badge { position: absolute; bottom: -2rem; left: -2rem; background: #fff; padding: 1.5rem 2rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); border: 1px solid var(--border); }
.years-badge .num { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; display: block; }
.years-badge .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }

/* ---- TRADE CORRIDORS ---- */
.corridors { background: var(--muted-bg); padding: 5rem 0; }
.corridor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.corridor-card { border-radius: var(--radius-xl); padding: 3rem; }
.corridor-card.light { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.corridor-card.dark { background: var(--primary); position: relative; overflow: hidden; }
.corridor-card.dark::before { content: ''; position: absolute; top: -5rem; right: -5rem; width: 20rem; height: 20rem; background: rgba(201,162,39,.08); border-radius: 50%; }
.corridor-tag { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--secondary); margin-bottom: 0.75rem; display: block; }
.corridor-card.light h3 { font-size: 1.875rem; margin-bottom: 1rem; }
.corridor-card.dark h3 { font-size: 1.875rem; margin-bottom: 1rem; color: #fff; position: relative; z-index: 1; }
.corridor-card.light p { color: var(--muted); margin-bottom: 2rem; }
.corridor-card.dark p { color: rgba(255,255,255,.75); margin-bottom: 2rem; position: relative; z-index: 1; }
.corridor-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; transition: all .2s; }
.corridor-card.light .corridor-link { color: var(--primary); }
.corridor-card.light .corridor-link:hover { color: var(--secondary); }
.corridor-card.dark .corridor-link { color: var(--secondary); position: relative; z-index: 1; }
.corridor-card.dark .corridor-link:hover { color: #fff; }

/* ---- CTA BANNER ---- */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-banner-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { color: #fff; margin-bottom: 1.25rem; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.125rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ---- SERVICES GRID ---- */
.services-overview { background: var(--bg); padding: 5rem 0; }

/* ---- HOW IT WORKS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 2rem; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--secondary), var(--primary)); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--secondary); color: #fff; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: 0 4px 14px rgba(201,162,39,.4); }
.step-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--muted); font-size: 0.9375rem; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--secondary); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); display: block; }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,.9); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--muted-bg); padding: 5rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow); }
.testimonial-stars { color: var(--secondary); font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { color: var(--foreground); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-size: 1.125rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9375rem; }
.testimonial-role { font-size: 0.8125rem; color: var(--muted); }

/* ---- ABOUT ---- */
.about-story { background: var(--bg); padding: 5rem 0; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.about-stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; box-shadow: var(--shadow); }
.about-stat:nth-child(even) { transform: translateY(1.5rem); }
.about-stat-num { font-size: 2.25rem; font-weight: 800; display: block; margin-bottom: 0.375rem; }
.about-stat-num.primary { color: var(--primary); }
.about-stat-num.secondary { color: var(--secondary); }
.about-stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { background: var(--muted-bg); border: 1px solid rgba(0,0,0,.06); border-radius: 1.5rem; padding: 2.5rem; transition: all .3s; }
.value-card:hover { background: #fff; box-shadow: var(--shadow-xl); }
.value-card svg { color: var(--secondary); margin-bottom: 1.5rem; }
.value-card h3 { font-size: 1.375rem; margin-bottom: 1rem; }
.value-card p { color: var(--muted); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 1rem; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-weight: 600; font-size: 1.0625rem; color: var(--foreground); transition: background .15s; }
.faq-question:hover { background: var(--muted-bg); }
.faq-question.open { background: var(--primary); color: #fff; }
.faq-question.open .faq-icon { transform: rotate(180deg); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform .3s; }
.faq-answer { display: none; padding: 1.5rem; color: var(--muted); line-height: 1.75; border-top: 1px solid var(--border); }
.faq-answer.open { display: block; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-card { background: var(--primary); border-radius: var(--radius-xl); padding: 2.5rem; color: #fff; }
.contact-info-card h3 { color: #fff; margin-bottom: 0.75rem; }
.contact-info-card p { color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { color: var(--secondary); }
.contact-info-label { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: 0.25rem; }
.contact-info-value { color: rgba(255,255,255,.9); font-weight: 500; }

/* ---- FORMS ---- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.form-card h3 { margin-bottom: 0.5rem; }
.form-card .sub { color: var(--muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--foreground); margin-bottom: 0.5rem; }
.form-label span { color: #ef4444; }
.form-control { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: inherit; color: var(--foreground); background: #fff; transition: border-color .2s; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,51,32,.08); }
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 1rem; background: var(--primary); color: #fff; border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .25s; font-family: inherit; }
.form-submit:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(10,51,32,.3); }
.form-success { background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); padding: 1rem 1.25rem; color: #166534; font-weight: 500; display: none; }

/* ---- CALCULATOR ---- */
.calculator-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.calc-result { background: var(--primary); color: #fff; border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem; }
.calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.calc-result-row:last-child { border-bottom: none; font-weight: 700; font-size: 1.125rem; color: var(--secondary); margin-top: 0.5rem; }
.calc-result-label { color: rgba(255,255,255,.75); }
.calc-result-value { color: #fff; font-weight: 600; }

/* ---- FOOTER ---- */
.site-footer { background: #040f09; color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: all .2s; color: rgba(255,255,255,.7); }
.footer-social a:hover { background: var(--secondary); color: #fff; transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: 0.9375rem; transition: color .2s; display: flex; align-items: center; gap: 0.375rem; }
.footer-col ul a:hover { color: var(--secondary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.625rem; margin-bottom: 0.875rem; font-size: 0.9375rem; }
.footer-contact-item a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact-item a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--secondary); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ---- UTILITIES ---- */
.bg-muted { background: var(--muted-bg); }
.bg-primary { background: var(--primary); }
.bg-white { background: #fff; }
.rounded-xl { border-radius: var(--radius-xl); }
.border { border: 1px solid var(--border); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.italic { font-style: italic; }
.line-through { text-decoration: line-through; }
.wp-block-image img { border-radius: var(--radius-lg); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-menu, .nav-actions { display: none; }
  .mobile-toggle { display: flex; align-items: center; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .hero { min-height: auto; }
  .hero-content { padding: 4rem 0 3rem; }
  .hero-stats { display: none; }
  .grid-2, .grid-3, .grid-4, .why-choose-grid, .corridor-grid, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .about-stat:nth-child(even) { transform: none; }
  .years-badge { position: static; margin-top: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
