:root {
  --primary: #1e3a5f;
  --primary-dark: #152a45;
  --primary-light: #2d4f7a;
  --accent: #e63946;
  --accent-hover: #c92a37;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #0f172a;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --text-white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

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

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

/* Header & Navigation */
.main-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img,
.logo-img-small {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

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

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 15px;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 15px 35px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--text-white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-card {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 5px;
  display: block;
}

/* Services Preview */
.services-preview {
  padding: 100px 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--bg-white);
  padding: 35px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--text-white);
}

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

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content .section-title {
  text-align: left;
  margin-bottom: 15px;
}

.why-content .section-subtitle {
  margin: 0 0 35px 0;
}

.why-list {
  list-style: none;
  margin-bottom: 35px;
}

.why-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.why-list strong {
  display: block;
  color: var(--primary);
  font-size: 17px;
  margin-bottom: 5px;
}

.why-list p {
  color: var(--text-light);
  font-size: 15px;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  text-align: center;
}

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

.cta-content p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline {
  color: var(--text-white);
  border-color: var(--text-white);
}

.cta-buttons .btn-outline:hover {
  background: var(--text-white);
  color: var(--primary);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.95;
}

/* Services Full */
.services-full {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.service-detail-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.service-detail-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-detail-content {
  padding: 30px;
}

.service-detail-content h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
}

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

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
}

.booking-form-container {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.booking-form h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

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

.booking-info {
  padding: 20px;
}

.booking-info h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
}

.booking-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.booking-benefits li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-benefits strong {
  display: block;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 5px;
}

.booking-benefits p {
  color: var(--text-light);
  font-size: 14px;
}

.contact-card {
  background: var(--primary);
  color: var(--text-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.contact-card .phone-number {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-card p {
  opacity: 0.9;
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.contact-form-container {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
}

/* Map Section */
.map-section {
  padding: 0 0 80px 0;
}

.map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--bg-white);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.map-overlay h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 8px;
}

.map-overlay p {
  color: var(--text-light);
}

/* Footer */
.main-footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

.logo-img-small {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: transparent;
  border-radius: var(--radius-md);
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-white);
}

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

.footer-col ul li {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.7);
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

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

/* Responsive */
@media (max-width: 992px) {
  .why-grid,
  .contact-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-title {
    font-size: 42px;
  }

  .hero-stats {
    gap: 25px;
  }

  .stat-number {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-title {
    font-size: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 28px;
  }

  .stat-number {
    font-size: 28px;
  }

  .booking-form-container,
  .contact-form-container {
    padding: 25px;
  }
}
