/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #088fc2;
  --dark-blue: #066b91;
  --darker-blue: #055979;
  --navy: #08194f;
  --light-blue: #0ab3f3;
  --black: #000000;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #f2f2f2;
  --border-gray: #e1e1e1;
  --white: #ffffff;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
}

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

/* Header Styles */
#site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-branding {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-gray);
}

.site-branding .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo h1 {
  color: var(--primary-blue);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.contact-info .address a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info .address a:hover {
  color: var(--primary-blue);
}

.phone {
  display: flex;
  gap: 5px;
  align-items: center;
}

.phone .label {
  color: var(--dark-gray);
  font-weight: 600;
}

.phone a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
}

/* Navigation */
.main-nav {
  background: var(--primary-blue);
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: block;
  padding: 15px 25px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--dark-blue);
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--dark-gray);
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Services Overview */
.services-overview {
  padding: 80px 20px;
  background: var(--light-gray);
}

.services-overview h2 {
  text-align: center;
  font-size: 36px;
  color: var(--black);
  margin-bottom: 50px;
  font-weight: 700;
}

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

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-blue);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: var(--primary-blue);
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  color: var(--medium-gray);
  font-size: 15px;
  line-height: 1.7;
}

/* About Section */
.about {
  padding: 80px 20px;
  text-align: center;
  background: var(--white);
}

.about h2 {
  font-size: 36px;
  color: var(--black);
  margin-bottom: 30px;
  font-weight: 700;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--medium-gray);
  line-height: 1.8;
}

/* Contact CTA */
.contact-cta {
  background: var(--primary-blue);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.contact-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Page Content */
.page-content {
  padding: 60px 20px;
  min-height: 60vh;
}

.page-content h1 {
  color: var(--black);
  font-size: 42px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.service-detail {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 30px;
  background: var(--light-gray);
  border-radius: 8px;
  border-left: 5px solid var(--primary-blue);
}

.service-detail h2 {
  color: var(--primary-blue);
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-detail p {
  margin-bottom: 20px;
  color: var(--medium-gray);
  line-height: 1.8;
}

.service-detail ul {
  list-style: none;
  padding-left: 0;
}

.service-detail ul li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--text-dark);
}

.service-detail ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.cta-box {
  background: var(--primary-blue);
  color: var(--white);
  text-align: center;
  padding: 40px;
  border-radius: 8px;
  margin: 60px auto 0;
  max-width: 800px;
}

.cta-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-box p {
  font-size: 17px;
  margin-bottom: 25px;
}

/* Contact Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
  color: var(--black);
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-details {
  margin-top: 30px;
}

.detail-item {
  margin-bottom: 25px;
}

.detail-item h3 {
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.detail-item p {
  color: var(--medium-gray);
  line-height: 1.7;
}

.detail-item a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.detail-item a:hover {
  color: var(--dark-blue);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid var(--border-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* Footer */
#site-footer {
  background: var(--black);
  color: var(--white);
  padding: 50px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-info h3 {
  color: var(--primary-blue);
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-info p {
  color: #cccccc;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-info a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: var(--primary-blue);
}

.footer-links h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul a {
  color: #cccccc;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul a:hover {
  color: var(--primary-blue);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999999;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .site-branding .inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .header-info {
    justify-content: center;
  }

  .main-nav ul {
    flex-wrap: wrap;
  }

  .hero-content h2 {
    font-size: 36px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-links ul {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .logo h1 {
    font-size: 24px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .services-overview,
  .about,
  .contact-cta {
    padding: 50px 20px;
  }

  .services-overview h2,
  .about h2,
  .contact-cta h2 {
    font-size: 28px;
  }

  .page-content h1 {
    font-size: 32px;
  }

  .service-detail h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

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

  .hero-content h2 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 16px;
  }
}
