/* ============================
   Root Variables & Resets
============================ */
:root {
  --orange: #f97316;
  --dark-orange: #ea580c;
  --light-bg: #f9fafb;
  --text-dark: #1f2937;
  --text-light: #ffffff;
  --accent: #facc15;
}

/* Add this to the top of your CSS file, right after the :root section */
html {
  scroll-behavior: smooth;
}

/* Optional: Add padding to scroll targets to account for fixed header */
section {
  scroll-margin-top: 100px; /* Adjust this value based on your header height */
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: var(--light-bg);
  color: var(--text-dark);
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
}

/* ============================
   Sticky Topbar
============================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  font-size: 1rem;
  color: var(--dark-orange);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-bottom: 3px solid var(--orange);
}

.topbar-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar .logo {
  height: 45px;
}

.topbar-text {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-text svg {
  width: 1em !important;
  height: 1em !important;
  vertical-align: middle;
  margin-right: 0.4rem;
  stroke-width: 2;
  display: inline-block;
}

.topbar-text span:hover svg,
.phone-link:hover svg {
  stroke-width: 3;
  transition: stroke-width 0.2s ease;
}

.phone-link {
  text-decoration: none;
  color: inherit;
}

.topbar-text span:hover,
.phone-link:hover span {
  font-weight: 700;
  transition: font-weight 0.2s ease;
}

/* ============================
   Header / Hero
============================ */
header {
  background: linear-gradient(135deg, var(--orange), var(--dark-orange));
  color: var(--text-light);
  text-align: center;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.hero h1 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 350px;
  margin: 0 auto;
}

.feature-card i,
.feature-card svg {
  width: 45px;
  height: 45px;
  margin-bottom: 8px;
  stroke: white;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.4;
}

/* Divider */
.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.hero-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================
   Buttons
============================ */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: white;
  color: var(--dark-orange);
  border: none;
}

.btn.outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn.primary:hover {
  color: black;
}

.btn.outline:hover {
  background: white;
  color: var(--dark-orange);
}

/* ============================
   Services Section
============================ */
.services {
  padding: 4rem 1rem;
  text-align: center;
}

.services h2 {
  margin-bottom: 1rem;
}

.services > p {
  margin-bottom: 3rem;
  max-width: 800px; /* Keeps the intro text from getting too wide */
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center; /* Centers the icon */
  padding-top: 3rem; /* Extra space at top for icon */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3),
              0 4px 50px rgba(249, 115, 22, 0.2);
}

/* Updated icon styles */
.service-card [data-lucide] {
  width: 64px !important;
  height: 64px !important;
  stroke: var(--orange);
  stroke-width: 1.5px;
  margin-bottom: 2rem;
  display: inline-block; /* Helps with centering */
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  text-align: left; /* Reset text alignment */
}

.service-card > p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #64748b;
  line-height: 1.5;
  text-align: left; /* Reset text alignment */
}

.service-card ul {
  list-style: none;
  padding: 0;
  text-align: left; /* Reset text alignment */
}

.service-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #475569;
  font-size: 0.95rem;
}

.service-card ul li::before {
  content: "•";
  color: var(--orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 1.5rem;
    padding-top: 2.5rem; /* Adjusted for mobile */
  }

  .service-card [data-lucide] {
    width: 48px !important; /* Slightly smaller on mobile */
    height: 48px !important;
    margin-bottom: 1.5rem;
  }
}

/* ============================
   Why Choose Section
============================ */
.why-choose {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.why-choose .subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #64748b;
}

.why-choose .columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

/* Left Column Styles */
.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item i {
  flex-shrink: 0;
}

.feature-item [data-lucide] {
  width: 32px;
  height: 32px;
  stroke: var(--orange);
  stroke-width: 1.5px;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Right Column Styles */
.brands-panel {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.brands-panel h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.brands-grid span {
  color: #475569;
  font-size: 0.95rem;
}

.brands-note {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
}

@media (max-width: 968px) {
  .why-choose .columns {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 3rem 1rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================
   Contact Section
============================ */
.contact {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact .subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #64748b;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Form Styles */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form .btn:hover {
  background: var(--dark-orange);
}

/* Contact Info Styles */
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item [data-lucide] {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.info-item p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-item .note {
  font-size: 0.85rem;
  color: var(--orange);
}

.emergency-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fee2e2;
  border-radius: 8px;
  text-align: center;
}

.emergency-box h4 {
  color: #991b1b;
  margin-bottom: 0.5rem;
}

.emergency-box p {
  color: #991b1b;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.btn.emergency {
  background: #dc2626;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn.emergency:hover {
  background: #b91c1c;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 3rem 1rem;
  }
}

/* ============================
   Footer Section
============================ */
footer {
  background: #0f172a;
  color: white;
  padding: 4rem 1rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

/* Company Info Column */
.company-info {
  max-width: 400px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.company-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item [data-lucide] {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
}

.contact-item span {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Quick Links & Services Columns */
.footer-col h4 {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li,
.footer-col ul li a {
  color: #94a3b8;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid #1e293b;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-bottom .branding {
  margin-top: 0.5rem;
  color: #475569;
}

.vevilo-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vevilo-logo {
  height: 24px;
  width: auto;
  transition: filter 0.3s ease;
}

.vevilo-brand span {
  color: #64748b;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: normal;
  transition: all 0.3s ease;
}

/* New hover states */
.vevilo-brand:hover span {
  color: var(--orange);
  font-weight: 600;
}

.vevilo-brand:hover .vevilo-logo {
  filter: brightness(0) saturate(100%) invert(65%) sepia(19%) saturate(2563%) hue-rotate(346deg) brightness(101%) contrast(96%);
}

/* Responsive Design */
@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .company-info {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 640px) {
  footer {
    padding: 3rem 1rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    text-align: center;
  }

  .contact-details {
    align-items: center;
  }
}



/* Responsive Design */
@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .company-info {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 640px) {
  footer {
    padding: 3rem 1rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    text-align: center;
  }

  .contact-details {
    align-items: center;
  }
}


/* ============================
   Responsive Tweaks
============================ */
@media (max-width: 768px) {
  .contact form {
    grid-template-columns: 1fr;
  }

  .why-choose .columns {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .topbar-text {
    justify-content: flex-start;
  }

  .hide-on-mobile {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}
