/*
Theme Name: All About Repair
Theme URI: https://allaboutrepair.com
Author: All About Repair
Author URI: https://allaboutrepair.com
Description: Professional HVAC, AC & Appliance Repair theme for Clackamas, Oregon
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: allaboutrepair
Tags: hvac, appliance-repair, services, business, oregon
*/

/* ===========================
   CSS VARIABLES & RESET
=========================== */
:root {
  --blue:        #1565c0;
  --blue-dark:   #0d47a1;
  --blue-mid:    #1976d2;
  --blue-light:  #e3f2fd;
  --blue-pale:   #f0f7ff;
  --accent:      #ff6f00;
  --accent-light:#fff3e0;
  --dark:        #0d1b2a;
  --dark-2:      #1a2c3d;
  --text:        #2d3e50;
  --text-light:  #5a7184;
  --border:      #dce8f5;
  --white:       #ffffff;
  --bg-light:    #f5f9ff;
  --font-head:   'Nunito', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 2px 16px rgba(21,101,192,0.08);
  --shadow-md:   0 4px 28px rgba(21,101,192,0.14);
  --transition:  0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 50px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  cursor: pointer; border: none; transition: all var(--transition); text-decoration: none;
}
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.35); }

.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #e65100; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,111,0,0.35); }

.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-white { background: var(--white); color: var(--blue); font-weight: 700; }
.btn-white:hover { background: var(--blue-light); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); }

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: var(--blue-dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: white; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }

/* ===========================
   HEADER / NAV
=========================== */
#site-header {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px; gap: 8px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 18px; color: var(--dark); white-space: nowrap; flex-shrink: 0;
}
.site-logo .logo-icon {
  width: 40px; height: 40px; background: var(--blue);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 20px;
}
.header-inner .custom-logo-link img{width: 70px; height auto}

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 8px 13px; border-radius: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--text);
  transition: all var(--transition); white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); background: var(--blue-light); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a::after { content: ' ▾'; font-size: 10px; opacity: 0.6; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  min-width: 220px; padding: 8px; z-index: 100;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 8px 14px; border-radius: 6px;
  font-size: 13px; color: var(--text); font-weight: 500;
}
.dropdown a:hover { background: var(--blue-light); color: var(--blue); }
.dropdown-group { padding: 6px 0; }
.dropdown-group-title {
  font-size: 11px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 14px 2px;
}
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 8px; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }

/* ===========================
   HERO
=========================== */
.hero-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1565c0 60%, #1976d2 100%);
  padding: 88px 0 30px; overflow: hidden; position: relative;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; color: white;
  line-height: 1.1; margin-bottom: 18px;
}
.hero-title span { color: #ffcc02; }
.hero-desc { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-creds {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.hero-cred {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 8px 14px;
  color: rgba(255,255,255,0.9); font-size: 12.5px; font-weight: 600;
}
.hero-cred span:first-child { font-size: 18px; }

.hero-image-wrap { position: relative; padding-top: 20px; }
.hero-img { width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; object-fit: cover; max-height: 480px; }
.hero-float-card {
  position: absolute; background: var(--white);
  border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero-float-card.card-1 { top: 40px; left: -28px; }
.hero-float-card.card-2 { bottom: 60px; right: -16px; }
.hero-float-card .card-num { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--blue); }
.hero-float-card .card-label { font-size: 11px; color: var(--text-light); }

/* ===========================
   TRUST BAR
=========================== */
.trust-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--text); }
.trust-item .trust-icon { width: 34px; height: 34px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 16px; }

/* ===========================
   SERVICES
=========================== */
.services-section { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow); transition: all 0.3s ease;
  border: 1px solid transparent; cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.service-icon {
  width: 52px; height: 52px; background: var(--blue-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); }
.service-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.service-card p { color: var(--text-light); font-size: 13.5px; line-height: 1.6; margin-bottom: 16px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 13px; font-weight: 700; transition: gap var(--transition); }
.service-card:hover .service-link { gap: 10px; }

/* Service category pills */
.service-cats { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.service-cat-btn {
  padding: 8px 20px; border-radius: 100px; border: 2px solid var(--border);
  font-size: 13px; font-weight: 700; cursor: pointer; background: var(--white);
  color: var(--text-light); transition: all var(--transition); font-family: var(--font-head);
}
.service-cat-btn:hover, .service-cat-btn.active { background: var(--blue); color: white; border-color: var(--blue); }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--bg-light); border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; transition: all 0.3s ease; border: 1px solid var(--border);
}
.why-card:hover { background: var(--white); box-shadow: var(--shadow-md); border-color: var(--blue); }
.why-icon { width: 56px; height: 56px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 16px; transition: background var(--transition); }
.why-card:hover .why-icon { background: var(--blue); }
.why-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.why-card p { color: var(--text-light); font-size: 13px; line-height: 1.6; }

/* ===========================
   ABOUT
=========================== */
.about-section { background: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; height: 440px; }
.about-img-wrap { position: relative; }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--blue); color: white;
  border-radius: 12px; padding: 16px 20px; text-align: center;
  box-shadow: 0 8px 32px rgba(21,101,192,0.35);
}
.about-badge-float strong { display: block; font-size: 26px; font-weight: 900; font-family: var(--font-head); }
.about-badge-float span { font-size: 11px; opacity: 0.9; }
.about-content .section-title { text-align: left; }
.about-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
.about-creds { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.about-cred-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--blue-light); border-radius: 8px; padding: 10px 16px;
  font-size: 13px; font-weight: 600; color: var(--dark);
}
.about-cred-item span:first-child { font-size: 20px; }
.about-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.about-stat { text-align: center; }
.about-stat strong { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.about-stat span { font-size: 12px; color: var(--text-light); font-weight: 500; }

/* ===========================
   HOW IT WORKS
=========================== */
.how-steps { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.how-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: flex-start; position: relative; }
.how-step:not(:last-child)::after { content: ''; position: absolute; left: 27px; top: 56px; width: 2px; height: calc(100% - 16px); background: var(--border); }
.step-num { width: 54px; height: 54px; border-radius: 50%; background: var(--blue); color: white; font-family: var(--font-head); font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; position: relative; }
.step-content { padding: 12px 0 40px; }
.step-content h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.step-content p { color: var(--text-light); font-size: 14px; }

/* ===========================
   SERVICE AREAS
=========================== */
.areas-section { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); color: white; }
.areas-section .section-title { color: white; }
.areas-section .section-subtitle { color: rgba(255,255,255,0.75); }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.area-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  padding: 16px 18px; text-align: center;
  transition: all var(--transition); cursor: default;
}
.area-card:hover { background: rgba(255,255,255,0.2); }
.area-card strong { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 800; color: white; }
.area-card span { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { background: var(--bg-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.3s ease; }
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.stars { display: flex; gap: 3px; color: #fbbf24; font-size: 14px; margin-bottom: 12px; }
.testimonial-text { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: var(--blue); flex-shrink: 0; }
.author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.author-info span { font-size: 12px; color: var(--text-light); }

/* ===========================
   FAQ
=========================== */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: border-color var(--transition); }
.faq-item.active { border-color: var(--blue); }
.faq-question { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; text-align: left; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--dark); gap: 16px; transition: background var(--transition); }
.faq-question:hover { background: var(--bg-light); }
.faq-item.active .faq-question { color: var(--blue); background: var(--blue-light); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: all var(--transition); color: var(--text-light); }
.faq-item.active .faq-icon { background: var(--blue); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; padding: 0 22px; color: var(--text-light); font-size: 14px; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; padding: 18px 22px 18px; }

/* ===========================
   BLOG
=========================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--bg-light); }
.blog-card-body { padding: 20px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.blog-meta .tag { background: var(--blue-light); color: var(--blue); padding: 2px 10px; border-radius: 100px; font-weight: 700; }
.blog-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 8px; line-height: 1.4; transition: color var(--transition); }
.blog-card:hover h3 { color: var(--blue); }
.blog-card p { color: var(--text-light); font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 13px; font-weight: 700; }

/* ===========================
   CONTACT
=========================== */
.contact-section { background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h2 { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; color: var(--blue); }
.contact-item-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.contact-item-text span { font-size: 13px; color: var(--text-light); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; font-family: var(--font-body); }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); }
textarea.form-control { resize: vertical; min-height: 110px; }

/* ===========================
   PAYMENT METHODS
=========================== */
.payment-section { background: var(--white); border-top: 1px solid var(--border); padding: 32px 0; }
.payment-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.payment-label { font-size: 13px; font-weight: 700; color: var(--text-light); margin-right: 8px; }
.payment-badge { background: var(--bg-light); border: 1px solid var(--border); border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--text); }

/* ===========================
   EMERGENCY BAR
=========================== */
.emergency-bar { background: var(--blue-dark); padding: 14px 0; }
.emergency-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.emergency-text { display: flex; align-items: center; gap: 12px; color: white; }
.emergency-text .em-icon { font-size: 24px; }
.emergency-text strong { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 800; }
.emergency-text span { font-size: 13px; opacity: 0.85; }

/* ===========================
   FOOTER
=========================== */
#site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font-head); font-size: 18px; font-weight: 900; color: white; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 22px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; transition: background var(--transition); }
.social-btn:hover { background: var(--blue); }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 800; color: white; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: #64b5f6; }
.newsletter-input-wrap { display: flex; gap: 8px; margin-top: 10px; }
.newsletter-input { flex: 1; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: white; font-size: 13px; outline: none; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--blue-mid); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: #64b5f6; }

/* ===========================
   FLOATING PHONE
=========================== */
.phone-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 54px; height: 54px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 20px rgba(21,101,192,0.45); cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); text-decoration: none; }
.phone-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(21,101,192,0.55); }

/* Licence badge */
.licence-bar { background: var(--blue-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 20px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 32px; }
.licence-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--dark); }
.licence-item span:first-child { font-size: 20px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { display: none; }
  .about-img-wrap { max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
   .trust-bar-inner { display: flex; align-items: center; justify-content: left; gap: 40px; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .top-bar { display: none; }
  .section-pad { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { display: flex; align-items: center; justify-content: left; gap: 40px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .header-cta .btn-outline { display: none; }
  .hero-creds { gap: 10px; }
  .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { display: flex; align-items: center; justify-content: left; gap: 40px; flex-wrap: wrap; }
}

/* Mobile Menu */
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px; box-shadow: var(--shadow-md); z-index: 999; flex-direction: column; gap: 4px; max-height: calc(100vh - 72px); overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 11px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text); }
.mobile-menu a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-menu .mob-section { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; padding: 12px 16px 4px; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }
