/* ============================================
   DESIGN PHILOSOPHY: Premium Professional
   - Dark navy + white + gold accents
   - Elegant typography with Playfair Display
   - Subtle shadows and refined spacing
   - High-converting, trustworthy aesthetic
   ============================================ */

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

:root {
  --primary-dark: #1a3a52;
  --primary-blue: #2c5aa0;
  --accent-gold: #d4af37;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --border-light: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--text-light);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background-color: var(--primary-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(44, 90, 160, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background-color: #e5c158;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.about h2,
.services h2,
.why-us h2,
.contact h2,
.map-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-dark);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 5rem 0;
  background-color: var(--text-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--bg-light);
  padding: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-gold);
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-card > div:not(.service-image),
.service-card h3,
.service-card p {
  padding: 0 2rem;
}

.service-card > div:first-of-type {
  padding-top: 1.5rem;
}

.service-card p {
  padding-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-dark);
  line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.why-us-list {
  list-style: none;
  max-width: 900px;
  margin: 3rem auto;
}

.why-us-list li {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background-color: var(--text-light);
  border-left: 4px solid var(--accent-gold);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  font-size: 1.05rem;
  line-height: 1.7;
}

.why-us-list li:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.why-us-list strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 5rem 0;
  background-color: var(--text-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  font-weight: 700;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.5rem;
}

.info-item a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--accent-gold);
}

.info-item p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.success-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.success-message h3 {
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

/* ============================================
   ERROR MESSAGES
   ============================================ */
.error-message {
  color: #ff6b6b;
  margin-top: 5px;
  font-size: 14px;
  animation: fadeIn 0.3s ease;
}

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

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.google-map {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 2rem 0;
  text-align: center;
  margin-top: 3rem;
}

.footer p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about h2,
  .services h2,
  .why-us h2,
  .contact h2,
  .map-section h2 {
    font-size: 2rem;
  }

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

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

  .hero {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }

  .nav-links {
    gap: 0.5rem;
    font-size: 0.8rem;
  }

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

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

  .about h2,
  .services h2,
  .why-us h2,
  .contact h2,
  .map-section h2 {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .why-us-list li {
    padding: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
