/* Reset CSS */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}:root {
  /* Colors - Based on REVIVE's brand identity */
  --color-primary: #1b3b75; /* Their navy blue */
  --color-primary-light: #264c8c; /* Lighter navy */
  --color-primary-dark: #132b58; /* Darker navy */
  --color-accent: #ffb800; /* Their gold/yellow */
  --color-accent-light: #ffd147; /* Lighter gold */
  --color-accent-dark: #cc9400; /* Darker gold */

  /* Neutral palette */
  --color-bg: #ffffff; /* Clean white background */
  --color-bg-light: #f7f9fc; /* Very light blue tint */
  --color-bg-dark: #e8eef6; /* Navy-tinted background */
  --color-text: #1a2a3a; /* Dark navy for text */
  --color-text-muted: #485870; /* Muted navy */

  /* Status colors */
  --color-success: #29b35e; /* Keep this professional green */
  --color-warning: #ffb800; /* Using their gold for warnings */
  --color-error: #d94c3c; /* Strong error red */

  /* Effects */
  --glow-primary: 0 0 15px rgba(27, 59, 117, 0.35); /* Navy glow */
  --glow-accent: 0 0 15px rgba(255, 184, 0, 0.35); /* Gold glow */
  --shadow-sm: 0 2px 6px rgba(27, 59, 117, 0.08);
  --shadow-md: 0 4px 15px rgba(27, 59, 117, 0.12);
  --shadow-lg: 0 8px 28px rgba(27, 59, 117, 0.18);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--glow-primary),
    var(--glow-accent)
  ); /* Navy depth */
  --gradient-accent: linear-gradient(
    135deg,
    #ffb800,
    #ffd147
  ); /* Golden power */
  --gradient-hero: linear-gradient(
    135deg,
    #1b3b75,
    #264c8c,
    rgba(255, 184, 0, 0.15)
  ); /* Brand statement */
  --gradient-water: linear-gradient(
    135deg,
    #1b3b75,
    #264c8c
  ); /* Professional clean */
  --hero-overlay-gradient: linear-gradient(
    90deg,
    rgba(1, 3, 27, 0.95) 0%,
  rgba(7, 1, 39, 0.8) 40%,
  rgba(0, 3, 7, 0.5) 70%,
  rgba(1, 7, 17, 0.2) 100%
  ); 

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px; /* For pill-shaped elements */

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Typography */
  --font-hero: "Raleway", Montserrat, sans-serif;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Open Sans", sans-serif;

  /* Font sizes - using clamp for responsive typography */
 /* Font sizes - using clamp for responsive typography */
--font-size-xs: clamp(0.75rem, calc(0.7rem + 0.2vw), 0.875rem);
--font-size-sm: clamp(0.875rem, calc(0.8rem + 0.3vw), 1rem);
--font-size-base: clamp(1rem, calc(0.95rem + 0.4vw), 1.125rem);
--font-size-md: clamp(1.125rem, calc(1.05rem + 0.5vw), 1.25rem);
--font-size-lg: clamp(1.25rem, calc(1.15rem + 0.6vw), 1.5rem);
--font-size-xl: clamp(1.5rem, calc(1.35rem + 0.8vw), 1.875rem);
--font-size-2xl: clamp(1.75rem, calc(1.5rem + 1vw), 2.25rem);
--font-size-3xl: clamp(2rem, calc(1.7rem + 1.2vw), 2.75rem);
--font-size-4xl: clamp(2.2rem, calc(1.8rem + 1.5vw), 3.5rem);

/* Hero specific typography - much more controlled */
--hero-title-size: clamp(1.8rem, calc(1.5rem + 1.8vw), 3.2rem);
--hero-subtitle-size: clamp(1.4rem, calc(1.1rem + 1.2vw), 2.5rem);


  /* Heading sizes */
  --h3-size: var(--font-size-2xl);
  --h4-size: var(--font-size-xl);
  --h5-size: var(--font-size-lg);
  --h6-size: var(--font-size-md);

  /* Line heights */
  --line-height-tight: 1.1;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Font weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  /* Letter spacing */
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.025em;
  --letter-spacing-wider: 0.05em;
  --letter-spacing-widest: 0.1em;
}
/* Import variables */
@import url('var.css');


/* Common components */
.container {
  width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}


/* Base Typography */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-text);
  line-height: var(--line-height-normal);
  font-size: var(--font-size-base);
  background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-primary-dark);
  margin-top: 0;
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-bold);
}


h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

h6 {
  font-size: var(--h6-size);
}

p {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}


/* Card component */
.card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  transition: var(--transition-normal);
}

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


/* Universal Button Styling - Template Use Only */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-wide);
  position: relative;
  overflow: hidden;
}

/* Clean shine effect - ONE definition */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left var(--transition-slow);
  pointer-events: none;
}

.btn:hover::after {
  left: 100%;
}


.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-primary-dark);
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  box-shadow: var(--glow-accent);
  transition: all 0.3s ease;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 184, 0, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

/* Large button variant for hero */
.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--font-size-xl);
}
@media (max-width: 750px) {
  .btn-large {
  padding: var(--space-sm) var(--space-xl);
  font-size: var(--font-size-base);
}
}
/* Outline button styling */
.btn-outline {
  background-color: var(--color-bg);
  color: var(--color-primary);
  border: 2px solid var(--color-bg);
  box-shadow: var(--shadow-sm);
}

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


/* Floating contact buttons */
.floating-contact-button {
  position: relative;
  overflow: hidden;
}

.floating-contact-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
  border-radius: 50%;
}

.floating-contact-button:hover:after {
  left: 100%;
}

/* CTA section buttons in dark backgrounds */
.cta-full-width .btn:after,
.cta-box .btn:after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}



/* Floating Contact Button - Enhanced */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.floating-contact-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-accent-light);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.floating-contact-button:hover {
  transform: scale(1.05) rotate(5deg);
  background-color: var(--color-bg-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.9);
 
}

/* Enhanced futuristic menu with transparent blur */
.floating-contact-menu {
  position: absolute;
  bottom: 75px;
  right: 5px;
  background: rgba(27, 59, 117, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(27, 59, 117, 0.3), 
              0 0 0 1px rgba(255, 255, 255, 0.3),
              0 0 25px rgba(255, 184, 0, 0.2);
  padding: var(--space-md);
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #ccc;
  overflow: hidden;
}

.floating-contact-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.floating-contact-menu::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 25px;
  width: 15px;
  height: 15px;
  background: rgba(27, 59, 117, 0.75);
  backdrop-filter: blur(12px);
  transform: rotate(45deg);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: -1;
}

.floating-contact:hover .floating-contact-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-item {
  display: flex;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-xs);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.floating-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease-out;
  z-index: -1;
}

.floating-item:hover {
  transform: translateX(5px);
  color: var(--color-primary-dark);
  background-color: rgba(255, 255, 255, 0.85);
  text-shadow: none;
}

.floating-item:hover::before {
  transform: translateX(0);
}

.floating-item svg {
  margin-right: var(--space-md);
  color: var(--color-accent);
  transition: all var(--transition-fast);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.floating-item:hover svg {
  transform: scale(1.2);
  color: var(--color-primary);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.floating-item span {
  position: relative;
}

.floating-item span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-dark);
  transition: width var(--transition-normal);
}

.floating-item:hover span::after {
  width: 100%;
}

/* Make the floating contact button more visible on light backgrounds */
@media (prefers-color-scheme: light) {
  .floating-contact-button {
    box-shadow: 0 6px 20px rgba(27, 59, 117, 0.3), 0 0 0 3px rgba(27, 59, 117, 0.1);
  }
}

/* For screens smaller than 768px */
@media (max-width: 767px) {
  .floating-contact-button {
    width: 55px;
    height: 55px;
  }
  
  .floating-contact-menu {
    width: 200px;
  }
}

.site-footer {
  position: relative;
  background: linear-gradient(135deg, #1b3b75, #264c8c); /* Explicit gradient instead of var */
  color: white;
  padding: var(--space-2xl) 0 var(--space-md);
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Company Section with Logo */
.footer-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 15px var(--color-accent));
  transition: transform var(--transition-normal);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: relative;
}

.footer-logo::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: inherit;
  background: linear-gradient(45deg, var(--color-accent), transparent, var(--color-accent));
  z-index: -1;
  animation: border-glow 3s infinite alternate;
}

@keyframes border-glow {
  0% {
    opacity: 0.3;
    transform: rotate(0deg);
  }
  100% {
    opacity: 0.7;
    transform: rotate(360deg);
  }
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-company p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Contact Section */
.footer-title {
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

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

.footer-contact-list li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  padding-left: var(--space-lg);
  display: inline-block;
}

.footer-contact-list a:hover {
  color: var(--color-accent);
  transform: translateX(5px);
}

/* Phone Icon */
.footer-contact-list li:first-child a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24' fill='none' stroke='%23ffb800' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Email Icon */
.footer-contact-list li:last-child a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24' fill='none' stroke='%23ffb800' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Service Areas */
.footer-areas p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Copyright Section */
.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--space-md);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive styles */
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  
  .footer-company {
    align-items: flex-start;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .footer-logo {
    max-width: 250px;
    padding: var(--space-lg);
  }
}/* nav.css - Premium Luxury Navigation Styling */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .site-header.scrolled {
    background: linear-gradient(135deg, rgba(27, 59, 117, 0.95), rgba(19, 43, 88, 0.95));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(27, 59, 117, 0.3);
  }
  
  .site-header.scrolled .header-top {
    display: none;
  }
  
  .site-header.scrolled .header-main {
    padding: 0.8rem 2rem;
  }
  
  .site-header.scrolled .logo img {
    height: 80px;
  }
  
  .site-header.scrolled .logo-glow {
    width: 100px;
    height: 100px;
  }
  
  .header-top {
    background: var(--color-primary-dark);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    width: 100%;
    border-bottom: 1px groove;
    border-radius: 0 0 10px 10px;
  }
  
  .header-contact {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .contact-premium {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .contact-label {
    color: var(--color-accent-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    position: relative;
  }
  
  .contact-label::after {
    content: "";
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
  
  .phone-link {
    color: var(--color-bg);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
    text-decoration: none;
    margin-left: 1rem;
  }
  
  .phone-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-light);
    transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  
  .phone-link:hover {
    color: var(--color-accent-light);
  }
  
  .phone-link:hover::after {
    width: 100%;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .availability-badge {
    background: rgba(255, 184, 0, 0.15);
    color: var(--color-accent-light);
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 184, 0, 0.3);
  }
  
  
  .header-main {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    position: relative;
    width: 100%;
    padding-left: 200px;
  }
  
  .logo-container {
    position: absolute;
    left: 2rem;
    top: 10px;
    z-index: 20;
  }
  
  .logo a {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
  }
  
  .logo img {
    height: 120px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 25;
  }
  
  .logo:hover img {
    transform: scale(1.03);
    filter: drop-shadow(var(--glow-accent));
  }
  
  .logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--color-accent);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    transition: all 0.4s ease;
  }
  
  .logo:hover .logo-glow {
    opacity: 0.5;
    filter: blur(25px);
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  
  /* Mobile Menu Toggle - Enhanced */
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 28px;
    position: relative;
    z-index: 999;
    right: -20px;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    margin: 6px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  
  .mobile-menu-toggle span::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.5s ease;
  }
  
  .mobile-menu-toggle:hover span::after {
    left: 100%;
  }
  /* Mobile phone display on scroll */
.mobile-phone-scroll {
    display: none;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.mobile-phone-link {
    color: var(--color-accent-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.mobile-phone-link svg {
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.mobile-phone-link:hover {
    color: var(--color-accent);
    transform: scale(1.05);
}

.mobile-phone-link:hover svg {
    transform: rotate(5deg);
}
  /* Mobile menu animation states */
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--color-accent-light);
  }
  
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
  }
  
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--color-accent-light);
  }
  
  .nav-list {
    display: flex;
   
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-item {
    position: relative;
  }
  
  .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-decoration: none;
  }
  
  .nav-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.8px;
    font-weight: 500;
  }
  
  .nav-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--color-accent-light);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 0 8px var(--color-accent);
  }
  
  .nav-link:hover .nav-text,
  .nav-link.active .nav-text {
    color: var(--color-accent-light);
    transform: translateY(-2px);
  }
  
  .nav-link:hover .nav-indicator,
  .nav-link.active .nav-indicator {
    width: 100%;
  }
  
  .nav-link.active .nav-text {
    font-weight: 600;
  }
  
  .nav-link.active .nav-indicator {
    background: var(--gradient-accent);
    height: 3px;
  }
  
  .header-ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(27, 59, 117, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
  }
  
  .header-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-accent) 0.5px, transparent 0.5px);
    background-size: 15px 15px;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
  }
  
  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-contact {
      justify-content: center;
      padding: 0 1rem;
    }
  
    .contact-premium {
      justify-content: center;
      text-align: center;
    }
  
    .header-actions {
      display: none;
    }
  
    .header-main {
      padding: 1rem 1.5rem;
      justify-content: space-between;
      padding-left: 1.5rem;
    }
  
    .logo-container {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
    }
  
    .mobile-menu-toggle {
      display: block;
      margin-left: auto;
    }
    
    .nav-list {
      position: fixed;
      top: 0;
      right: -350px;
      width: 80%;
      max-width: 350px;
      height: 100vh;
      background: linear-gradient(135deg, 
        rgba(27, 59, 117, 0.95) 0%, 
        rgba(19, 43, 88, 0.98) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      padding: var(--space-xl) var(--space-lg);
      transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 998;
      border-left: 1px solid rgba(255, 184, 0, 0.3);
      overflow-y: auto;
    }
  
    .nav-list::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 184, 0, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 70% 70%, rgba(255, 184, 0, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }
    
    .mobile-menu-toggle[aria-expanded="true"] + .nav-list {
      right: 0;
      box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
    }
    
    .nav-item {
      margin: var(--space-md) 0;
      opacity: 0;
      transform: translateX(30px);
      animation: luxury-slide-in 0.4s forwards;
      animation-delay: calc(0.1s * var(--item-index, 0));
    }
    
    @keyframes luxury-slide-in {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .nav-link {
      padding: var(--space-md) var(--space-lg);
      color: white;
      font-weight: 800;
      font-size: 1.3rem;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      border-left: 4px solid transparent;
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.05);
      margin-bottom: var(--space-sm);
      flex-direction: row;
      justify-content: flex-start;
    }
  
    .nav-link:hover, 
    .nav-link.active {
      background: rgba(255, 184, 0, 0.2);
      color: var(--color-accent);
      border-left-color: var(--color-accent);
      transform: translateX(10px);
      box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    }
  
    .nav-indicator {
      display: none;
    }
  
    /* Hide availability badge on mobile for cleaner look */
    .availability-badge {
      display: none;
    }
  
    /* Adjust contact info for mobile */
    .contact-premium {
      flex-direction: column;
      gap: var(--space-xs);
      align-items: center;
    }
  
    .contact-label {
      font-size: 0.7rem;
    }
  
    .phone-link {
      font-size: 1rem;
      margin-left: 0;
    }
  
    .logo img {
      height: 70px;
    }
  
    .logo-glow {
      width: 80px;
      height: 80px;
    }
  }
  
  /* Tablet Styles */
  @media (min-width: 768px) and (max-width: 1023px) {
    .logo img {
      height: 80px;
    }
    
    .logo-glow {
      width: 90px;
      height: 90px;
    }
    
    .mobile-menu-toggle {
      display: none;
    }
    
    .nav-list {
      gap: 1.5rem;
    }
  
    .nav-link {
      font-size: 1rem;
      padding: 0.4rem 0;
    }
  
    .availability-badge {
      font-size: 0.8rem;
      padding: 0.3rem 1rem;
    }
  
    .header-main {
      padding: 1.2rem 2rem;
    }
  }
  
  /* Desktop Styles */
  @media (min-width: 1024px) {
    .mobile-menu-toggle {
      display: none;
    }
    
    .nav-list {
      gap: 2.5rem;
    }
    
    .nav-link {
      padding: 0.6rem 0;
    }
  
    .logo:hover {
      transform: scale(1.02);
    }
  
    /* Enhanced hover effects for desktop */
    .nav-link:hover {
      transform: translateY(-2px);
    }
  }
  
  /* Ultra-wide screen optimizations */
  @media (min-width: 1400px) {
    .header-main {
      padding: 2rem;
    }
  
    .nav-list {
      gap: 3rem;
    }
  }
  
  /* Accessibility and Motion Preferences */
  @media (prefers-reduced-motion: reduce) {
    .header-particles,
    .logo-glow,
    .nav-indicator,
    .btn-premium::before,
    .phone-link::after {
      animation: none;
      transition: none;
    }
    
    .nav-link:hover,
    .btn-premium:hover {
      transform: none;
    }
  }
  
  body.menu-open {
    overflow: hidden;
  }
/* Universal Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  justify-items: start;
  overflow: hidden;
  padding: 0 var(--space-md);
  will-change: transform;
  backface-visibility: hidden;
  
  /* Navy blue base */
  background: var(--color-primary);
  
  /* Hexagonal water pattern */
  background-image: 
    /* Hex grid */
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 10px,
      var(--color-primary-light) 10px,
      var(--color-primary-light) 11px
    ),
    repeating-linear-gradient(
      120deg,
      transparent,
      transparent 10px,
      var(--color-primary-light) 10px,
      var(--color-primary-light) 11px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 20px,
      rgba(255, 184, 0, 0.1) 20px,  /* Gold accents */
      rgba(255, 184, 0, 0.1) 21px
    );
  
  background-size: 35px 35px;
  
  /* Animated spray effect */
  &::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent 0%,
      var(--color-accent-light) 50%,  /* Gold spray */
      transparent 100%
    );
    animation: sprayEffect 10s ease-in-out infinite;
    opacity: 0.1;
    pointer-events: none;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  background: rgba(27, 59, 117, 0.7);
  backdrop-filter: blur(10px);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 184, 0, 0.2);
  box-shadow: 
    var(--shadow-lg),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-title {
  font-size: var(--hero-title-size);
  font-weight: var(--font-weight-black);
  margin-bottom: var(--space-md);
  background: linear-gradient(
    135deg,
    var(--color-bg) 0%,
    var(--color-accent-light) 50%,
    var(--color-accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--hero-subtitle-size);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-xl);
  font-weight: var(--font-weight-medium);
}
.cta-button {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-accent-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  animation: buttonShine 3s ease-in-out infinite;
  transform: rotate(45deg);
}
/* default hero background */

/* For larger screens, add more breathing room */
@media (min-width: 1024px) {
  .home-hero-bg {
    background-attachment: fixed;
  }
  .hero-section {
    padding-top: 220px;
  }
  .hero-content {
    padding: 90px 60px 90px 60px;
    max-width: 1200px; /* Maybe increase width too */
  }
}

/* For mobile, remove the padding */
@media (max-width: 767px) {
  .hero-content {
    text-align: center;
    margin-top: 150px;
  }
}

/* Responsive hero styles */
@media (min-width: 768px) {
  .hero-section {
    background-attachment: fixed;
  }
  
  .hero-section .container {
    padding: 0 var(--space-xl);
  }
  
  .hero-title {
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .hero-section .container {
    padding: 0 var(--space-2xl);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-section {
    background-attachment: scroll;
  }
  
}
