/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
  /* Primary Colors */
  --turquoise: #17A2B8;
  --coral: #FF9B8A;
  --light-turquoise: #B8E6EF;
  
  /* Neutrals */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --gray: #E0E0E0;
  --dark-gray: #333333;
  --charcoal: #1A1A1A;
  
  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  
  /* Typography */
  --font-heading: 'Lora', serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Font Sizes */
  --h1: 48px;
  --h2: 36px;
  --h3: 24px;
  --body: 16px;
  --small: 14px;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 48px;
  --spacing-xl: 64px;
  
  /* Container */
  --container-max-width: 1200px;
  
  /* Transitions */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--turquoise);
  color: white;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* ==========================================
   Header
   ========================================== */
.site-header {
  background: #17A2B8;
  padding: var(--spacing-sm) 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.logo img {
  height: auto;
  width: 100%;
  max-width: 280px;
}

.logo-img {
  height: auto;
  width: 100%;
  max-width: 280px;
}

.logo-svg {
  height: 70px;
  width: auto;
  max-width: 280px;
}

.logo-tagline {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4AF84;
  font-weight: 600;
  margin-top: 2px;
}

.logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Navigation */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: var(--spacing-md);
}

.menu-icon {
  display: block;
  width: 28px;
  height: 3px;
  background: #333333;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background: #333333;
  left: 0;
  transition: var(--transition);
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  bottom: -8px;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  position: static;
}

.nav-menu a {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #333333;
  padding: var(--spacing-xs) 0;
  border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #333333;
  border-bottom-color: #17A2B8;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #17A2B8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  padding: var(--spacing-xs) 0;
  border: none;
}

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

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: var(--spacing-xs) var(--spacing-sm);
  border: none;
  color: #333333;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
}

.dropdown-menu a:hover {
  background: rgba(23, 162, 184, 0.1);
  color: #333333;
}

/* Cart Icon */
.cart-icon {
  position: relative;
  margin-left: auto;
}

.cart-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--coral);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  padding: var(--spacing-xl) 0;
  background: var(--light-gray);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-overlay {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: white;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.cta-overlay:hover {
  background: #FFB8A8;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.hero-content {
  padding-left: var(--spacing-md);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xs);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--h1);
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-text p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

.services-list {
  list-style: none;
  margin: var(--spacing-sm) 0;
  padding-left: var(--spacing-sm);
}

.services-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: var(--spacing-xs);
  color: var(--text-secondary);
}

.services-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--turquoise);
  font-size: 24px;
  line-height: 1;
}

.premium-note {
  font-style: italic;
  color: var(--text-secondary);
  margin-top: var(--spacing-md);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-turquoise {
  background: var(--turquoise);
  color: white;
}

.btn-turquoise:hover {
  background: #1492A6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.btn-coral {
  background: var(--coral);
  color: white;
}

.btn-coral:hover {
  background: #FFB8A8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 155, 138, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--turquoise);
  border: 2px solid var(--turquoise);
}

.btn-outline:hover {
  background: var(--turquoise);
  color: white;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 16px;
}

/* ==========================================
   Services Preview Section
   ========================================== */
.services-preview {
  padding: var(--spacing-xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: var(--spacing-md);
  text-align: center;
}

.card-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-xs);
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--h3);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

/* ==========================================
   About Section
   ========================================== */
.about {
  padding: var(--spacing-xl) 0;
  background: var(--light-gray);
  text-align: center;
}

.about-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xs);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--h2);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.section-title.turquoise {
  color: var(--turquoise);
}

.about-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.about-headline {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto var(--spacing-md);
  line-height: 1.4;
}

/* ==========================================
   Features Section
   ========================================== */
.features {
  padding: var(--spacing-xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-md);
}

.feature-icon {
  margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================
   Social Proof Section
   ========================================== */
.social-proof {
  padding: var(--spacing-xl) 0;
  background: var(--light-gray);
  text-align: center;
}

.trustmary-widget-container {
  margin: var(--spacing-lg) 0;
}

.trustmary-iframe {
  max-width: 1000px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.review-card {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #FFD700;
  font-size: 24px;
  margin-bottom: var(--spacing-sm);
}

.review-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.review-source {
  font-size: 12px;
  color: var(--text-light);
}

/* ==========================================
   Info Sections
   ========================================== */
.info-sections {
  padding: var(--spacing-xl) 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.info-card {
  padding: var(--spacing-md);
}

.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-card p,
.info-card address {
  color: var(--text-secondary);
  font-style: normal;
  line-height: 1.8;
}

.info-card a {
  color: var(--turquoise);
}

.info-card a:hover {
  text-decoration: underline;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  margin-bottom: var(--spacing-xs);
  color: var(--text-secondary);
}

/* ==========================================
   CTA Banner
   ========================================== */
.cta-banner {
  padding: var(--spacing-xl) 0;
  background: var(--turquoise);
  text-align: center;
  color: white;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  max-width: 900px;
  margin: 0 auto var(--spacing-md);
  line-height: 1.4;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
  background: var(--charcoal);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--turquoise);
  margin-bottom: var(--spacing-sm);
}

.footer-address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--turquoise);
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 var(--spacing-xs);
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--turquoise);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 10px;
  gap: 2px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #1492A6;
  transform: translateY(-4px);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
  :root {
    --h1: 40px;
    --h2: 32px;
    --h3: 20px;
  }
  
  .hero-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: relative;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1001;
    margin-left: auto;
    order: 2;
  }
  
  .header-content {
    gap: var(--spacing-sm);
  }
  
  .logo img {
    max-width: 150px;
  }
  
  .logo-img {
    max-width: 150px;
  }
  
  .main-nav {
    position: static;
    width: auto;
  }
  
  .cart-icon {
    order: 3;
    margin-left: 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 80%;
    background: #2C3E50;
    flex-direction: column;
    display: flex;
    gap: 0;
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    align-items: stretch;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  
  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: transparent !important;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.2);
  }
  
  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: var(--spacing-sm) var(--spacing-lg);
    text-transform: capitalize;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --h1: 32px;
    --h2: 28px;
    --h3: 18px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
  }
  
  .hero {
    padding: var(--spacing-lg) 0;
  }
  
  .about-headline {
    font-size: 22px;
  }
  
  .cta-banner h2 {
    font-size: 24px;
  }
}
