/* ============================================
   MAIN STYLES - Bradley's Equipment Inc
   ============================================ */

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

:root {
  --primary-color: #f4b000;
  --secondary-color: #d32f2f;
  --text-dark: #333;
  --text-medium: #444;
  --text-light: #555;
  --bg-white: #ffffff;
  --bg-black: #000000;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ============================================
   NAVBAR STYLES
   ============================================ */

.top-info-bar {
  background-color: var(--bg-black);
  color: white;
  width: 100%;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  flex-wrap: wrap;
}

.top-info-bar .social-icons {
  display: flex;
  gap: 16px;
}

.top-info-bar .social-icons a {
  color: white;
}

.top-info-bar .contact-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.navbar {
  background-color: white;
  color: black;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.navbar-logo img {
  height: 60px;
  cursor: pointer;
}

.navbar-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.navbar-menu a {
  color: black;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar-menu a:hover {
  color: var(--secondary-color);
}

.request-quote-btn {
  background-color: var(--secondary-color);
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.request-quote-btn:hover {
  background-color: #b30000;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  padding: 5px 10px;
  z-index: 2001;
  position: relative;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  z-index: 2000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

.mobile-drawer ul {
  list-style: none;
  padding: 80px 0 20px;
  margin: 0;
}

.mobile-drawer li {
  border-bottom: 1px solid #eee;
}

.mobile-drawer a {
  display: block;
  padding: 15px 25px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.mobile-drawer a:hover {
  background: #f8f9fa;
  color: #f4b000;
}

.mobile-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
}

.mobile-drawer-overlay.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.45);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.hero-btn-primary {
  background-color: var(--primary-color);
  color: #000;
}

.hero-btn-primary:hover {
  background-color: #d8a200;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(244, 176, 0, 0.4);
}

.hero-btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.hero-btn-secondary:hover {
  background-color: white;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: white;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.scroll-arrow {
  font-size: 1.5rem;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 30px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: 'Arial', sans-serif;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 40px 20px 0px 20px;
  margin-bottom: 0;
}

.section-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(15, 3, 34, 0.05);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.yellow-underline {
  width: 60px;
  height: 6px;
  background-color: var(--primary-color);
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

/* ============================================
   EQUIPMENT GRID
   ============================================ */

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  padding: 20px 20px 0px 20px;
  margin-bottom: 0;
}

.equipment-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.equipment-item:hover {
  transform: translateY(-10px);
}

.equipment-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.equipment-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.equipment-item:hover .equipment-image-wrapper {
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.equipment-item img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  transition: transform 0.3s ease;
  background: #f5f5f5;
  padding: 10px;
}

.equipment-item:hover img {
  transform: scale(1.05);
}

.equipment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(244, 176, 0, 0.9), rgba(211, 47, 47, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.equipment-item:hover .equipment-overlay {
  opacity: 1;
}

.equipment-icon {
  font-size: 4rem;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.equipment-item h3 {
  margin-top: 12px;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.equipment-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 8px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 20px 48px;
  margin: 0;
  background: #ffffff;
  min-height: 300px;
  opacity: 1;
  visibility: visible;
}

.benefits-section.animate {
  animation: fadeInUp 0.8s ease-out;
}

.benefits-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefits-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.benefits-image {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.benefits-image.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.benefits-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.2;
}

.benefits-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.benefits-content h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}

.benefits-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(244, 176, 0, 0.1), transparent);
  animation: shine 3s infinite;
  z-index: 1;
}

@keyframes shine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.benefits-image img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.benefits-list {
  margin: 30px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #f0f0f0;
  transform: translateX(10px);
}

.benefit-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 176, 0, 0.1);
  border-radius: 50%;
}

.benefit-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-section {
  position: relative;
  padding: 0px 20px 40px 20px;
  margin-top: 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
}

.process-header {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  position: relative;
}

.process-intro {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step-card {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.process-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.process-step-card:hover::before {
  transform: scaleY(1);
}

.process-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.step-header {
  margin-bottom: 30px;
}

.step-number-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #d8a200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-icon {
  font-size: 3rem;
  animation: bounce 2s infinite;
}

.step-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-underline {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin-bottom: 20px;
  border-radius: 3px;
}

.step-body {
  margin-top: 30px;
}

.step-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Services Grid for Step 1 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.service-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--text-dark);
}

.service-tag:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(244, 176, 0, 0.1), rgba(244, 176, 0, 0.05));
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(244, 176, 0, 0.2);
}

.service-icon {
  font-size: 1.5rem;
}

/* Step Image Grid */
.step-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.grid-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  background: #f5f5f5;
  transition: all 0.3s ease;
}

.grid-image-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.grid-image-item a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.grid-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
}

/* Contact Cards for Step 2 */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(244, 176, 0, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(244, 176, 0, 0.1), rgba(244, 176, 0, 0.05));
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-info p {
  margin: 0;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--secondary-color);
}

.request-quote-link {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--primary-color), #d8a200);
  color: #000;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 176, 0, 0.3);
}

.request-quote-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 176, 0, 0.4);
}

/* Step Image Wrapper */
.step-image-wrapper {
  margin-top: 30px;
}

.step-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.step-image-frame:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-image-frame img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  display: block;
  background: #f5f5f5;
  padding: 20px;
}

/* Delivery Features for Step 3 */
.delivery-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(244, 176, 0, 0.1), rgba(244, 176, 0, 0.05));
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(244, 176, 0, 0.2), rgba(244, 176, 0, 0.1));
  transform: translateX(5px);
}

.feature-check {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: bold;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content {
  color: var(--text-medium);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-top: 20px;
}

/* Step Connector */
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}

.connector-line {
  width: 3px;
  height: 40px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.connector-arrow {
  font-size: 2rem;
  color: var(--primary-color);
  animation: bounce 2s infinite;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .process-step-card {
    padding: 30px 20px;
  }
  
  .step-number-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 0px 20px 30px 20px;
  }
  
  .step-title {
    font-size: 1.5rem;
  }
  
  .step-number {
    font-size: 3rem;
  }
  
  .step-image-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--bg-black);
  color: white;
  margin-top: 40px;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h5 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-section p,
.footer-section div {
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: none;
  border-radius: 4px;
  background-color: white;
  font-family: inherit;
}

.footer-form textarea {
  min-height: 100px;
  resize: vertical;
}

.footer-form button {
  width: 100%;
  padding: 12px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer-form button:hover {
  background-color: #b71c1c;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.7;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
}

.whatsapp-float img {
  width: 65px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

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

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
}

.about-content h2 {
  font-size: 2.875rem;
  font-weight: bold;
  margin-bottom: 24px;
  color: #111;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.feature-item {
  margin-bottom: 24px;
}

.feature-item h6 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-light);
}

.contact-button-section {
  text-align: center;
  padding: 48px 0;
}

.contact-btn {
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: #b71c1c;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
  width: 100%;
  background-color: #f8f9fa;
  padding: 60px 20px;
  min-height: calc(100vh - 200px);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-header h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--secondary-color) 0%, #b71c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: var(--secondary-color);
}

.contact-detail-item svg {
  width: 60px;
  height: 60px;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.contact-detail-item:hover svg {
  transform: scale(1.1);
}

.contact-detail-item h6 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text-dark);
  margin: 0;
}

.contact-detail-item p {
  color: var(--text-medium);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto 60px auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.contact-form-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #b71c1c 100%);
  color: white;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-form-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.contact-form-header h3 {
  font-size: 2.75rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: white;
  position: relative;
  z-index: 1;
}

.contact-form-header p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.contact-form-container {
  padding: 60px 50px;
  background: white;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.contact-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-form label svg {
  flex-shrink: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f9fafb;
  color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
  transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.contact-form .submit-btn {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #b71c1c 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  margin-top: 10px;
}

.contact-form .submit-btn:hover {
  background: linear-gradient(135deg, #b71c1c 0%, #8b0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.contact-form .submit-btn:active {
  transform: translateY(0);
}

.contact-form .submit-btn svg {
  transition: transform 0.3s ease;
}

.contact-form .submit-btn:hover svg {
  transform: translateX(4px);
}

.form-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  display: none;
  animation: slideIn 0.3s ease;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
  display: block;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 2px solid #ef4444;
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Contact Form */
@media (max-width: 968px) {
  .contact-page {
    padding: 40px 20px;
  }

  .contact-header h2 {
    font-size: 2.5rem;
  }

  .contact-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
  }

  .contact-form-wrapper {
    margin-bottom: 50px;
  }

  .contact-form-container {
    padding: 45px 35px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 30px 15px;
  }

  .contact-header {
    margin-bottom: 40px;
  }

  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .contact-detail-item {
    padding: 30px 20px;
  }

  .contact-form-wrapper {
    border-radius: 20px;
    margin-bottom: 40px;
  }

  .contact-form-header {
    padding: 35px 25px;
  }

  .contact-form-header h3 {
    font-size: 2rem;
  }

  .contact-form-header p {
    font-size: 1rem;
  }

  .contact-form-container {
    padding: 35px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 15px;
  }

  .contact-form .submit-btn {
    padding: 16px 24px;
    font-size: 16px;
  }

  .map-container {
    margin-top: 50px;
  }

  .map-container h4 {
    font-size: 2rem;
  }

  .map-wrapper {
    height: 400px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 25px 10px;
  }

  .contact-header h2 {
    font-size: 1.75rem;
  }

  .contact-detail-item {
    padding: 25px 15px;
  }

  .contact-detail-item svg {
    width: 50px;
    height: 50px;
  }

  .contact-form-wrapper {
    border-radius: 15px;
  }

  .contact-form-header {
    padding: 30px 20px;
  }

  .contact-form-header h3 {
    font-size: 1.75rem;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .map-container h4 {
    font-size: 1.75rem;
  }

  .map-wrapper {
    height: 350px;
  }
}

.map-container {
  margin-top: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.map-container h4 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-dark);
}

.map-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 3px solid #e5e7eb;
  transition: transform 0.3s ease;
}

.map-wrapper:hover {
  transform: scale(1.01);
}

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

/* ============================================
   DASHBOARD STYLES
   ============================================ */

.dashboard-container {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.dashboard-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.dashboard-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dashboard-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.dashboard-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.card-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card-btn-primary {
    background-color: #1976d2;
    color: white;
}

.card-btn-primary:hover {
    background-color: #1565c0;
}

.card-btn-outline {
    background-color: transparent;
    color: #1976d2;
    border: 1px solid #1976d2;
}

.card-btn-outline:hover {
    background-color: #e3f2fd;
}

.logout-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

.logout-btn:hover {
    background-color: #b71c1c;
}

/* Login/Signup Styles */
.login-container,
.signup-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 20px;
}

.login-card,
.signup-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 30px;
}

.login-card h2,
.signup-card h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.login-form,
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form input,
.signup-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.login-form input:focus,
.signup-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.login-btn,
.signup-btn {
    width: 100%;
    padding: 12px;
    background-color: #1976d2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
}

.login-btn:hover,
.signup-btn:hover {
    background-color: #1565c0;
}

.error-message {
    color: red;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #ffebee;
    border-radius: 4px;
}

.success-message {
    color: green;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #e8f5e9;
    border-radius: 4px;
}

.signup-link,
.login-link {
    margin-top: 20px;
    text-align: center;
}

.signup-link a,
.login-link a {
    color: #1976d2;
    text-decoration: none;
}

.signup-link a:hover,
.login-link a:hover {
    text-decoration: underline;
}

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

@media (max-width: 768px) {
  .top-info-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 12px;
    padding: 8px 12px;
  }

  .top-info-bar .contact-info {
    flex-direction: column;
    gap: 8px;
  }

  .top-info-bar .social-icons {
    justify-content: center;
  }

  .navbar-container {
    padding: 10px 15px;
  }

  .navbar-logo img {
    height: 45px;
  }

  .navbar-menu {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .mobile-menu-btn {
    display: block !important;
    visibility: visible !important;
    font-size: 28px;
    padding: 8px;
    z-index: 2001 !important;
    position: relative !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    min-width: 44px;
    min-height: 44px;
    opacity: 1 !important;
  }
  
  .navbar-container {
    position: relative;
  }

  .mobile-drawer {
    display: block;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-title-bg {
    font-size: 3rem;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
    padding: 20px 20px 0px 20px;
  }

  .benefits-section {
    grid-template-columns: 1fr;
    padding: 20px 20px;
  }

  .process-step-card {
    padding: 30px 20px;
  }
  
  .step-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-features {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float img {
    width: 55px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .logout-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .benefits-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .top-info-bar {
    font-size: 11px;
    padding: 6px 10px;
  }

  .navbar-container {
    padding: 8px 10px;
  }

  .navbar-logo img {
    height: 40px;
  }

  .mobile-menu-btn {
    font-size: 24px;
    padding: 6px;
  }

  .mobile-drawer {
    width: 100%;
    max-width: 280px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .benefits-content h2 {
    font-size: 1.8rem;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

