@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ==========================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================== */
:root {
  /* Colors */
  --primary-dark: #0F172A;     /* Deep Space Navy */
  --primary-slate: #1E293B;    /* Slate Dark */
  --primary-accent: #0077B6;   /* Electric Deep Blue */
  --primary-light: #00B4D8;    /* Electric Cyan */
  --secondary-accent: #00F2FE; /* Neon Cyan */
  --accent-green: #10B981;     /* Success/Rates Green */
  --bg-light: #F8FAFC;         /* Clean White Background */
  --bg-gray: #F1F5F9;          /* Neutral Light Gray */
  --text-dark: #0F172A;        /* Dark Heading Text */
  --text-muted: #64748B;       /* Secondary Muted Text */
  --text-light: #F8FAFC;       /* Off-White Text */
  
  /* Glassmorphism Styles */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.08);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6.5rem 0;
}

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

/* ==========================================
   BUTTONS & UI ELEMENTS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 180, 216, 0.5);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-accent) 100%);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
}

.btn-secondary:hover {
  background-color: var(--primary-accent);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ==========================================
   HEADER & NAVBAR
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  transition: var(--transition-normal);
}

header.scrolled .navbar {
  padding: 0.85rem 0;
}

.nav-logo {
  height: 48px;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-slate);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-accent);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-accent);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #EDF2F7 0%, var(--bg-light) 100%);
  padding-top: 9rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-rating {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-rating .stars {
  color: #FBBF24; /* Amber star color */
  font-size: 1.25rem;
}

.hero-rating span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-slate);
}

.hero-image {
  position: relative;
}

.hero-image svg,
.hero-image img {
  width: 100%;
  border-radius: 20px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  transition: var(--transition-normal);
}

.hero-image:hover svg,
.hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

.badge-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 2s;
}

.badge-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(0, 180, 216, 0.1);
  color: var(--primary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================
   BRANDS TRUST BANNER
   ========================================== */
.brands-banner {
  background-color: var(--bg-gray);
  padding: 3rem 0;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.brands-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.brands-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 700;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.brand-logo {
  height: 38px;
  width: auto;
  opacity: 0.85;
  transition: var(--transition-normal);
  cursor: pointer;
}

.brand-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.section-header {
  margin-bottom: 4.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(0, 180, 216, 0.1);
  color: var(--primary-accent);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 180, 216, 0.3);
}

.service-img-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-gray);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.service-img-container svg,
.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-normal);
}

.service-card:hover .service-img-container svg,
.service-card:hover .service-img-container img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--primary-slate);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-light);
  font-weight: 800;
  font-size: 1rem;
}

.service-card .btn {
  width: 100%;
}

/* ==========================================
   AC SERVICING RATES SECTION
   ========================================== */
.rates {
  background-color: var(--bg-gray);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.rate-card {
  background: var(--bg-light);
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.rate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(0, 180, 216, 0.2);
}

.rate-card.featured {
  border: 2px solid var(--primary-accent);
  box-shadow: 0 15px 35px rgba(0, 119, 182, 0.1);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background-color: var(--primary-accent);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 2.5rem;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.rate-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rate-card p.desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.price-value {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-size: 1rem;
  margin-left: 0.5rem;
}

.rate-benefits {
  margin-bottom: 2.5rem;
  border-top: 1px solid #E2E8F0;
  padding-top: 2rem;
}

.rate-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--primary-slate);
}

.rate-benefits li svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.rate-card .btn {
  width: 100%;
}

/* Rate Interactive Calculator Widget */
.calculator-widget {
  margin-top: 4.5rem;
  background: var(--primary-dark);
  border-radius: 24px;
  padding: 3rem;
  color: var(--text-light);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.calc-info h3 {
  color: var(--text-light);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.calc-info p {
  color: #94A3B8;
  font-size: 0.95rem;
}

.calc-control {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-input-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
  font-weight: 700;
}

.calc-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

input[type="range"].calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: #334155;
  outline: none;
}

input[type="range"].calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
  transition: var(--transition-fast);
}

input[type="range"].calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-value-display {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-accent);
  min-width: 45px;
  text-align: right;
}

.calc-result {
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-result-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #94A3B8;
}

.calc-result-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-light);
}

.calc-result-price span {
  font-size: 1.5rem;
  color: var(--secondary-accent);
}

/* ==========================================
   CONTACT US SECTION
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.info-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(0, 180, 216, 0.1);
  color: var(--primary-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 22px;
  height: 22px;
}

.info-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.info-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form-container {
  background: var(--bg-light);
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.contact-form-container h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-container p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-slate);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  background-color: var(--bg-gray);
  border: 1.5px solid transparent;
  color: var(--primary-dark);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  background-color: #FFFFFF;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1rem;
}

.form-response-msg {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.form-response-msg.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid #1E293B;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background-color: #1E293B;
  color: #94A3B8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary-accent);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
}

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

.footer-contact h4 {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #94A3B8;
}

.footer-contact li svg {
  width: 18px;
  height: 18px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #64748B;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #64748B;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: #94A3B8;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */

/* Tablet (1024px and down) */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  
  .hero-content p {
    margin: 0 auto 2.5rem auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-rating {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .floating-badge {
    padding: 0.6rem 1.2rem;
  }
  
  .calculator-widget {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 3;
  }
}

/* Mobile (768px and down) */
@media (max-width: 768px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  /* Responsive Call Now Button */
  .nav-cta-btn {
    padding: 0.75rem !important;
    border-radius: 50% !important;
    width: 42px;
    height: 42px;
    justify-content: center;
  }
  
  .nav-cta-btn .cta-text {
    display: none;
  }
  
  .nav-cta-btn svg {
    margin-right: 0 !important;
    width: 20px;
    height: 20px;
  }
  
  /* Mobile Navigation */
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    z-index: 1000;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.25);
  }
  
  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
  }
  
  .nav-link {
    color: var(--text-light);
    font-size: 1.25rem;
  }
  
  /* Hamburger Cross Animation */
  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--text-light);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--text-light);
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  /* Reset hero image tilt & hide floating badges to prevent side scrolling */
  .hero-image svg,
  .hero-image img {
    transform: none !important;
  }
  
  .floating-badge {
    display: none;
  }
  
  .brands-grid {
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* Small Screens (480px and down) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .rates-grid {
    grid-template-columns: 1fr;
  }
  
  .rate-card {
    padding: 2rem;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
}

/* ==========================================
   PAGINATION STYLING
   ========================================== */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.5rem;
  width: 100%;
}

.pagination-wrapper nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Center pagination wrapper containers */
.pagination-wrapper nav > div {
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Hide result counts text */
.pagination-wrapper nav > div > div:first-child {
  display: none !important;
}

/* Force container display */
.pagination-wrapper nav > div > div:last-child {
  display: flex !important;
  justify-content: center !important;
  width: auto !important;
}

/* Hide mobile-only simple pagination */
.pagination-wrapper .flex-fill.d-sm-none {
  display: none !important;
}

/* Show desktop numbered pagination on all devices */
.pagination-wrapper .d-none.flex-sm-fill {
  display: flex !important;
}

.pagination-wrapper .pagination {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.pagination-wrapper .page-item {
  margin: 0;
}

.pagination-wrapper .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-slate);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
  transition: var(--transition-fast);
  cursor: pointer;
  user-select: none;
}

.pagination-wrapper .page-item.active .page-link {
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.25);
}

.pagination-wrapper .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(241, 245, 249, 0.5);
  color: var(--text-muted);
  border-color: var(--glass-border);
  box-shadow: none;
  pointer-events: none;
}

.pagination-wrapper .page-link:hover:not(.disabled) {
  background: var(--primary-accent);
  color: var(--text-light);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}

.pagination-wrapper .page-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.3);
}

