/**
* Izwe Brands - Main Stylesheet
* Author: Izwe Brands
* Version: 1.0 (clean, no duplicate)
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Lato", sans-serif;
  --nav-font: "Montserrat", sans-serif;
  
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #000000; 
  --accent-color: #97c34a;
  --accent-hover: #7fa63d;
    
  --contrast-color: #ffffff;
  
  --nav-color: rgba(255, 255, 255, 0.8);
  --nav-hover-color: #97c34a;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #000000;
  --nav-dropdown-hover-color: #97c34a;
  
  scroll-behavior: smooth;
}

.light-background {
  --background-color: #fffaf2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2a2a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252626;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0 0 0;
}

.header .top-row {
  padding-bottom: 10px;
}

.header .top-row .logo img {
  max-height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

.header .top-row .logo img:hover {
  transform: scale(1.05);
}

.header .nav-wrap {
  background-color: rgba(255, 255, 255, 0.08);
  margin-top: 10px;
  display: flex;
  justify-content: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  backdrop-filter: blur(10px);
}

.header .nav-wrap .container {
  max-width: 1320px;
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.header .mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 5px;
  z-index: 9999;
  font-size: 28px;
  color: var(--nav-color);
  cursor: pointer;
}

.scrolled .header {
  --background-color: #000000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu (fully centred – final version, single copy)
--------------------------------------------------------------*/
.header .nav-title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.header .nav-title-line {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 0.9rem;
}

/* Main link wrapping */
.header .navmenu > ul > li > a {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: center;       /* centre the whole content */
  text-align: center;
  font-weight: 500;
}

/* Dropdown toggle link */
.header .navmenu .dropdown > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.header .navmenu .dropdown > a i {
  font-size: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.header .navmenu .dropdown:hover > a i {
  transform: rotate(180deg);
}

/* Desktop */
@media (min-width: 1200px) {
  .header .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .header .navmenu li {
    position: relative;
  }

  .header .navmenu a {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;       /* DESKTOP CENTRE */
    white-space: nowrap;
    transition: 0.3s;
  }

  .header .navmenu a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .header .navmenu li:hover > a,
  .header .navmenu .active {
    color: var(--nav-hover-color);
  }

  .header .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 220px;
  }

  .header .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .header .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--nav-dropdown-color);
  }

  .header .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: rgba(151, 195, 74, 0.05);
  }

  .header .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .header .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .header .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile */
@media (max-width: 1199px) {
  .header .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 70px 20px 20px 20px;
    padding: 15px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  }

  .header .navmenu a {
    color: var(--nav-dropdown-color);
    padding: 12px 25px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center !important;   /* mobile centre */
  }

  .header .navmenu a i {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(151, 195, 74, 0.1);
    flex-shrink: 0;
  }

  .header .navmenu a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: rgba(151, 195, 74, 0.05);
  }

  .header .navmenu .active {
    color: var(--nav-dropdown-hover-color);
    font-weight: 600;
  }

  .header .navmenu .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .header .navmenu .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 32px;
    top: 15px;
    right: 15px;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.9);
    backdrop-filter: blur(5px);
    transition: 0.3s;
    z-index: 9997;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  /* Force centre nav-title on mobile */
  .header .nav-title,
  .header .navmenu .nav-title {
    align-items: center !important;
    text-align: center !important;
  }

  .header .nav-title-line {
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# User Authentication Dropdown
--------------------------------------------------------------*/
.user-auth-container {
  position: relative;
}

.user-dropdown-toggle {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.user-dropdown-toggle:hover {
  color: var(--accent-color) !important;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.user-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.user-dropdown-toggle:hover .user-icon {
  background-color: rgba(151, 195, 74, 0.2);
}

.user-greeting {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.dropdown-menu {
  min-width: 220px;
  border: none;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 10px 0;
  background-color: #ffffff;
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item {
  font-size: 0.9rem;
  padding: 12px 20px;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item i {
  width: 20px;
  text-align: center;
  color: var(--accent-color);
  font-size: 1rem;
}

.dropdown-item:hover {
  background-color: rgba(151, 195, 74, 0.05);
  color: var(--accent-color);
  padding-left: 25px;
}

/*--------------------------------------------------------------
# Weather Widget
--------------------------------------------------------------*/
.weather-time-widget {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.weather-time-widget:hover {
  transform: translateX(-50%) scale(1.02);
}

.weather-time-widget:hover #datetime-info {
  color: var(--accent-color);
}

#datetime-info {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #97c34a;
  white-space: nowrap;
  transition: color 0.3s ease;
}

#weather-info {
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.3;
  color: #ffffff;
  white-space: nowrap;
  opacity: 0.9;
}

#temp-icon {
  font-size: 1rem;
  margin-right: 2px;
}

.separator {
  margin: 0 2px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .weather-time-widget {
    position: static;
    order: 3;
    width: 100%;
    transform: none;
    left: auto;
    margin-top: 0.5rem;
  }
  
  .weather-time-widget:hover {
    transform: none;
  }
}

@media (max-width: 576px) {
  .weather-time-widget {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Social Sidebar
--------------------------------------------------------------*/
.social-sidebar {
  position: fixed;
  right: 20px;
  top: 65%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-sidebar .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  color: #333;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.social-sidebar .social-icon i {
  font-size: 24px;
}

.social-sidebar .social-icon .whatsapp-icon {
  height: 28px;
  width: 28px;
  object-fit: contain;
  filter: brightness(0.3);
  transition: filter 0.3s ease;
}

.social-sidebar .social-icon .tooltip {
  position: absolute;
  right: 60px;
  background: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.social-sidebar .social-icon .tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #333;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.social-sidebar .social-icon:hover {
  transform: scale(1.15);
}

.social-sidebar .social-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

.social-sidebar .social-icon.facebook:hover { background: #1877f2; color: white; }
.social-sidebar .social-icon.twitter:hover { background: #000000; color: white; }
.social-sidebar .social-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5); color: white; }
.social-sidebar .social-icon.youtube:hover { background: #ff0000; color: white; }
.social-sidebar .social-icon.whatsapp:hover { background: #25d366; color: white; }
.social-sidebar .social-icon.whatsapp:hover .whatsapp-icon { filter: brightness(0) invert(1); }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero .hero-content {
  width: 100%;
  padding: 140px 0 80px;
  margin-top: 30px;
  position: relative;
  z-index: 3;
}

.hero .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
}

.hero .hero-text {
  color: white;
  max-width: 550px;
  position: relative;
  z-index: 3;
}

.since-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease;
}

.since-badge span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero .hero-text h1 {
  font-weight: 700;
  line-height: 1.2;
  color: white;
  font-size: 2.8rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero .hero-text h1 .accent-text,
.text-accent {
  color: var(--accent-color);
}

.hero .hero-text .sub-heading {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero .hero-text ul {
  animation: fadeInUp 1s ease 0.6s both;
}

.hero .hero-text ul li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.hero .hero-text ul li i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

/* Quote Form */
.quote-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  margin-left: auto;
  position: relative;
  z-index: 3;
  animation: fadeInUp 1s ease 0.4s both;
}

.quote-title {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  text-align: center;
}

.quote-accent {
  color: var(--accent-color) !important;
  font-weight: 700;
}

.quote-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.glass-input {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px 15px;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  height: 42px;
}

textarea.glass-input {
  height: auto;
  min-height: 42px;
  resize: vertical;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 15px rgba(151, 195, 74, 0.3);
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

select.glass-input option {
  background: #333;
  color: white;
}

.privacy-check {
  margin: 10px 0 0;
}

.privacy-check .form-check-input {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.privacy-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.privacy-check .form-check-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  cursor: pointer;
}

.privacy-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.privacy-link:hover {
  text-decoration: underline;
  color: #ffa534;
}

.btn-quote {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid var(--accent-color);
}

.btn-quote:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(151, 195, 74, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
  background-color: var(--background-color);
}

.about .content h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.about .content p.text-block {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 1.25rem;
}

.about .content p.lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.75rem;
}

.about .content .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
}

.about .content .subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.btn-outline-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-accent:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(151, 195, 74, 0.3);
  gap: 12px;
}

.btn-outline-accent i {
  transition: transform 0.3s ease;
}

.btn-outline-accent:hover i {
  transform: translateX(5px);
}

.stats-wrapper {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.stat-item .plus-sign {
  font-size: 2rem;
  color: var(--accent-color);
}

.stat-item .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.portrait-image-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.portrait-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.portrait-image:hover {
  transform: scale(1.03);
}

.floating-element {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 25px;
  margin-top: 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--accent-color);
  position: relative;
}

.floating-element blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--default-color);
  margin-bottom: 10px;
  line-height: 1.6;
}

.floating-element cite {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: normal;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Light Feature Cards (replaces dark version)
--------------------------------------------------------------*/
.services-band .feature-card,
.feature-card {
  background-color: #f9f9f9;          /* light grey fill */
  border: 1.5px solid var(--accent-color);  /* accent green outline */
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);  /* soft shadow */
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Keep the accent top-line animation */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* Hover state */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(151, 195, 74, 0.2);
  border-color: var(--accent-hover);
  background-color: #ffffff;           /* pure white on hover */
}

/* Icon */
.feature-icon i {
  color: var(--accent-color);
  font-size: 3.5rem;
}

/* Title */
.feature-title {
  color: var(--heading-color);         /* black */
  font-size: 1.4rem;
  font-weight: 600;
}

/* Description text */
.feature-text {
  color: #444;                        /* dark grey, easy to read */
  opacity: 1;
}

/* Small “Select” link */
.btn-checkout-small {
  color: var(--accent-color) !important;
  font-weight: 600;
  text-decoration: none;
}
/*--------------------------------------------------------------
# Digital Services Band
--------------------------------------------------------------*/
.features-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.features-band .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
}

.features-band .display-4 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 15px;
}

.features-band .lead {
  font-size: 1.2rem;
  color: var(--default-color);
  opacity: 0.9;
}

/* Feature Cards (general) */
.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(151, 195, 74, 0.15);
  border-color: rgba(151, 195, 74, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon i {
  font-size: 3.5rem;
  color: var(--accent-color);
  transition: all 0.4s ease;
  display: inline-block;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.feature-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  opacity: 0.8;
}

/* Domain Pricing */
.domain-pricing-wrapper {
  background: #ffffff;
  border-radius: 25px;
  padding: 45px 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-top: 20px;
  text-align: center;
}

.domain-pricing-line {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--default-color);
  margin: 20px 0;
  white-space: normal;
}

.domain-pricing-line .domain-name {
  font-weight: 700;
  color: var(--heading-color);
  background: rgba(151, 195, 74, 0.1);
  padding: 3px 8px;
  border-radius: 5px;
  margin: 0 5px;
}

.pricing-description {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* ================================================================
   PRICING SECTION – Background Image + Overlay (#000000 at 60%)
   ================================================================ */
.pricing-section {
  background: url('../img/bg/bg-1.png') center/cover no-repeat !important;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
  padding: 100px 0;
}

/* Overlay – uses your main colour #000000 at 60% opacity */
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);   /* #000000 with 0.6 opacity */
  z-index: 0;
  pointer-events: none;
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-section .display-4,
.pricing-section .subtitle,
.pricing-section .domain-subtitle {
  color: #ffffff !important;
}
.pricing-section .subtitle {
  color: var(--accent-color) !important;
}

/* Glass cards */
.pricing-section .pricing-card {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.pricing-section .pricing-card:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 25px 50px rgba(151, 195, 74, 0.15);
  border-color: var(--accent-color) !important;
}

.pricing-section .pricing-card.popular {
  border: 2px solid var(--accent-color) !important;
  box-shadow: 0 20px 40px rgba(151, 195, 74, 0.2);
}

.pricing-section .pricing-title,
.pricing-section .pricing-price .currency,
.pricing-section .pricing-price .amount,
.pricing-section .pricing-description,
.pricing-section .pricing-features li,
.pricing-section .pricing-features li strong {
  color: #ffffff;
}

.pricing-section .pricing-features li i {
  color: var(--accent-color) !important;
}

.pricing-section .pricing-card hr {
  border-color: rgba(255, 255, 255, 0.25);
}

.pricing-section .btn-pricing {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.pricing-section .btn-pricing:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}

.pricing-section .pricing-card.popular .btn-pricing {
  background: var(--accent-color);
  color: white;
}

.pricing-section .director-note {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section (default light version – sections WITHOUT .pricing-section)
--------------------------------------------------------------*/
.pricing {
  padding: 100px 0;
  background-color: #ffffff;
}

.pricing-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 35px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(151, 195, 74, 0.15);
  border-color: var(--accent-color);
}

.pricing-card.popular {
  border: 2px solid var(--accent-color);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(151, 195, 74, 0.2);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  left: 20px;
  background: #6c757d;
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(151, 195, 74, 0.4);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 35px 0 15px;
  text-align: center;
}

.pricing-price {
  text-align: center;
  margin-bottom: 10px;
}

.pricing-price .currency {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent-color);
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.pricing-description {
  text-align: center;
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 15px;
  min-height: 40px;
}

.pricing-card hr {
  margin: 15px 0;
  border-color: rgba(0, 0, 0, 0.05);
  width: 50px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features li strong {
  color: #333;
  font-weight: 600;
}

.btn-pricing {
  display: inline-block;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.btn-pricing:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(151, 195, 74, 0.3);
}

.pricing-card.popular .btn-pricing {
  background: var(--accent-color);
  color: white;
}

.director-note {
  text-align: center;
  margin-top: 15px;
  color: #4CAF50;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 5px 0;
}

/* Full-width CTA Band */
.cta-band {
  position: relative;
  background: url('../img/bg/bg-2.png') center/cover no-repeat;
  padding: 100px 0;
  background-attachment: fixed;      /* optional parallax – remove if you prefer scroll */
  z-index: 0;
}

/* 80% dark overlay */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);   /* 0.8 = 80% dimmed */
  z-index: 0;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band .cta-title {
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.cta-band .cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.cta-band .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-color);
  color: #fff;
  border: 2px solid var(--accent-color);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-band .btn-cta:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(151, 195, 74, 0.3);
}

/* VIP Dark Card - Private Wealth / Black Edition */
.pricing-card.vip-dark-card {
  background: linear-gradient(145deg, #0a0c10 0%, #050608 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.pricing-card.vip-dark-card:hover {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 25px 40px -12px black, inset 0 1px 0 rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

/* Badge */
.pricing-badge.vip-badge {
  background: linear-gradient(135deg, #d4af37, #b8942c);
  color: #0a0c10;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Title */
.vip-title {
  color: #ece8d9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  letter-spacing: -0.5px;
}

/* Price */
.vip-price .currency,
.vip-price .amount {
  color: #d4af37;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

/* Description */
.vip-desc {
  color: #aaa8a0;
  font-weight: 400;
  border-left: 2px solid #d4af37;
  padding-left: 12px;
  background: rgba(212, 175, 55, 0.05);
}

/* HR */
.vip-hr {
  background-color: rgba(212, 175, 55, 0.3);
  height: 1px;
  margin: 1rem 0;
}

/* Features */
.vip-features li {
  color: #cecaba;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.vip-check {
  color: #d4af37;
  filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.5));
}

/* Button - keep inner accent but elevate */
.btn-pricing.accent-btn.vip-btn {
  background: linear-gradient(135deg, #1e1a10, #0f0c08);
  border: 1px solid #d4af37;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.btn-pricing.accent-btn.vip-btn::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 8px;
  pointer-events: none;
}

.btn-pricing.accent-btn.vip-btn:hover {
  background: linear-gradient(135deg, #2a2418, #1a150e);
  color: #ffea9e;
  border-color: #f5c542;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* Director Note */
.vip-note {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 30px;
  display: inline-block;
  width: auto;
  margin-top: 12px;
  text-align: center;
}

/* ================================================================
   TILE COLLAGE – Puzzle Grid (no gaps)
   ================================================================ */
.quote-collage {
  padding: 80px 0;
  background: var(--background-color);
}

.quote-collage .section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* The magic: dense packing fills holes automatically */
.quote-collage .collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 3 columns desktop */
  grid-auto-rows: 150px;                  /* each row = 150px */
  grid-auto-flow: dense;                  /* fill gaps */
  gap: 12px;
}

/* All tile items */
.quote-collage .collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #000;
}

.quote-collage .collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.quote-collage .collage-item:hover img {
  transform: scale(1.08);
}

/* Overlay (same as before) */
.quote-collage .collage-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.quote-collage .collage-item:hover .overlay {
  opacity: 1;
}

.quote-collage .collage-item .overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.quote-collage .collage-item:hover .overlay-content {
  transform: translateY(0);
}

.quote-collage .overlay-content h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.quote-collage .overlay-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.quote-collage .overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.8rem;
}

/* ----- Tile sizes (span different rows/columns) ----- */
/* Square tile = 2 rows x 1 column (300px × 1fr) */
.quote-collage .collage-item.square {
  grid-row-end: span 2;
}

/* Tall portrait = 3 rows x 1 column (450px × 1fr) */
.quote-collage .collage-item.tall {
  grid-row-end: span 3;
}

/* Wide landscape = 2 rows x 2 columns (300px × 2fr) */
.quote-collage .collage-item.wide {
  grid-row-end: span 2;
  grid-column-end: span 2;
}

/* Extra tall = 4 rows (600px) for a striking portrait */
.quote-collage .collage-item.x-tall {
  grid-row-end: span 4;
}

/* Responsive – tablet: 2 columns */
@media (max-width: 992px) {
  .quote-collage .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }
  .quote-collage .collage-item.wide {
    grid-column-end: span 1;   /* can't span 2 columns anymore */
  }
}

/* Mobile: single column */
@media (max-width: 576px) {
  .quote-collage .collage-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .quote-collage .collage-item.wide,
  .quote-collage .collage-item.square,
  .quote-collage .collage-item.tall,
  .quote-collage .collage-item.x-tall {
    grid-row-end: span 1;
    grid-column-end: span 1;
  }
}

/*--------------------------------------------------------------
# Consulting CTA Section (Original Light Version)
--------------------------------------------------------------*/
.consulting-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.consulting-wrapper {
  background: var(--surface-color);
  border-radius: 25px;
  padding: 60px 60px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.consulting-wrapper:hover {
  box-shadow: 0 30px 60px rgba(151, 195, 74, 0.1);
  border-color: rgba(151, 195, 74, 0.2);
}

.consulting-content .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
}

.consulting-content .subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.consulting-content h2 {
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.consulting-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 90%;
}

.consulting-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
  margin: 0 auto;
}

.btn-consulting-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent-color);
  color: white;
  border: 2px solid var(--accent-color);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-consulting-primary:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(151, 195, 74, 0.3);
}

.btn-consulting-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  color: var(--heading-color);
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-consulting-secondary i {
  color: var(--accent-color);
}

.btn-consulting-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-5px);
  background: rgba(151, 195, 74, 0.05);
}

.foundation-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.foundation-image {
  max-height: none;   /* was 140px – now unlimited */
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: drop-shadow(0 10px 20px rgba(151, 195, 74, 0.2));
}

.foundation-image:hover {
  transform: scale(1.1) rotate(3deg);
}

.foundation-highlights {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 40px;
}

.highlight-item {
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(151, 195, 74, 0.15);
  border-color: rgba(151, 195, 74, 0.2);
}

.highlight-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.highlight-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.highlight-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.partnership-note {
  background: rgba(151, 195, 74, 0.05);
  border-left: 4px solid var(--accent-color);
  padding: 20px 25px;
  border-radius: 10px;
}

.partnership-note p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--heading-color);
}

.partnership-note i {
  color: var(--accent-color);
  margin-right: 10px;
}

/* ================================================================
   Foundation CTA – Reverted to light (no dark green fill)
   ================================================================ */
.consulting-cta.section .highlight-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
  color: var(--heading-color);
}

.consulting-cta.section .highlight-item h4 {
  color: var(--heading-color);
}

.consulting-cta.section .highlight-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.consulting-cta.section .highlight-item i {
  color: var(--accent-color);
}

.consulting-cta.section .highlight-item:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  border-color: rgba(151, 195, 74, 0.2) !important;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(151, 195, 74, 0.15);
}

/* Partnership note – light version */
.consulting-cta.section .partnership-note {
  background: rgba(151, 195, 74, 0.05);
  border-left: 4px solid var(--accent-color);
  color: var(--heading-color);
}

.consulting-cta.section .partnership-note p,
.consulting-cta.section .partnership-note strong {
  color: var(--heading-color);
}

.consulting-cta.section .partnership-note i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Google Reviews & FAQ Section
--------------------------------------------------------------*/
.faq-google-section {
  padding: 100px 0;
  background: var(--background-color);
}

.google-reviews-wrapper {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 25px;
  padding: 40px 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.google-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.google-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.google-logo i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.google-logo span {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--heading-color);
}

.google-rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.average-rating {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.stars {
  color: #FFC107;
  font-size: 1.2rem;
  display: flex;
  gap: 5px;
}

.total-reviews {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.reviews-carousel {
  flex-grow: 1;
  margin-bottom: 25px;
  min-height: 300px;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
  margin: 5px;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(151, 195, 74, 0.15);
  border-color: rgba(151, 195, 74, 0.2);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.google-icon-small {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-icon-small i {
  font-size: 24px;
  color: white;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.reviewer-info .rating {
  color: #FFC107;
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 20px;
  font-style: italic;
}

.review-date {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-align: right;
}

.reviews-carousel .carousel-control-prev,
.reviews-carousel .carousel-control-next {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  top: auto;
  bottom: -50px;
  opacity: 0.9;
  border: 2px solid white;
}

.reviews-carousel .carousel-control-prev {
  left: calc(50% - 45px);
}

.reviews-carousel .carousel-control-next {
  right: calc(50% - 45px);
}

.reviews-carousel .carousel-control-prev:hover,
.reviews-carousel .carousel-control-next:hover {
  opacity: 1;
  transform: scale(1.1);
}

.reviews-carousel .carousel-indicators {
  position: relative;
  margin-top: 30px;
  margin-bottom: 0;
  bottom: auto;
}

.reviews-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  opacity: 0.5;
  margin: 0 5px;
  border: none;
  transition: all 0.3s ease;
}

.reviews-carousel .carousel-indicators button.active {
  background-color: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.write-review {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
  flex-shrink: 0;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent-color);
  color: white;
  border: 2px solid var(--accent-color);
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-google-review:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(151, 195, 74, 0.3);
}

.live-reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--heading-color);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 50px;
  background: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.live-reviews-link i {
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.live-reviews-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.live-reviews-link:hover i {
  color: white;
  transform: translateX(5px);
}

.faq-header-wrapper {
  text-align: left;
}

.faq-header-wrapper .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
}

.faq-header-wrapper .subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.faq-header-wrapper h2 {
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.faq-header-wrapper .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.faq-google-section .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.2rem 0;
}

.faq-google-section .faq-header {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.faq-google-section .faq-header:hover {
  color: var(--accent-color);
  padding-left: 10px;
}

.faq-google-section .faq-header i {
  transition: transform 0.4s ease;
  font-size: 1rem;
  color: var(--accent-color);
  background: rgba(151, 195, 74, 0.1);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-google-section .faq-header[aria-expanded="true"] i {
  transform: rotate(180deg);
  background: var(--accent-color);
  color: white;
}

.faq-google-section .faq-content {
  padding-top: 1.2rem;
  color: var(--default-color);
  line-height: 1.7;
  font-size: 0.95rem;
  padding-left: 15px;
  border-left: 2px solid rgba(151, 195, 74, 0.3);
  margin-top: 10px;
}

.faq-image-wrapper {
  position: relative;
  margin-top: 2.5rem;
}

.faq-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(151, 195, 74, 0.1);
  transition: all 0.3s ease;
}

.faq-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(151, 195, 74, 0.2);
  border-color: var(--accent-color);
}

.faq-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.faq-image-container:hover .faq-image {
  transform: scale(1.08);
}

.faq-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(151, 195, 74, 0.95) 0%, rgba(151, 195, 74, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-image-container:hover .faq-image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 25px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.faq-image-container:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 20px;
}

.btn-overlay {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-overlay:hover {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners-section {
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.partners-section h3 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 30px;
}

.partners-marquee {
  overflow: hidden;
  padding: 25px 0;
  white-space: nowrap;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.marquee-track {
  display: inline-block;
  animation: scrollPartners 30s linear infinite;
  white-space: nowrap;
}

.partner-link {
  display: inline-block;
  margin: 0 35px;
  text-decoration: none;
}

.partner-logo {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15);
}

.partners-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollPartners {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer.dark-background {
  --background-color: #1a1a1a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252626;
  --contrast-color: #ffffff;
}

.footer .footer-content .footer-logo {
  display: block;
  height: 50px;
  width: auto;
  max-width: 100%;
  transition: all 0.3s ease;
}

.footer.dark-background .footer-content .footer-logo {
  filter: brightness(0) invert(1);
}

.footer .footer-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer .official-partners h5 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
  opacity: 0.9;
}

.footer .partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.footer .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 70px;
  min-width: 110px;
  flex: 1;
  max-width: 130px;
}

.footer .partner-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.footer .partner-logo img {
  max-height: 40px;
  width: auto;
  max-width: 100px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer .partner-logo:hover img {
  opacity: 1;
}

.footer.dark-background .partner-logo img {
  filter: brightness(0) invert(1);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 18px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--default-color);
  font-size: 0.9rem;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
}

.footer h4 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

.footer .footer-links ul a i {
  margin-right: 10px;
  font-size: 0.9rem;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(151, 195, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer .footer-contact .contact-item:hover .contact-icon {
  background-color: var(--accent-color);
  transform: scale(1.1);
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer .footer-contact .contact-item:hover .contact-icon i {
  color: white;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer .footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
}

.footer .footer-bottom .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

.footer .footer-bottom .footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer .footer-bottom .footer-bottom-links a:hover::after {
  width: 100%;
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(151, 195, 74, 0.3);
  border: 2px solid white;
}

.scroll-top i {
  font-size: 1.4rem;
  color: var(--contrast-color);
}

.scroll-top:hover {
  background-color: var(--accent-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(151, 195, 74, 0.4);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  width: 60px;
  height: 60px;
  border: 6px solid transparent;
  border-top-color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-title p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 700px;
  margin: 0 auto;
}

/* GUARANTEE VERTICAL DROPDOWNS */
.header .navmenu .dropdown-menu-custom {
  display: block !important;          /* stack items vertically */
  flex-direction: column !important;  /* override any flex row */
  position: absolute !important;      /* ensure it drops down */
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.header .navmenu .dropdown:hover > .dropdown-menu-custom {
  visibility: visible;
  opacity: 1;
  top: 100% !important;
}

.header .navmenu .dropdown-menu-custom li {
  display: block !important;          /* each item on its own line */
  width: 100%;
}

/* Nested submenu (Resources) – drops to the right (or keep it down if preferred) */
.header .navmenu .dropdown-submenu > .dropdown-menu-custom {
  top: 0 !important;
  left: 100% !important;
  transform: translateX(0) !important;
}
/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-accent {
  color: var(--accent-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.php-email-form .error-message,
.php-email-form .sent-message,
.php-email-form .loading {
  display: none;
  padding: 12px;
  margin-top: 15px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.php-email-form .error-message {
  background: #df1529;
  color: #ffffff;
}

.php-email-form .sent-message {
  background: #059652;
  color: #ffffff;
}

.php-email-form .loading {
  background: var(--surface-color);
  text-align: center;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 3px solid var(--accent-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinner 1s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1400px) {
  .hero .hero-text h1 { font-size: 2.5rem; }
}

@media (max-width: 1200px) {
  .hero .hero-text h1 { font-size: 2.3rem; }
  .consulting-content h2 { font-size: 2rem; }
  .faq-header-wrapper h2 { font-size: 2rem; }
}

@media (max-width: 992px) {
  .hero .hero-text { text-align: center; margin-bottom: 40px; max-width: 100%; }
  .hero .hero-text h1 { font-size: 2.2rem; }
  .hero .hero-content { padding: 120px 0 60px; }
  .quote-glass-card { margin-left: 0; max-width: 100%; }
  .consulting-content p { max-width: 100%; margin-bottom: 25px; }
  .consulting-actions { flex-direction: row; max-width: 100%; gap: 20px; }
  .foundation-image-wrapper { justify-content: center; margin-top: 30px; }
  .google-reviews-wrapper { margin-bottom: 50px; }
  .faq-header-wrapper h2 { font-size: 1.8rem; }
  .faq-header-wrapper { text-align: center; }
  .faq-header-wrapper .subtitle::after { left: 50%; transform: translateX(-50%); }
  .domain-pricing-line { font-size: 1rem; }
  .footer .footer-bottom .footer-bottom-links { text-align: center; margin-top: 15px; }
  .footer .footer-bottom .footer-bottom-links a { margin: 0 10px; }
}

@media (max-width: 768px) {
  .hero .hero-content { padding: 100px 0 50px; }
  .hero .hero-text h1 { font-size: 2rem; }
  .hero .hero-text .sub-heading { font-size: 1rem; }
  .quote-glass-card { padding: 20px 15px; }
  .social-sidebar { right: 10px; gap: 8px; }
  .social-sidebar .social-icon { width: 40px; height: 40px; }
  .social-sidebar .social-icon i { font-size: 20px; }
  .social-sidebar .social-icon .tooltip { display: none; }
  .consulting-wrapper { padding: 40px 25px; }
  .consulting-actions { flex-direction: column; gap: 15px; }
  .consulting-content h2 { font-size: 1.8rem; text-align: center; }
  .consulting-content { text-align: center; }
  .consulting-content .subtitle::after { left: 50%; transform: translateX(-50%); }
  .foundation-highlights { margin-top: 30px; }
  .faq-header-wrapper h2 { font-size: 1.6rem; }
  .google-reviews-wrapper { padding: 30px 20px; }
  .average-rating { font-size: 2.2rem; }
  .google-logo span { font-size: 1.4rem; }
  .reviews-carousel .carousel-control-prev,
  .reviews-carousel .carousel-control-next { bottom: -40px; }
  .faq-image { height: 160px; }
  .section-title h2 { font-size: 2rem; }
  .features-band .display-4 { font-size: 2.2rem; }
  .domain-pricing-wrapper { padding: 30px 20px; }
  .domain-pricing-line { font-size: 0.95rem; line-height: 1.8; }
  .footer { padding: 60px 0 0; }
  .footer h4 { margin-top: 20px; }
}

@media (max-width: 576px) {
  .hero .hero-content { padding: 90px 0 40px; }
  .hero .hero-text h1 { font-size: 1.8rem; }
  .since-badge { padding: 5px 15px; }
  .since-badge span { font-size: 0.75rem; }
  .quote-title { font-size: 1.4rem; }
  .consulting-content h2 { font-size: 1.5rem; }
  .consulting-content p { font-size: 0.9rem; }
  .btn-consulting-primary,
  .btn-consulting-secondary { padding: 12px 20px; font-size: 0.9rem; }
  .foundation-image { max-height: 80px; }
  .faq-header-wrapper h2 { font-size: 1.4rem; }
  .google-icon-small { width: 40px; height: 40px; }
  .google-icon-small i { font-size: 20px; }
  .review-card { padding: 20px; }
  .review-text { font-size: 0.85rem; }
  .faq-image { height: 140px; }
  .section-title h2 { font-size: 1.8rem; }
  .features-band .display-4 { font-size: 1.8rem; }
  .feature-title { font-size: 1.2rem; }
  .pricing-title { font-size: 1.3rem; }
  .pricing-price .amount { font-size: 2.2rem; }
  .domain-pricing-line { font-size: 0.85rem; line-height: 1.8; }
  .domain-pricing-line .domain-name { display: inline-block; margin: 2px; }
  .partners-section h3 { font-size: 1.4rem; }
  .partner-logo { height: 40px; }
}