html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html { font-size: 16px; }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f7f5f2;
  color: #232F3E;
}

main {
  flex: 1;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(120deg, #f7f5f2 0%, #ffe5b4 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #232F3E;
}

.hero-section h1 {
  color: #fb8800;
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-dark {
  background: #232F3E;
  color: #fff;
  border: none;
}

.hero-buttons .btn-outline-dark {
  border: 2px solid #232F3E;
  color: #232F3E;
  background: transparent;
}

.hero-buttons .btn-dark:hover, .hero-buttons .btn-outline-dark:hover {
  background: #fb8800;
  color: #fff;
  border-color: #fb8800;
}

/* Services Section */
.services-section {
  padding: 60px 0;
  background: #fff;
}

.services-section h2 {
  color: #fb8800;
}

.services-section .d-flex img {
  border-radius: 12px;
  background: #fff7e6;
  box-shadow: 0 2px 8px rgba(251,136,0,0.08);
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background: #f7f5f2;
}

.contact-form-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Form Controls */
.btn-primary, .btn-dark {
  background: #232F3E;
  border: none;
  color: #fff;
}

.btn-primary:hover, .btn-dark:hover {
  background: #fb8800;
  color: #fff;
}

.btn-outline-dark {
  border: 2px solid #232F3E;
  color: #232F3E;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #fb8800;
  color: #fff;
  border-color: #fb8800;
}

.form-label { 
  font-weight: 600; 
  color: #232F3E; 
}

.form-control, .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 16px;
  background: #f8f9fa;
}

.form-control:focus, .form-select:focus {
  border-color: #fb8800;
  background: #fff;
  box-shadow: 0 0 0 0.2rem rgba(251,136,0,0.25);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #232F3E 0%, #374151 100%);
  color: white;
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section { 
    text-align: center; 
    padding: 40px 0; 
    min-height: 320px; 
  }
  
  .hero-section .display-4 { 
    font-size: 2rem; 
  }
  
  .hero-buttons .btn { 
    display: block; 
    width: 100%; 
    margin: 10px 0; 
  }
  
  .services-section, .contact-section { 
    padding: 30px 0; 
  }
  
  .contact-form-wrapper { 
    margin: 0 15px; 
    padding: 20px; 
  }
}