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

body {
  background: #07111f;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.site-header {
  padding: 28px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #d6aa45;
  font-weight: 700;
  letter-spacing: 2px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 24px;
  font-size: 14px;
}

.nav-button {
  color: #07111f;
  background: #d6aa45;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 80px 8%;
  background: radial-gradient(circle at bottom right, #123f7a, #07111f 60%);
}

.hero-content {
  max-width: 700px;
}

.eyebrow {
  color: #d6aa45;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -2px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.hero-text {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: #d8e2f0;
  margin-bottom: 32px;
}

.button {
  display: inline-block;
  text-decoration: none;
  margin-right: 14px;
  margin-bottom: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.primary {
  background: #d6aa45;
  color: #07111f;
}

.secondary {
  border: 1px solid #d6aa45;
  color: #d6aa45;
}.trust-section {
  padding: 40px 8% 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  background: #07111f;
}

.trust-card {
  border: 1px solid rgba(214, 170, 69, 0.25);
  background: rgba(255, 255, 255, 0.04);
  padding: 28px;
  border-radius: 22px;
}

.trust-card span {
  color: #d6aa45;
  font-weight: 700;
  font-size: 13px;
}

.trust-card h3 {
  margin: 16px 0 12px;
  font-size: 22px;
}

.trust-card p {
  color: #d8e2f0;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .trust-section {
    grid-template-columns: 1fr;
  }
}.services {
  padding: 90px 8%;
  background: #081523;
}

.services h2 {
  font-size: 42px;
  margin-bottom: 32px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(214, 170, 69, 0.18);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #d8e2f0;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}/* Booking Section */

.booking-section {
  padding: 90px 24px;
  background: linear-gradient(135deg, rgba(7, 18, 35, 0.95), rgba(12, 35, 62, 0.95));
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.booking-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  color: #d4af37;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}

.booking-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 18px;
  color: #ffffff;
}

.booking-section .section-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.booking-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 40px 0;
}

.booking-item {
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
}

.booking-item h3 {
  margin-bottom: 12px;
  color: #ffffff;
}

.booking-item p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.booking-section .button {
  display: inline-block;
  margin-top: 10px;
}

@media (max-width: 800px) {
  .booking-card {
    grid-template-columns: 1fr;
  }
}/* Areas Covered Section */

.areas-section {
  padding: 80px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.areas-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.areas-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 16px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.area-card {
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 800px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}/* Laurus Standard Section */

.laurus-section {
  padding: 90px 24px;
  background: linear-gradient(135deg, rgba(6, 16, 31, 0.96), rgba(13, 34, 59, 0.96));
  border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.laurus-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.laurus-section h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: #ffffff;
  margin-bottom: 18px;
}

.laurus-section .section-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.laurus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.laurus-card {
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
}

.laurus-card h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.laurus-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .laurus-grid {
    grid-template-columns: 1fr;
  }
}/* Footer */

.site-footer {
  background: #050b16;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 70px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 50px;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  line-height: 1.8;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer a:hover {
  color: #d4af37;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 24px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}/* Issue 1.9 - Trust Bar */

.trust-bar {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.trust-bar-grid {
    display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: center;
}

.trust-bar-grid div {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.95rem;
}
/* Issue 2.0 - Premium Polish */

html {
  scroll-behavior: smooth;
}

.service-card,
.trust-card,
.laurus-card,
.area-card,
.booking-item {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.trust-card:hover,
.laurus-card:hover,
.area-card:hover,
.booking-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.button,
.nav-button {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.nav-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.22);
}
/* Issue 2.1 - Fade Animation */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.services,
.trust-section,
.booking-section,
.site-footer {
    animation: fadeUp 0.8s ease forwards;
}

    
