:root {
  --primary-color: #0077b6;
  /* Ocean Blue */
  --secondary-color: #caf0f8;
  /* Light Sky Blue */
  --accent-color: #03045e;
  /* Navy Blue */
  --text-color: #333333;
  --bg-color: #ffffff;
  --light-gray: #f8f9fa;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --font-main: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-gray);
  scroll-behavior: smooth;
}

/* Fix for sticky header covering section titles */
section[id] {
  scroll-margin-top: 160px;
}

/* Header */
header {
  background-color: var(--bg-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 0;
  font-size: 1.1rem;
}

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

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info span {
  margin-right: 15px;
}

.main-header {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ffffff 100%);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid #e1e4e8;
}

.hero h1 {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Showcase (New Section) */
.services-showcase {
  padding: 4rem 0;
  background-color: var(--bg-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Prices Table */
.prices-section {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
}

.prices-table-container {
  overflow-x: auto;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  background: white;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.prices-table th,
.prices-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.prices-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.prices-table tr:last-child td {
  border-bottom: none;
}

.prices-table tr:hover {
  background-color: #f0f9ff;
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background-color: var(--bg-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 400px;
  background-color: #ddd;
  background-image: url('https://images.unsplash.com/photo-1489274495757-95c7c83700c0?q=80&w=1000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-text h2 {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.8;
}

/* Contact Section (New) */
.contact-section {
  padding: 4rem 0;
  background-color: var(--accent-color);
  color: white;
  text-align: center;
}

.contact-section h2 {
  color: white;
  margin-bottom: 2rem;
}

.contact-section .section-title::after {
  background-color: var(--secondary-color);
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 0 1 300px;
  /* Ensure equal width for alignment */
}

.contact-item .icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-size: 1.1rem;
  max-width: 300px;
}

.map-container {
  margin-top: 4rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  display: block;
  /* Removes bottom space */
}

/* Footer */
footer {
  background-color: #020344;
  /* Darker than accent */
  color: #aaa;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    text-align: center;
  }

  .main-header {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }

  .contact-grid {
    gap: 2rem;
  }
}