/*
Theme Name: SEO Optimisation Theme
Theme URI: https://seooptimisation.co.za
Author: SEO Optimisation
Description: Custom Elementor theme for SEO Optimisation Gauteng
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
License: Proprietary
Text Domain: seo-optimisation
*/

/* ===========================================
   1. CSS VARIABLES
=========================================== */
:root {
  --primary:        #13C6C8;
  --primary-dark:   #0FA8AA;
  --primary-light:  #E8F9F9;
  --primary-glow:   rgba(19,198,200,0.15);
  --dark:           #1E2D54;
  --dark-2:         #243659;
  --dark-3:         #162240;
  --text:           #5E6278;
  --heading:        #1E2D54;
  --light:          #F8F9FB;
  --light-2:        #EFF2F7;
  --white:          #FFFFFF;
  --yellow:         #F6C344;
  --border:         #E4E6EF;
  --shadow:         0 5px 30px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:      0 15px 60px rgba(0,0,0,0.15);
  --radius:         8px;
  --radius-lg:      15px;
  --radius-xl:      25px;
  --transition:     all 0.3s ease;
  --font:           'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===========================================
   2. RESET & BASE
=========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

/* ===========================================
   3. TYPOGRAPHY
=========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--heading);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1em; color: var(--text); }
p:last-child { margin-bottom: 0; }

/* ===========================================
   4. TOP BAR
=========================================== */
.site-top-bar {
  background: var(--dark);
  padding: 10px 0;
  font-size: 13px;
}
.top-bar-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-contact { display: flex; align-items: center; gap: 24px; }
.top-bar-contact a {
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
}
.top-bar-contact a:hover { color: var(--primary); }
.top-bar-contact i { font-size: 12px; color: var(--primary); }
.top-bar-social { display: flex; align-items: center; gap: 14px; }
.top-bar-social a {
  color: rgba(255,255,255,0.60);
  font-size: 13px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.top-bar-social a:hover { color: var(--white); background: rgba(255,255,255,0.12); }

/* ===========================================
   5. NAVIGATION
=========================================== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo .logo-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.site-logo .logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.site-logo .logo-text span { color: var(--primary); }
.site-logo:hover .logo-text { color: var(--dark); }

/* Main Navigation */
.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a {
  color: var(--primary);
  background: var(--primary-light);
}
.main-nav ul li.menu-cta > a {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.3px;
}
.main-nav ul li.menu-cta > a:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(19,198,200,0.35);
}

/* Dropdown */
.main-nav ul li { position: relative; }
.main-nav ul li ul {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  flex-direction: column;
  padding: 8px;
  gap: 2px;
  z-index: 100;
}
.main-nav ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav ul li ul li a {
  padding: 9px 14px;
  font-size: 13.5px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    padding: 80px 40px 40px;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; width: 100%; max-width: 300px; }
  .main-nav ul li a { font-size: 16px; padding: 12px 16px; text-align: center; }
  .main-nav ul li ul { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--light); margin-top: 4px; }
}

/* ===========================================
   6. PAGE LAYOUT (ELEMENTOR INTEGRATION)
=========================================== */
.site-content { min-height: 60vh; }
.elementor-section-wrap,
.elementor-section { width: 100%; }

/* Full width override */
body.elementor-page .site-content,
body.elementor-page .entry-content {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* ===========================================
   7. HERO SECTION (ELEMENTOR CUSTOM CLASSES)
=========================================== */
.seo-hero {
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.seo-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: var(--primary-glow);
  border-radius: 50%;
  z-index: 0;
}
.seo-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  background: rgba(246,195,68,0.08);
  border-radius: 50%;
  z-index: 0;
}
.seo-hero .elementor-container { position: relative; z-index: 1; }

/* ===========================================
   8. SECTION STYLES
=========================================== */
.section-title-wrap { text-align: center; margin-bottom: 50px; }
.section-subtitle {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 12px;
  background: var(--primary-light);
  padding: 5px 16px;
  border-radius: 50px;
}

/* Dark overlay section */
.seo-dark-section {
  background: var(--dark);
  color: var(--white);
}
.seo-dark-section h1, .seo-dark-section h2, .seo-dark-section h3,
.seo-dark-section h4, .seo-dark-section p { color: var(--white); }
.seo-dark-section p { color: rgba(255,255,255,0.75); }

/* Teal gradient section */
.seo-gradient-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a4c7a 100%);
  color: var(--white);
}

/* ===========================================
   9. CARDS
=========================================== */
.seo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
}
.seo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

/* Icon box styling */
.elementor-widget-icon-box .elementor-icon-box-wrapper { gap: 18px; }
.elementor-widget-icon-box .elementor-icon {
  background: var(--primary-light) !important;
  border-radius: 12px !important;
}
.elementor-widget-icon-box .elementor-icon i { color: var(--primary) !important; }

/* Service card custom class */
.seo-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
  height: 100%;
}
.seo-service-card:hover {
  border-top-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ===========================================
   10. BUTTONS
=========================================== */
.seo-btn,
.elementor-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}
.seo-btn-primary,
.elementor-button.elementor-button-info {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.seo-btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19,198,200,0.35);
  color: var(--white);
}
.seo-btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.seo-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.seo-btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.seo-btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* Elementor button overrides */
.elementor-widget-button .elementor-button {
  font-family: var(--font);
}

/* ===========================================
   11. STATS / COUNTER
=========================================== */
.seo-stats-section { background: var(--white); }
.seo-stat-item { text-align: center; padding: 20px; }
.seo-stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.seo-stat-label {
  font-size: 14px;
  color: var(--text);
  margin-top: 8px;
  font-weight: 500;
}
.elementor-counter-number-wrapper .elementor-counter-number {
  color: var(--primary);
  font-weight: 800;
}

/* ===========================================
   12. TESTIMONIALS
=========================================== */
.seo-testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border-top: 3px solid var(--primary-light);
}
.seo-testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.seo-testimonial::before {
  content: '\201C';
  font-size: 80px;
  color: var(--primary-light);
  line-height: 0.5;
  position: absolute;
  top: 30px; left: 24px;
  font-family: Georgia, serif;
}
.seo-testimonial-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  margin-top: 20px;
}
.seo-testimonial-author { display: flex; align-items: center; gap: 14px; }
.seo-testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.seo-testimonial-name { font-weight: 600; color: var(--heading); font-size: 14px; }
.seo-testimonial-role { font-size: 12.5px; color: var(--text); }
.seo-stars { color: #F6C344; font-size: 13px; margin-bottom: 4px; }

/* ===========================================
   13. CTA SECTION
=========================================== */
.seo-cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.seo-cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: var(--primary-glow);
  border-radius: 50%;
}
.seo-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 100px;
  width: 300px; height: 300px;
  background: rgba(246,195,68,0.06);
  border-radius: 50%;
}
.seo-cta-section * { position: relative; z-index: 1; }

/* ===========================================
   14. FOOTER
=========================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
}
.footer-brand .footer-logo { margin-bottom: 18px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--primary);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.footer-contact-item a:hover { color: var(--primary); }

.footer-col-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 9px;
  color: var(--primary);
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

/* Newsletter */
.footer-newsletter p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 16px;
}
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--primary); background: rgba(255,255,255,0.12); }
.newsletter-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Footer bottom */
.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
}
.footer-copyright a { color: var(--primary); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-bottom-links a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

/* ===========================================
   15. FLOATING CTA (MOBILE)
=========================================== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 25px rgba(19,198,200,0.4);
  z-index: 998;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.floating-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--white);
}
@media (max-width: 768px) { .floating-cta { display: flex; } }

/* ===========================================
   16. UTILITIES
=========================================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-dark { color: var(--dark); }
.text-white { color: var(--white); }

.bg-light  { background: var(--light); }
.bg-dark   { background: var(--dark); }
.bg-white  { background: var(--white); }
.bg-primary { background: var(--primary); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.badge-dark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* Divider */
.seo-divider {
  width: 50px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin: 16px auto;
}
.seo-divider.left { margin-left: 0; }

/* Check list */
.seo-check-list { display: flex; flex-direction: column; gap: 12px; }
.seo-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
}
.seo-check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 12px;
  background: var(--primary-light);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Trust badges */
.trust-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.trust-badge i { color: var(--primary); font-size: 15px; }

/* ===========================================
   17. PAGE HERO (INNER PAGES)
=========================================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Ccircle cx='400' cy='400' r='350' fill='none' stroke='rgba(19,198,200,0.08)' stroke-width='80'/%3E%3Ccircle cx='400' cy='400' r='250' fill='none' stroke='rgba(19,198,200,0.06)' stroke-width='60'/%3E%3C/svg%3E") center/cover no-repeat;
}
.page-hero-content { max-width: 700px; position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.80); font-size: 17px; max-width: 580px; margin-bottom: 28px; }
.page-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.page-hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 600;
}
.page-hero-phone i { color: var(--primary); }

/* ===========================================
   18. 404 PAGE
=========================================== */
.page-404 { text-align: center; padding: 120px 20px; }
.page-404 .error-code {
  font-size: 140px;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 0;
}
.page-404 h1 { font-size: 2rem; margin-bottom: 16px; }
.page-404 p { font-size: 17px; max-width: 480px; margin: 0 auto 32px; }
.page-404-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===========================================
   19. BREADCRUMBS
=========================================== */
.seo-breadcrumbs {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.seo-breadcrumbs a { color: var(--primary); }
.seo-breadcrumbs span { color: rgba(255,255,255,0.40); }

/* ===========================================
   20. PARTNER LOGOS
=========================================== */
.seo-partners { padding: 40px 0; }
.partners-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  opacity: 0.6;
  margin-bottom: 24px;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 50px;
}
.partners-grid a {
  opacity: 0.4;
  filter: grayscale(1);
  transition: var(--transition);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.partners-grid a:hover { opacity: 0.9; filter: none; color: var(--primary); }

/* ===========================================
   21. CONTACT PAGE
=========================================== */
.contact-info-box {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border-bottom: none; padding-bottom: 0; }
.contact-method-icon {
  width: 46px; height: 46px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-method h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 4px; font-weight: 500; }
.contact-method a { font-size: 16px; font-weight: 600; color: var(--heading); }
.contact-method a:hover { color: var(--primary); }
.contact-method p { font-size: 13px; color: var(--text); }

/* ===========================================
   22. RESPONSIVE
=========================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
}
@media (max-width: 768px) {
  .top-bar-contact .hide-mobile { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-main { padding: 50px 0 35px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .page-hero { padding: 60px 0 50px; }
  .seo-breadcrumbs { display: none; }
}
@media (max-width: 480px) {
  .top-bar-social { display: none; }
  .header-inner { height: 64px; }
}

/* ===========================================
   23. ELEMENTOR SPECIFIC OVERRIDES
=========================================== */
.elementor-section.elementor-section-stretched {
  width: 100% !important;
  left: 0 !important;
  max-width: 100% !important;
}

/* Ensure proper font rendering in Elementor widgets */
.elementor-widget-heading .elementor-heading-title,
.elementor-widget-text-editor p {
  font-family: var(--font);
}

/* Icon box card style */
.elementor-widget-icon-box.seo-icon-card .elementor-icon-box-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.elementor-widget-icon-box.seo-icon-card:hover .elementor-icon-box-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Smooth scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
