/**
 * Lily and Rose Home Care — "Refined Care" Design System
 *
 * Aesthetic: Warm, trustworthy, premium home care agency.
 * Typography: Playfair Display (serif headings) + Nunito (warm sans body)
 *
 * Brand Colors:
 *   Primary Blue:   #3174b4
 *   Teal Accent:    #37b6ab
 *   Dark Slate:     #264452
 *   Darker Slate:   #1a2f3a
 *   Warm White:     #faf9f7
 *
 * Base skin: blue (Gavias Daudo)
 */

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --blue:         #3174b4;
  --blue-dark:    #255d96;
  --teal:         #37b6ab;
  --teal-dark:    #2a9a90;
  --dark:         #264452;
  --darker:       #1a2f3a;
  --warm-white:   #faf9f7;
  --light-gray:   #f2f5f8;
  --text-body:    #3d4a52;
  --text-muted:   #6b7f8a;
  --border:       #dde4ea;

  --shadow-sm:    0 2px 12px rgba(49, 116, 180, 0.08);
  --shadow-md:    0 6px 28px rgba(49, 116, 180, 0.13);
  --shadow-lg:    0 14px 48px rgba(49, 116, 180, 0.20);
  --shadow-teal:  0 6px 24px rgba(55, 182, 171, 0.25);

  --radius:       12px;
  --radius-sm:    8px;
  --radius-pill:  50px;

  --transition:   all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Hind', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  background-color: #ffffff;
}

/* ============================================================
   TYPOGRAPHY HIERARCHY
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.22;
  color: var(--dark);
  letter-spacing: -0.3px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p {
  font-family: 'Nunito', sans-serif;
  margin-bottom: 1.1rem;
}

strong, b {
  font-weight: 700;
}

/* ============================================================
   LINKS & GLOBAL
   ============================================================ */
a {
  transition: var(--transition);
}

a:hover, a:focus, a:active {
  color: var(--blue);
}

/* ============================================================
   HEADER SCROLL STATE
   ============================================================ */
#header.header-scrolled,
#header-sticky.sticky-visible {
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
}

/* ============================================================
   NAVIGATION REFINEMENTS
   ============================================================ */
.gva_menu > li > a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
  transition: var(--transition);
}

/* Animated underline on nav hover */
.gva_menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gva_menu > li > a:hover::after,
.gva_menu > li.active > a::after,
.gva_menu > li.active-trail > a::after {
  width: 60%;
}

ul.menu > li > a:hover,
ul.menu > li > a:focus,
ul.menu > li.is-active > a,
ul.menu > li.active-trail > a {
  color: var(--blue);
}

.gva_menu > li > a:hover,
.gva_menu > li.active > a,
.gva_menu > li.active-trail > a {
  color: var(--blue);
}

/* Submenu */
.gva_menu ul.sub-menu > li > a:hover,
.gva_menu ul.sub-menu > li.active > a {
  color: var(--blue);
}

/* Mega-menu column headers */
.gva_menu .mega-menu .menu-title {
  font-family: 'Playfair Display', serif;
  color: var(--blue);
}

/* ============================================================
   SECTION HEADING (gsc-heading)
   ============================================================ */
.gsc-heading .title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.gsc-heading .sub-title {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 10px;
}

/* Heading sub-title and decorative line on dark/image backgrounds */
.gsc-heading.text-light .sub-title,
.gsc-heading.text-light .title-line-before {
  color: rgba(255,255,255,0.85);
}
.gsc-heading.text-light .title {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.gsc-heading.text-light .title-desc {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}

.gsc-heading .title-line,
.gsc-heading .title-line-through::before,
.gsc-heading .title-line-through::after {
  background: linear-gradient(90deg, var(--teal), var(--blue));
  height: 3px;
  border-radius: 3px;
}

/* ============================================================
   THEME COLOR UTILITY CLASSES
   ============================================================ */
.bg-theme,
.bg-theme-color {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
}

.text-theme,
.text-theme > a,
.color-theme,
.color-theme > a {
  color: var(--blue) !important;
}

.border-theme {
  border-color: var(--blue) !important;
}

/* ============================================================
   BUTTONS — Pill shape, gradient, shadow lift
   ============================================================ */
.btn-theme,
.btn-primary,
.gsc-button .btn-theme {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: transparent;
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 28px;
  box-shadow: 0 4px 16px rgba(49, 116, 180, 0.30);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-theme::before,
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  opacity: 0;
  transition: opacity 0.32s ease;
  border-radius: inherit;
}

.btn-theme:hover,
.btn-theme:focus,
.btn-theme:active,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(49, 116, 180, 0.40);
}

.btn-theme:hover::before,
.btn-primary:hover::before {
  opacity: 1;
}

.btn-theme span,
.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-theme-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  padding: 9px 28px;
  transition: var(--transition);
}

.btn-theme-outline:hover,
.btn-theme-outline:focus {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   ICON BOXES — Depth, hover lift, glow ring
   ============================================================ */
.gsc-icon-box {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(49, 116, 180, 0.06);
  height: 100%;
}

.gsc-icon-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(55, 182, 171, 0.15);
}

/* Icon circle */
.gsc-icon-box .icon-box-wrap .box-icon {
  transition: var(--transition);
}

.gsc-icon-box .icon-box-wrap .box-icon i,
.gsc-icon-box .icon-box-wrap .box-icon .fa {
  color: var(--blue);
  transition: var(--transition);
}

.gsc-icon-box.style-icon-top .icon-box-wrap .box-icon,
.gsc-icon-box.style-center .icon-box-wrap .box-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  border-radius: 50%;
  transition: var(--transition);
}

.gsc-icon-box:hover .icon-box-wrap .box-icon {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 0 0 8px rgba(55, 182, 171, 0.12);
  transform: scale(1.08);
}

.gsc-icon-box:hover .icon-box-wrap .box-icon i {
  color: #fff;
}

/* Icon box title */
.gsc-icon-box .icon-box-wrap .box-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 14px;
}

/* Icon box new (gva_icon_box_style) */
.gsc-icon-box-new {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(49, 116, 180, 0.06);
}

.gsc-icon-box-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Icon box on dark/blue backgrounds — override for light variant */
.text-light .gsc-icon-box,
.text-light .gsc-icon-box-new {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.15);
}

.text-light .gsc-icon-box:hover,
.text-light .gsc-icon-box-new:hover {
  background: rgba(255,255,255,0.18);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

/* Ensure Font Awesome icons render correctly inside icon-inner circles */
.gsc-icon-box-new .icon-inner .icon.fas,
.gsc-icon-box-new .icon-inner .icon.far,
.gsc-icon-box-new .icon-inner .icon.fab {
  font-size: 20px;
  line-height: 38px;
  display: block;
  width: 100%;
  text-align: center;
}

/* style-3 icon boxes with text-light class (all classes on same element) */
.gsc-icon-box-new.style-3.text-light {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
}
.gsc-icon-box-new.style-3.text-light:hover {
  background: rgba(255,255,255,0.20);
}
.gsc-icon-box-new.style-3.text-light .icon-inner {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.gsc-icon-box-new.style-3.text-light .content-inner {
  color: #fff;
}
.gsc-icon-box-new.style-3.text-light .title,
.gsc-icon-box-new.style-3.text-light h3,
.gsc-icon-box-new.style-3.text-light h4 {
  color: #fff;
}
.gsc-icon-box-new.style-3.text-light p {
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   SERVICE BLOCKS
   ============================================================ */
.service-block .service-inner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: #ffffff;
}

.service-block .service-inner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-block .service-inner .service-image .service-readmore a,
.service-block .service-title a:hover {
  color: var(--blue);
}

.service-block .service-inner:hover .service-image .service-readmore {
  background: linear-gradient(135deg, rgba(49,116,180,0.88), rgba(55,182,171,0.85));
}

.service-block .service-title a {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* ============================================================
   PAGER
   ============================================================ */
.pager ul.pager__items > li.is-active a,
.pager ul.pager__items > li a:hover {
  background: var(--blue);
  border-color: var(--blue);
  border-radius: var(--radius-sm);
}

/* ============================================================
   TABS & ACCORDIONS
   ============================================================ */
.nav-tabs > li.active > a,
.nav-tabs > li > a.active,
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  border-top-color: var(--blue);
  color: var(--blue);
}

.panel-heading a[aria-expanded="true"],
.accordion .card-header .btn:not(.collapsed) {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

/* ============================================================
   OWL CAROUSEL DOTS & ARROWS
   ============================================================ */
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--blue);
}

.owl-carousel .owl-nav > div:hover {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-color: transparent;
  box-shadow: var(--shadow-teal);
}

/* ============================================================
   PROGRESS BARS
   ============================================================ */
.progress-bar,
.gsc-progress-bar .bar-inner {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

/* ============================================================
   COUNTER / MILESTONE BLOCKS
   ============================================================ */
.milestone-block {
  text-align: center;
  padding: 20px;
  transition: var(--transition);
}

.milestone-block:hover {
  transform: translateY(-4px);
}

.milestone-block .milestone-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.milestone-block .symbol {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* On dark backgrounds */
.gbb-row-wrapper[style*="264452"] .milestone-block .milestone-number,
.gbb-row-wrapper[style*="264452"] .milestone-block .symbol {
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.milestone-block .milestone-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.80);
  margin-top: 8px;
}

.milestone-block .milestone-icon span {
  font-size: 2.4rem;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
  transition: var(--transition);
}

.milestone-block:hover .milestone-icon span {
  transform: scale(1.15);
  color: #37b6ab;
}

/* ============================================================
   TESTIMONIALS / QUOTES ROTATOR
   ============================================================ */
.gsc-quotes-rotator {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}

.gsc-quotes-rotator::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 24px;
}

.gsc-quotes-rotator .content-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-top: 20px;
}

.gsc-quotes-rotator .content-inner {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.gsc-testimonial .testimonial-item .testimonial-quote::before {
  color: var(--teal);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  opacity: 0.3;
}

.gsc-testimonial .testimonial-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gsc-testimonial .testimonial-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ============================================================
   TEAM BLOCKS
   ============================================================ */
.team-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: #fff;
}

.team-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-block .team-image .socials-team a:hover,
.team-block .team-content .team-name a:hover {
  color: var(--blue);
}

.team-block .team-content .team-name {
  font-family: 'Playfair Display', serif;
}

.team-block .team-content .team-position {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
}

/* ============================================================
   PARTNERS / CLIENT LOGOS
   ============================================================ */
.partner-block {
  border-radius: var(--radius-sm);
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-block:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(49, 116, 180, 0.2);
  transform: translateY(-2px);
}

.partner-block img {
  max-height: 60px;
  width: auto;
  filter: grayscale(60%);
  opacity: 0.75;
  transition: var(--transition);
}

.partner-block:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================================
   FORM ELEMENTS — Rounded, warm focus states
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  color: var(--text-body);
  background-color: #fff;
  transition: var(--transition);
  padding: 10px 14px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(49, 116, 180, 0.10);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.webform-submission-form .form-submit,
.webform-submission-form .button--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: transparent;
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 32px;
  box-shadow: 0 4px 16px rgba(49, 116, 180, 0.28);
  transition: var(--transition);
}

.webform-submission-form .form-submit:hover,
.webform-submission-form .button--primary:hover {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.gva-block-breadcrumb .breadcrumb-links nav.breadcrumb ol li a:hover {
  color: var(--teal);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

#back-to-top:hover {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   HIGHLIGHT / CALLOUT BARS
   ============================================================ */
.highlighted-bar,
.gsc-highlight-bar {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius);
}

/* ============================================================
   TEAL ACCENT HELPERS
   ============================================================ */
.bg-teal,
.section-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.text-teal {
  color: var(--teal);
}

/* ============================================================
   FOOTER — Warm dark, refined typography
   ============================================================ */
#footer {
  background: var(--dark);
}

#footer h1, #footer h2, #footer h3,
#footer h4, #footer h5, #footer h6 {
  font-family: 'Playfair Display', serif;
  color: #fff;
}

#footer p, #footer li, #footer span {
  font-family: 'Nunito', sans-serif;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

#footer a {
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  position: relative;
}

#footer a:hover,
#footer a:focus {
  color: var(--teal);
}

#footer .gsc-heading .sub-title {
  color: var(--teal);
}

#footer .gsc-heading .title {
  color: #fff;
}

#copyright {
  background: var(--darker);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-notfound .action a {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: transparent;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(49, 116, 180, 0.30);
  transition: var(--transition);
}

.page-notfound .action a:hover {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SLIDER TEXT LAYER READABILITY
   ============================================================ */
.tp-caption {
  font-family: 'Playfair Display', serif;
}

.tp-caption.tp-resizeme {
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* ============================================================
   PAGE BUILDER ROWS — Alternating warm white sections
   ============================================================ */
/* Rows with no explicit background get warm white */
.gbb-row-wrapper {
  background-color: #fff;
}

/* Section heading spacing in builder */
.gavias-builder--content .gbb-row-wrapper + .gbb-row-wrapper {
  border-top: 1px solid rgba(49, 116, 180, 0.06);
}

/* ============================================================
   CTA SECTION — Diagonal entry accent
   ============================================================ */
.gva_call_to_action h2,
.gva_call_to_action .title {
  font-family: 'Playfair Display', serif;
}

/* ============================================================
   OUR MISSION SECTION — Quote decoration
   ============================================================ */
.mission-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--blue);
  opacity: 0.15;
}

/* ============================================================
   CALL TO ACTION ELEMENT
   ============================================================ */
.gva_call_to_action {
  position: relative;
}

/* ============================================================
   SMOOTH REVEAL ANIMATION
   (Applied to page builder rows via Drupal WOW.js data-wow-* attrs
    or CSS-triggered on sections)
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ============================================================
   RESPONSIVE REFINEMENTS
   ============================================================ */
@media (max-width: 991px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.5rem; }

  .gsc-icon-box {
    padding: 20px 16px;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  .btn-theme,
  .btn-primary {
    padding: 9px 22px;
    font-size: 0.95rem;
  }

  .gsc-quotes-rotator {
    padding: 28px 20px;
  }

  .gsc-quotes-rotator::before {
    font-size: 5rem;
  }
}

/* ============================================================
   LOGO SIZING IN HEADER
   ============================================================ */
.site-branding-logo img.logo-site {
  max-height: 72px;
  width: auto;
}

/* ============================================================
   GLOBAL ROW LEFT/RIGHT PADDING
   ============================================================ */
.gbb-row-wrapper .bb-container {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.gbb-row-wrapper .column-inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .gbb-row-wrapper .bb-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .gbb-row-wrapper .column-inner {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ============================================================
   HEADER — OPAQUE WHITE BACKGROUND
   (theme sets background:none, which makes logo invisible over
   the dark topbar when the sticky header fires)
   ============================================================ */
header .header-main {
  background: #fff !important;
}

/* ============================================================
   TOPBAR SLOGAN STRIP
   ============================================================ */
.topbar {
  background: #264452 !important;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 7px 0 !important;
}
.topbar .topbar-content-inner {
  text-align: center;
}
.header-slogan {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85) !important;
  white-space: nowrap;
  font-style: italic;
}
