/* ==========================================================================
   FLEX PROPERTY SOLUTIONS LIMITED — HIGH-END ENTERPRISE DESIGN SYSTEM
   ========================================================================== */

:root {
  --navy-950: #030a14;
  --navy-900: #071529;
  --navy-850: #0b203e;
  --navy-800: #102a52;
  --navy-700: #173b70;
  
  --teal-400: #64ffda;
  --teal-500: #00f5d4;
  --cyan-400: #38bdf8;
  --cyan-500: #0ea5e9;
  --blue-600: #0284c7;
  --blue-700: #0369a1;
  
  --gold-400: #fbbf24;
  
  --text-white: #ffffff;
  --text-platinum: #f1f5f9;
  --text-silver: #e2e8f0;
  --text-dark: #071529;
  --text-body: #334155;
  --text-muted: #64748b;
  
  --bg-surface: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(7,21,41,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.25);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-surface);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-white);
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.section-dark .section-title {
  color: var(--text-white);
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: var(--text-silver);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--blue-600);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.section-dark .section-tag {
  background: rgba(100, 255, 218, 0.15);
  color: var(--teal-400);
  border-color: rgba(100, 255, 218, 0.35);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 860px;
}

.section {
  padding: clamp(3rem, 5vw, 6rem) 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--text-silver);
}

/* Pulse Dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--teal-400);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.7);
  animation: pulse 2s infinite;
  display: inline-block;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(100, 255, 218, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(100, 255, 218, 0); }
}

/* Site Navbar */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 21, 41, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--navy-900) 100%);
  border: 1px solid rgba(100, 255, 218, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  font-size: 1.25rem;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
  flex-shrink: 0;
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  color: var(--text-silver);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--teal-400);
  background: rgba(255, 255, 255, 0.08);
}

/* Mega Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 340px;
  background: var(--navy-900);
  border: 1px solid rgba(100, 255, 218, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 110;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.15);
  color: var(--teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dropdown-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

.dropdown-content p {
  font-size: 0.75rem;
  color: var(--text-silver);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-phone-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-phone-header:hover {
  border-color: var(--teal-400);
  color: var(--teal-400);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-teal {
  background: var(--teal-400);
  color: #030a14;
  box-shadow: 0 4px 14px rgba(100, 255, 218, 0.4);
}

.btn-teal:hover {
  background: #00e5c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 255, 218, 0.6);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--blue-600) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
  color: var(--text-white);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-emergency {
  background: #ef4444;
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

.btn-emergency:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.02rem;
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--text-white);
  padding: clamp(3.5rem, 6vw, 6.5rem) 0;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-media-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video, .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg, 
    rgba(3, 10, 20, 0.95) 0%, 
    rgba(7, 21, 41, 0.88) 55%, 
    rgba(7, 21, 41, 0.5) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 21, 41, 0.85);
  border: 1px solid rgba(100, 255, 218, 0.4);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-platinum);
}

.hero-badge-trust .stars {
  color: var(--gold-400);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-silver);
  margin: 1.25rem 0 2rem;
  max-width: 600px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-platinum);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-item i {
  color: var(--teal-400);
}

/* Hero Lead Card (Instant Quote Form) */
.hero-card-form {
  background: rgba(7, 21, 41, 0.94);
  border: 1px solid rgba(100, 255, 218, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.hero-form-header h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.hero-form-header p {
  color: var(--text-silver);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

/* Horizontal Marquee */
.marquee-wrapper {
  background: #ffffff;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  white-space: nowrap;
  animation: scrollMarquee 28s linear infinite;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-body);
  flex-shrink: 0;
}

/* 3-Column Service Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card-service {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-500);
}

.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  width: 100%;
}

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

.card-service:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-badge-floating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(7, 21, 41, 0.9);
  color: var(--teal-400);
  border: 1px solid rgba(100, 255, 218, 0.4);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-icon-pill {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(14, 165, 233, 0.12);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card-desc {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--blue-600);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.card-service:hover .card-footer-link {
  gap: 10px;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--cyan-500);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--blue-600);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--blue-600);
  color: #ffffff;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Modals & Toasts */
.modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: rgba(3, 10, 20, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}

.modal-backdrop.active {
  display: flex !important;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.social-proof-toast {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  background: #ffffff !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-xl) !important;
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  z-index: 9000 !important;
  max-width: 320px !important;
  transform: translateY(180%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: all 0.4s ease !important;
}

.social-proof-toast.visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 21, 41, 0.96);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  z-index: 990;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-sticky-inner {
  display: flex;
  gap: 10px;
}

.mobile-sticky-inner .btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.88rem;
}

/* Mobile Toggle & Drawer */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 20, 0.85);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: none;
}

.mobile-drawer.active {
  display: block;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: var(--navy-950);
  border-left: 1px solid rgba(100, 255, 218, 0.25);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--text-silver);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.drawer-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal-400);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (DESKTOP, TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1100px) {
  .nav-menu {
    gap: 0.75rem;
  }
  .nav-link {
    padding: 6px 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 960px) {
  .nav-menu, .nav-actions {
    display: none !important;
  }
  
  .mobile-toggle {
    display: block !important;
  }
  
  .mobile-sticky-bar {
    display: block !important;
  }
  
  body {
    padding-bottom: 60px;
  }
  
  .social-proof-toast {
    display: none !important;
  }
  
  /* Hero Grid Stacking on Mobile */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: left;
  }
  
  .hero-content {
    width: 100%;
  }
  
  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.05rem !important;
    margin: 1rem 0 1.5rem !important;
  }
  
  .hero-ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-card-form {
    padding: 1.75rem 1.25rem !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-trust-indicators {
    gap: 1rem;
    font-size: 0.82rem;
  }
  
  /* Grid splits on pages */
  div[style*="grid-template-columns:1.1fr 1fr"],
  div[style*="grid-template-columns:1.1fr 0.9fr"],
  div[style*="grid-template-columns:1fr 1.2fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 480px) {
  .brand-text h1 {
    font-size: 1.1rem;
  }
  
  .brand-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .hero-title {
    font-size: 1.85rem !important;
  }
  
  .hero-card-form {
    padding: 1.5rem 1rem !important;
  }
  
  .postcode-checker-bar {
    flex-direction: column !important;
    gap: 8px !important;
    padding: 10px !important;
  }
  
  .postcode-checker-bar input {
    width: 100% !important;
  }
  
  .postcode-checker-bar button {
    width: 100% !important;
  }
}
