:root {
  /* Primary Color Palette - Coastal Theme */
  --primary-ocean: #1e3a8a;
  --primary-sky: #0ea5e9;
  --primary-sand: #f59e0b;
  --primary-coral: #ef4444;
  --primary-seafoam: #10b981;
  
  /* Light Shades */
  --light-ocean: #3b82f6;
  --light-sky: #38bdf8;
  --light-sand: #fbbf24;
  --light-coral: #f87171;
  --light-seafoam: #34d399;
  
  /* Dark Shades */
  --dark-ocean: #1e40af;
  --dark-sky: #0284c7;
  --dark-sand: #d97706;
  --dark-coral: #dc2626;
  --dark-seafoam: #059669;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8fafc;
  --gray: #64748b;
  --dark-gray: #334155;
  --black: #0f172a;
  
  /* Gradients */
  --gradient-ocean: linear-gradient(135deg, var(--primary-ocean), var(--primary-sky));
  --gradient-sunset: linear-gradient(135deg, var(--primary-coral), var(--primary-sand));
  --gradient-coastal: linear-gradient(135deg, var(--primary-seafoam), var(--primary-sky));
}

/* Bootstrap 5 Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }
p { font-size: 1rem; margin-bottom: 1rem; }

/* Header Styles */
.navbar {
  background: var(--gradient-ocean) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-sand) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-coastal);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-ocean);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-sky);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.services-item-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-ocean);
}

.services-item-desc {
  margin-bottom: 1rem;
  color: var(--gray);
}

.services-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.services-item-features {
  list-style: none;
  padding: 0;
}

.services-item-features li {
  padding: 0.25rem 0;
  color: var(--dark-gray);
}

.services-item-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-seafoam);
  margin-right: 0.5rem;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-sky);
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-ocean);
}

.team-member-role {
  color: var(--gray);
}

/* Reviews Section */
.reviews-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-sky);
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.reviews-item-author {
  font-weight: 600;
  color: var(--primary-ocean);
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--primary-ocean);
  color: var(--white);
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--light-ocean);
}

.faq-answer {
  background: var(--light-gray);
  padding: 1rem;
  border-radius: 10px;
  color: var(--dark-gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Contact Form */
.contact-form {
  background: var(--gradient-ocean);
  padding: 3rem;
  border-radius: 20px;
  color: var(--white);
}

.contact-form .form-control {
  border: none;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.9);
  color: var(--dark-gray);
}

.contact-form .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.5);
  background: var(--white);
}

.contact-form .btn-submit {
  background: var(--primary-coral);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
  background: var(--dark-coral);
}

/* Footer */
.footer {
  background: var(--primary-ocean);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-sand);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-sand);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb-nav img {
  height: 30px;
  width: auto;
}

/* Utility Classes */
.bg-gradient-ocean { background: var(--gradient-ocean); }
.bg-gradient-sunset { background: var(--gradient-sunset); }
.bg-gradient-coastal { background: var(--gradient-coastal); }

.text-ocean { color: var(--primary-ocean); }
.text-sky { color: var(--primary-sky); }
.text-sand { color: var(--primary-sand); }
.text-coral { color: var(--primary-coral); }
.text-seafoam { color: var(--primary-seafoam); }

/* Button Styles */
.btn-ocean {
  background: var(--primary-ocean);
  border-color: var(--primary-ocean);
  color: var(--white);
}

.btn-ocean:hover {
  background: var(--dark-ocean);
  border-color: var(--dark-ocean);
  color: var(--white);
}

.btn-sky {
  background: var(--primary-sky);
  border-color: var(--primary-sky);
  color: var(--white);
}

.btn-sky:hover {
  background: var(--dark-sky);
  border-color: var(--dark-sky);
  color: var(--white);
} 