/*
Theme Name: All Star Group International
Theme URI: https://allstarintgroup.com
Author: All Star Group International
Author URI: https://allstarintgroup.com
Description: Insurance & Tax Service website theme for All Star Group International
Version: 1.0.0
License: Private
Text Domain: allstar
*/

/* =============================================
   ALL STAR GROUP INTERNATIONAL — THEME STYLES
   ============================================= */

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

:root {
  --red:        #C41230;
  --red-dark:   #a50f27;
  --dark:       #0F0F0F;
  --charcoal:   #1C1C1C;
  --white:      #FFFFFF;
  --light:      #F7F7F7;
  --text-dark:  #111827;
  --text-mid:   #555555;
  --gold:       #D4AF37;
  --radius:     4px;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 15px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary   { background: var(--red);  color: white; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline   { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-red-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-red-outline:hover { border-color: white; }
.btn-white     { background: white; color: var(--red); border-color: white; }
.btn-white:hover { background: #f0f0f0; }
.btn-white-outline { background: transparent; color: white; border-color: white; }
.btn-white-outline:hover { background: white; color: var(--red); }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar { background: var(--red); color: white; padding: 9px 0; font-size: 13px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-social { display: flex; gap: 14px; }
.top-bar-social a { color: rgba(255,255,255,0.85); transition: color 0.2s; display: flex; align-items: center; }
.top-bar-social a:hover { color: white; }
.top-bar-contact { display: flex; gap: 24px; align-items: center; }
.top-bar-contact a { color: white; display: flex; align-items: center; gap: 7px; font-weight: 500; transition: opacity 0.2s; }
.top-bar-contact a:hover { opacity: 0.85; }

/* =============================================
   NAV
   ============================================= */
#navbar {
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon { width: 50px; height: 50px; flex-shrink: 0; }
.logo-text .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: 0.3px;
}
.logo-text .brand-sub {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding-bottom: 6px;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a.active, .nav-links a:hover { color: var(--red); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--red);
  color: white;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero { background: var(--white); padding: 84px 0 68px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-content { max-width: 540px; }
.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.0;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-headline .red { color: var(--red); }
.hero-subtext { font-size: 16px; color: var(--text-mid); margin-bottom: 38px; line-height: 1.75; max-width: 400px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap { display: flex; justify-content: center; align-items: flex-end; }
.hero-image-shape {
  width: 480px;
  height: 440px;
  background: var(--red);
  border-radius: 50% 50% 0 0;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.hero-image-shape img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-image-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.hero-image-note { color: rgba(255,255,255,0.5); font-size: 12px; font-style: italic; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { background: var(--charcoal); padding: 52px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.stat-item { text-align: center; color: white; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stat-icon { width: 42px; height: 42px; color: var(--red); }
.stat-number { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 38px; color: var(--red); line-height: 1; }
.stat-label { font-size: 12.5px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--dark); padding: 88px 0; }
.services-inner { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.services-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: white;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.services-intro h2 .red { color: var(--red); }
.services-intro p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.75; margin-bottom: 32px; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service-card { background: white; padding: 28px 18px 24px; border-radius: var(--radius); text-align: center; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon { width: 46px; height: 46px; color: var(--red); margin: 0 auto 16px; }
.service-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12.5px; color: var(--dark); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 10px; line-height: 1.3; }
.service-card p { font-size: 12px; color: var(--text-mid); line-height: 1.55; margin-bottom: 16px; }
.learn-more { color: var(--red); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.learn-more:hover { gap: 8px; }

/* =============================================
   ABOUT
   ============================================= */
.about-section { padding: 88px 0; background: white; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 52px; align-items: center; }
.about-image-wrap { height: 380px; border-radius: var(--radius); overflow: hidden; background: var(--charcoal); position: relative; display: flex; align-items: center; justify-content: center; }
.about-city-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #1c1c2e 0%, #2d1515 60%, #1a0a0a 100%); }
.about-logo-overlay { position: relative; z-index: 1; }
.about-content .label { margin-bottom: 12px; }
.about-content h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 30px; color: var(--dark); line-height: 1.1; text-transform: uppercase; margin-bottom: 18px; letter-spacing: -0.3px; }
.about-content p { color: var(--text-mid); font-size: 14px; line-height: 1.75; margin-bottom: 28px; }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--dark); font-family: 'Montserrat', sans-serif; }
.check-list li svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; }
.about-video-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-thumb { height: 260px; background: linear-gradient(135deg, #1a1a2e, #2d1515); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: opacity 0.2s; }
.video-thumb:hover { opacity: 0.9; }
.play-btn { width: 60px; height: 60px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.play-btn svg { margin-left: 4px; }
.video-thumb:hover .play-btn { transform: scale(1.08); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.video-label { padding: 16px; text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.5px; color: var(--dark); text-transform: uppercase; background: white; border-top: 1px solid #eee; }

/* =============================================
   WHY ALLSTAR
   ============================================= */
.why-section { background: var(--light); padding: 88px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { background: white; padding: 36px 28px; border-radius: var(--radius); border-top: 3px solid var(--red); box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { width: 50px; height: 50px; color: var(--red); margin-bottom: 20px; }
.why-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; color: var(--dark); margin-bottom: 12px; }
.why-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { padding: 88px 0; background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--light); padding: 36px 32px; border-radius: var(--radius); position: relative; overflow: hidden; }
.testimonial-card::before { content: '\201C'; font-size: 100px; color: var(--red); opacity: 0.1; position: absolute; top: -10px; left: 16px; font-family: Georgia, serif; line-height: 1; pointer-events: none; }
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.star { color: #F59E0B; font-size: 17px; }
.testimonial-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: white; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--dark); }
.author-role { font-size: 12px; color: var(--text-mid); margin-top: 2px; }

/* =============================================
   BLOG / RESOURCES
   ============================================= */
.blog-section { background: var(--light); padding: 88px 0; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 300px; gap: 24px; align-items: start; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-image { height: 190px; position: relative; }
.blog-img-1 { background: linear-gradient(135deg, #1a2a4a, #2d4a7a); }
.blog-img-2 { background: linear-gradient(135deg, #1a3a2a, #2d6a4a); }
.blog-img-3 { background: linear-gradient(135deg, #2a1a3a, #4a2d6a); }
.blog-image.has-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.blog-date { position: absolute; bottom: 14px; left: 14px; background: var(--red); color: white; padding: 4px 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; border-radius: 2px; letter-spacing: 0.3px; }
.blog-content { padding: 22px; }
.blog-content h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 14px; line-height: 1.45; }
.read-more { color: var(--red); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.read-more:hover { gap: 8px; }
.newsletter-box { background: var(--red); border-radius: var(--radius); padding: 34px 28px; color: white; }
.nl-icon { width: 36px; height: 36px; margin-bottom: 16px; color: white; }
.newsletter-box h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.newsletter-box p { font-size: 13px; opacity: 0.85; margin-bottom: 22px; line-height: 1.55; }
.newsletter-box input { width: 100%; padding: 12px 14px; border: none; border-radius: var(--radius); font-size: 13px; margin-bottom: 10px; outline: none; font-family: 'Inter', sans-serif; }
.newsletter-box input:focus { box-shadow: 0 0 0 2px rgba(255,255,255,0.5); }
.newsletter-box button { width: 100%; padding: 13px; background: white; color: var(--red); border: none; border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; cursor: pointer; transition: opacity 0.2s, transform 0.15s; }
.newsletter-box button:hover { opacity: 0.92; transform: translateY(-1px); }

/* =============================================
   PARTNERS
   ============================================= */
.partners-section { background: white; padding: 56px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.partners-label { text-align: center; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; color: #999; text-transform: uppercase; margin-bottom: 36px; }
.partners-logos { display: flex; justify-content: center; align-items: center; gap: 52px; flex-wrap: wrap; }
.partner-logo { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: #bbb; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; cursor: default; }
.partner-logo:hover { color: var(--dark); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner { background: var(--red); padding: 88px 0; }
.cta-banner-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-banner h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(28px, 4vw, 46px); color: white; line-height: 1.05; text-transform: uppercase; letter-spacing: -0.5px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-top: 14px; max-width: 480px; line-height: 1.6; }
.cta-banner-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; justify-content: center; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--light); padding: 88px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-info .label { margin-bottom: 12px; }
.contact-info h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: var(--dark); text-transform: uppercase; line-height: 1.1; margin-bottom: 18px; letter-spacing: -0.3px; }
.contact-info > p { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 44px; height: 44px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; }
.contact-detail-item strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--dark); margin-bottom: 3px; }
.contact-detail-item a, .contact-detail-item span { font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.contact-detail-item a:hover { color: var(--red); }
.contact-form-wrap { background: white; border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.contact-form h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12.5px; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: var(--radius); font-size: 14px; font-family: 'Inter', sans-serif; color: var(--dark); background: white; outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,18,48,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-group textarea { resize: vertical; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 14px; }

/* CF7 overrides — if using Contact Form 7 */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-textarea,
.wpcf7-form .wpcf7-select { width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: var(--radius); font-size: 14px; font-family: 'Inter', sans-serif; outline: none; margin-bottom: 16px; }
.wpcf7-form .wpcf7-submit { background: var(--red); color: white; border: none; padding: 15px 32px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; border-radius: var(--radius); cursor: pointer; width: 100%; letter-spacing: 0.5px; transition: background 0.2s; }
.wpcf7-form .wpcf7-submit:hover { background: var(--red-dark); }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--dark); color: white; }
.footer-inner { display: grid; grid-template-columns: 260px 1fr 1fr 1fr 180px; gap: 48px; padding-top: 64px; padding-bottom: 56px; }
.footer-logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 33px; height: 33px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 700; font-family: 'Montserrat', sans-serif; transition: border-color 0.2s, color 0.2s; }
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 20px; color: white; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 13.5px; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 14px; line-height: 1.5; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-quote-box { background: var(--red); border-radius: var(--radius); padding: 26px 22px; align-self: start; }
.footer-quote-box h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.footer-quote-box p { font-size: 12.5px; opacity: 0.85; margin-bottom: 18px; line-height: 1.55; }
.footer-quote-box a { display: block; background: white; color: var(--red); text-align: center; padding: 12px; border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12.5px; letter-spacing: 0.5px; transition: opacity 0.2s, transform 0.15s; }
.footer-quote-box a:hover { opacity: 0.9; transform: translateY(-1px); }
.footer-bottom-wrap { border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; padding-bottom: 22px; font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.25s; backdrop-filter: blur(4px); }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { background: white; border-radius: 8px; padding: 48px 44px; max-width: 400px; width: 90%; text-align: center; transform: translateY(20px); transition: transform 0.25s; }
.modal-overlay.active .modal { transform: translateY(0); }
.modal-icon { width: 72px; height: 72px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #16a34a; }
.modal h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: var(--dark); margin-bottom: 10px; }
.modal p { color: var(--text-mid); font-size: 14px; margin-bottom: 28px; line-height: 1.6; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-quote-box { grid-column: 1 / -1; max-width: 300px; }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { height: 240px; }
  .contact-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-box { grid-column: 1 / -1; }
  .services-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .top-bar-social { display: none; }
  .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: white; flex-direction: column; padding: 24px 28px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); gap: 4px; z-index: 300; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 52px 0 44px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .partners-logos { gap: 24px; }
  .partner-logo { font-size: 13px; }
  .contact-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-headline { font-size: 38px; }
  .cta-banner h2 { font-size: 28px; }
  .hero-ctas { flex-direction: column; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}
