:root {
  --primary-color: #003DA5;
  /* Quebec Blue */
  --primary-dark: #002D7A;
  /* Darker shade for hover/active */
  --primary-light: #3364B7;
  /* Lighter shade for accents */
  --white: #ffffff;
  --gray-light: #f4f6f9;
  /* sleek background gray */
  --gray-medium: #dee2e6;
  /* borders */
  --text-dark: #1a1a1a;
  --text-muted: #595959;
  --shadow-sm: 0 2px 4px rgba(0, 61, 165, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 61, 165, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 61, 165, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Add a small underline to section headings */
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons - Premium Feel */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Header - Clean & Sticky */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--primary-dark);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Special styling for the Book Now in nav */
.nav-links .btn {
  padding: 10px 24px;
  margin-left: 1rem;
}

.nav-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.lang-switch {
  font-weight: 700;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.lang-switch:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Mobile Menu */
.hamburger {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section - Professional & Clear */
.hero {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, rgba(0, 61, 165, 0.6) 0%, rgba(0, 45, 122, 0.5) 100%), url('https://images.unsplash.com/photo-1626806819282-2c1dc01a5e0c?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; Removed for better mobile compatibility */
  color: var(--white);
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Services Section - Clean Cards */
.services {
  padding: 100px 0;
  background-color: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  color: var(--primary-color);
  /* Correctly set */
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  text-align: left;
  margin: 0 0 2rem 0;
}

.about-text h2::after {
  margin: 1rem 0 0;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--primary-color);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* Service Area */
.areas {
  padding: 100px 0;
  text-align: center;
  background-color: var(--gray-light);
}

.map-container {
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: inline-block;
  width: 100%;
  max-width: 900px;
  box-shadow: var(--shadow-md);
}

iframe {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-sm);
  display: block;
}

/* Contact/Booking - Professional Form */
.contact {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: var(--white);
  position: relative;
}

/* Pattern overlay for visual interest */
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

.contact h2 {
  color: var(--white);
}

.contact h2::after {
  background: var(--white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-info,
.booking-form {
  flex: 1;
  min-width: 320px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item span:first-child {
  font-size: 2rem;
}

.booking-form form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  color: var(--text-dark);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-medium);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--gray-light);
}

/* Footer */
footer {
  background-color: #002D7A;
  /* Darker than primary */
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    gap: 1.5rem;
  }

  .nav-links .btn {
    margin: 0;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .about-content {
    flex-direction: column;
    gap: 3rem;
  }

  .about-image::after {
    display: none;
    /* Simplify for mobile */
  }
}