/* ==========================================================================
   FLEET SAFETY XPERTS - Premium Light Stylesheet
   ========================================================================== */

/* Google Fonts moved to head of HTML for faster load speed */

/* CSS Variables for Premium Light Color System */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Light Theme Colors */
  --theme-bg: #f8fafc;          /* Light Slate Grey */
  --theme-surface: #ffffff;     /* Pure White Card Background */
  --theme-surface-light: #f1f5f9;/* Light grey container background */
  --primary-blue: #0033cc;      /* Royal Blue from Logo */
  --accent-cyan: #0284c7;       /* Ocean Sky Blue */
  --accent-emerald: #10b981;    /* Success Green */
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0033cc 0%, #0284c7 100%);
  --grad-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  
  /* Text Colors */
  --text-primary: #0f172a;      /* Dark Slate 900 */
  --text-secondary: #475569;    /* Slate 600 */
  --text-muted: #64748b;        /* Slate 500 */
  --text-light: #f8fafc;        /* Off-white */
  
  /* Shadows and Borders */
  --border-color: rgba(0, 0, 0, 0.06);
  --border-glow: rgba(0, 51, 204, 0.1);
  --shadow-sm: 0 4px 12px rgba(0, 51, 204, 0.02);
  --shadow-md: 0 12px 32px rgba(9, 26, 58, 0.04);
  --shadow-lg: 0 20px 40px rgba(9, 26, 58, 0.08);
  --shadow-glow: 0 10px 30px rgba(0, 51, 204, 0.08);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--theme-bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Page Section */
section {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0; /* Fluid padding scaling */
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(32px, 5vw, 64px) auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0, 51, 204, 0.05);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(0, 51, 204, 0.12);
  font-family: var(--font-heading);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Fluid responsive font sizing */
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
}

/* Glassmorphism Cards (Light) */
.glass-card {
  background: var(--grad-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(0, 51, 204, 0.2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(9, 26, 58, 0.02);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo-link img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
  font-size: 0.95rem;
  position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--grad-primary);
  color: var(--text-light) !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 51, 204, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 51, 204, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: currentColor;
  margin: 6px 0;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
  padding: 160px 0 100px 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 51, 204, 0.03) 0%, rgba(248, 250, 252, 0) 60%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-feature-icon {
  color: var(--accent-emerald);
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes sheenSweep {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.btn-primary::before,
.btn-secondary::before {
  animation: sheenSweep 4.5s infinite ease-in-out;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--text-light) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid #0022aa;
  box-shadow: 
    0 0 0 1px rgba(0, 51, 204, 0.4),
    0 4px 0 #0022aa,
    0 8px 16px rgba(0, 51, 204, 0.3),
    0 12px 30px rgba(0, 51, 204, 0.15);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  border-bottom-width: 7px;
  box-shadow: 
    0 0 0 1px rgba(0, 51, 204, 0.5),
    0 6px 0 #0022aa,
    0 12px 24px rgba(0, 51, 204, 0.4),
    0 20px 40px rgba(0, 51, 204, 0.2),
    0 0 15px rgba(2, 132, 199, 0.5);
}

.btn-primary:active {
  transform: translateY(4px);
  border-bottom-width: 1px;
  box-shadow: 
    0 0 0 1px rgba(0, 51, 204, 0.4),
    0 1px 0 #0022aa,
    0 2px 8px rgba(0, 51, 204, 0.2);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 5px solid #cbd5e1;
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 4px 0 #cbd5e1,
    0 6px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-bottom-width: 7px;
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 6px 0 #cbd5e1,
    0 10px 20px rgba(0, 0, 0, 0.08),
    0 0 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:active {
  transform: translateY(4px);
  border-bottom-width: 1px;
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 1px 0 #cbd5e1,
    0 2px 6px rgba(0, 0, 0, 0.04);
}

.hero-image-container {
  position: relative;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.hero-main-img:hover {
  transform: scale(1.02);
}

.hero-card-decor {
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 24px;
}

/* About Us Section */
.about-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-md);
  top: 20px;
  left: -20px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.1;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  border: 1px solid var(--border-color);
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.highlight-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  background: #ffffff;
  border-color: rgba(0, 51, 204, 0.2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.highlight-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Services Section */
.services-section {
  background: var(--theme-bg);
}

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

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 51, 204, 0.2);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(0, 51, 204, 0.05);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 28px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Testimonials Section */
.testimonials-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  background: var(--theme-bg);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  border: 1px solid var(--border-color);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.reviews-summary-stars {
  color: #f59e0b; /* Golden Yellow */
  display: flex;
  gap: 4px;
  font-size: 1.1rem;
}

.reviews-summary-text {
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--theme-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #f59e0b;
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-content {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background-color: var(--theme-surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.testimonial-author-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact Us Section */
.contact-section {
  background: var(--theme-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  margin-top: 40px;
}

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

.contact-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(0, 51, 204, 0.05);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-detail-text p, 
.contact-detail-text a {
  color: var(--text-secondary);
  font-size: 1rem;
}

.contact-detail-text a:hover {
  color: var(--primary-blue);
}

.contact-form-container {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--theme-bg);
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 51, 204, 0.08);
}

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

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 48px;
}

/* Footer */
.site-footer {
  background-color: #0b0f19;
  color: #94a3b8;
  padding: 40px 0 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer h4,
.site-footer h5,
.site-footer a {
  color: #e2e8f0;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: #94a3b8;
}

.footer-links-col h4,
.footer-contact-col h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.footer-link a {
  color: #94a3b8;
}

.footer-link a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: #94a3b8;
}

.footer-contact-icon {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #94a3b8;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
  z-index: 999;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(12deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Inner Page Specific Layouts */
.page-hero {
  padding: 100px 0;
  background: radial-gradient(circle at top, rgba(0, 51, 204, 0.02) 0%, rgba(248, 250, 252, 0) 80%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.page-content-wrapper {
  padding: 100px 0;
  background-color: var(--theme-bg);
}

.narrow-content {
  max-width: 750px;
  margin: 0 auto;
}

/* FAQ Page Accordions */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 28px;
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 1.15rem;
}

.faq-answer {
  padding: 0 28px 28px 28px;
  color: var(--text-secondary);
  display: none;
  line-height: 1.7;
}

.faq-item.active {
  border-color: rgba(0, 51, 204, 0.2);
  box-shadow: var(--shadow-glow);
}

.faq-item.active .faq-answer {
  display: block;
  border-top: 1px solid var(--border-color);
  margin-top: 10px;
  padding-top: 20px;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-blue);
}

/* Stripe Payment Styles */
.payment-amount-container {
  margin-bottom: 28px;
}

.amount-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 20px;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.3rem;
}

.amount-input-wrapper .form-control {
  padding-left: 40px;
  font-size: 1.3rem;
  font-weight: 700;
}

.stripe-elements-mock {
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--theme-bg);
  margin-top: 10px;
}

/* Policy Content Formatting */
.policy-content {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.policy-content h2, 
.policy-content h3 {
  color: var(--text-primary);
  margin: 40px 0 20px 0;
  font-family: var(--font-heading);
}

.policy-content p, 
.policy-content ol, 
.policy-content ul {
  margin-bottom: 24px;
}

.policy-content ol, 
.policy-content ul {
  padding-left: 28px;
}

.policy-content li {
  margin-bottom: 12px;
}

/* Customer Care Hours Card */
.care-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
}

.business-hours-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 700;
}

.hours-time {
  color: var(--text-secondary);
}

/* Custom Animation Classes */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

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

@keyframes pulseBorder {
  0% { box-shadow: 0 0 0 0 rgba(0, 51, 204, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(0, 51, 204, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 51, 204, 0); }
}

.float-anim {
  animation: float 6s ease-in-out infinite;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

.pulse-cta {
  animation: pulseBorder 2s infinite;
}

/* Screen Reader Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive Breakpoints & Fixes */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .about-grid, 
  .contact-grid,
  .hero-grid,
  .care-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .footer-contact-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact-col {
    grid-column: span 1;
  }
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: #ffffff;
    flex-direction: column;
    padding: 60px 24px;
    gap: 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    align-items: stretch;
    text-align: center;
    overflow-y: auto;
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.open {
    left: 0;
  }
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .whatsapp-float {
    bottom: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .header-container {
    height: 80px;
  }
  .nav-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }
  .reviews-summary {
    flex-direction: column;
    gap: 8px;
    border-radius: var(--radius-md);
  }
}
