/* Zumbull Website CSS - Based on Paul Davis Design */

/* CSS Variables */
:root {
  --primary: #1e293b;
  --primary-dark: #0f172a;
  --primary-light: #cbd5e1;
  --secondary: #dc2626;
  --accent: #f59e0b;
  --text: #111827;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --bg-dark: #1f2937;
  --border: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  box-shadow: var(--shadow);
  z-index: 1000;
  width: 100%;
}

.header-top {
  background: var(--primary);
  color: white;
  padding: 0.5rem 0;
  width: 100%;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info .phone {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-info .email {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.address {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.9rem;
}

.header-main {
  padding: 1rem 0;
  width: 100%;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.logo-icon-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--bg-light);
  padding: 6px;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  justify-content: space-evenly;
  flex: 1;
}

.nav-links > li {
  position: relative;
  flex: 1;
  text-align: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  display: block;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 0.5rem 0;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.dropdown-menu span {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: default;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-button {
  background: var(--secondary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: var(--gradient);
  color: white;
  margin-top: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.emergency-text {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-logo {
  max-height: 300px;
  width: auto;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Main Content Section */
.main-content {
  padding: 80px 0;
  background: var(--bg);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.content-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.content-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.content-image {
  display: flex;
  justify-content: center;
}

.content-image-img {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.content-placeholder {
  width: 100%;
  height: 300px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--bg-light);
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.services-list li {
  background: var(--bg);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 500;
}

.services-cta {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
}

.services-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.service-btn {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  cursor: default;
  display: inline-block;
}

/* Emergency Contact Section */
.emergency-contact {
  padding: 80px 0;
  background: var(--gradient);
  color: white;
}

.emergency-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.emergency-text {
  flex: 1;
}

.emergency-text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.emergency-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: white;
  margin-bottom: 2rem;
}

.phone-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.video-container {
  flex: 0 0 400px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.zumbull-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: contain;
}

.video-placeholder {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.play-button {
  font-size: 3rem;
  color: white;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image-img {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-placeholder {
  width: 100%;
  height: 300px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

/* Process Section */
.process {
  padding: 80px 0;
  background: var(--bg-light);
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.process-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.process-cta {
  text-align: center;
}

.process-cta p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.process-learnmore-img {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
  background: var(--bg);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.testimonial-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-dots {
  text-align: center;
  margin-top: 2rem;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: var(--primary);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg);
}

.features h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.feature-card {
  display: flex;
  gap: 2rem;
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-image {
  flex-shrink: 0;
}

.feature-placeholder {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.feature-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* CTA Section */
.final-cta {
  padding: 80px 0;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-logo .logo-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto;
}

.cta-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--bg-light);
  padding: 8px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}

.cta-button {
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #d97706;
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 200px;
  min-height: 200px;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

/* Hover animation removed */

.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.3;
  margin: 0;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--primary-dark);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-contact {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 0;
  border-top: 1px solid #374151;
  border-bottom: 1px solid #374151;
}

.footer-phone {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.footer-contact p {
  color: #d1d5db;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

.footer-bottom p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .emergency-content {
    flex-direction: column;
    text-align: center;
  }
  
  .video-container {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .services-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
  }
}
