/* ============================================
   AGELESS SCULPTING & WELLNESS - Main Stylesheet
   Color Palette (matching original site):
   - Primary Red: #dd1515 (buttons, links, CTAs, accents)
   - Header/Accent Red: #dd1515 (header, buttons, links, CTAs)
   - Dark Text: #333333
   - Body Text: #535353
   - Light Gray: #f8f8f8
   - Beige: #ece8da (hover states, section BGs)
   - White: #ffffff
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  color: #535353;
  line-height: 1.7;
  font-size: 16px;
  background: #fff;
}

a {
  color: #dd1515;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b01010;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.3;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: #333;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-phone {
  color: #fff;
  font-weight: 600;
}

.top-phone:hover {
  color: #dd1515;
}

.top-social {
  display: flex;
  gap: 15px;
}

.top-social a {
  color: #fff;
  transition: color 0.3s;
}

.top-social a:hover {
  color: #dd1515;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.main-header {
  background: #dd1515;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 11px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  padding: 8px 0;
  background: rgba(221, 21, 21, 0.95);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

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

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
}

.main-nav a {
  font-family: 'Source Sans 3', sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 15px;
  display: block;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(0,0,0,0.15);
  border-radius: 4px;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #faf9f9;
  min-width: 240px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  z-index: 100;
}

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

.dropdown li {
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  text-align: left;
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown a {
  padding: 12px 20px;
  font-size: 14px;
  text-transform: none;
  color: #535353;
  background: transparent;
  border-radius: 0;
  text-align: left;
  width: 100%;
  justify-content: flex-start;
}

.dropdown a:hover {
  background: #eee;
  color: #dd1515;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 850px;
}

.hero h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.hero-phone {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 1px;
}

.hero-phone:hover {
  color: #dd1515;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 3px 0px 11px 0px rgba(0,0,0,0.25);
}

.btn-primary {
  background: #dd1515;
  color: #fff;
  border-color: #dd1515;
}

.btn-primary:hover {
  background: #ece8da;
  border-color: #000;
  color: #000;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: #ece8da;
  color: #000;
  border-color: #000;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 45px;
  font-size: 16px;
}

/* ============================================
   ABOUT / WHAT IS ULTRASLIM SECTION
   ============================================ */
.about-section {
  padding: 80px 0;
  background: #fff;
}

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

.section-grid.reverse {
  direction: rtl;
}

.section-grid.reverse > * {
  direction: ltr;
}

.section-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.section-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #535353;
}

.section-image img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-placeholder {
  background: linear-gradient(135deg, #e8f7f8 0%, #d4eff1 100%);
  border-radius: 8px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder.dark {
  background: linear-gradient(135deg, #1a3a4a 0%, #2d6b73 100%);
}

.image-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #dd1515;
  font-style: italic;
  white-space: nowrap;
}

.image-placeholder.dark::after {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.benefits-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #dd1515;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  padding: 80px 0;
  background: #fff;
}

blockquote {
  border-left: 4px solid #dd1515;
  padding: 20px 25px;
  background: #f8f9fa;
  border-radius: 0 8px 8px 0;
  margin-top: 20px;
}

blockquote p {
  font-style: italic;
  font-size: 16px;
  color: #444;
  margin-bottom: 8px !important;
}

blockquote cite {
  font-size: 14px;
  color: #888;
  font-style: normal;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 80px 0;
  background: #ece8da;
}

.services-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
}

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

.service-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 8px;
  text-align: center;
  color: #333;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border: 1px solid #ddd;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.service-card:hover {
  border-color: #dd1515;
  color: #333;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(221,21,21,0.15);
}

.service-card .service-icon svg {
  stroke: #dd1515;
}

.service-card h3 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.service-card:hover h3 {
  color: #dd1515;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-section {
  padding: 80px 0;
  background: #fff;
}

.comparison-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.comparison-table thead th {
  background: #333;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.comparison-table thead th.highlight {
  background: #dd1515;
}

.comparison-table td.highlight {
  color: #dd1515;
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background: #f8f9fa;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 70px 0;
  background: #dd1515;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.cta-banner a {
  color: #fff;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #dd1515;
  border-color: #fff;
}

.cta-banner .btn-primary:hover {
  background: #ece8da;
  color: #000;
  border-color: #000;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f8f8;
  color: #dd1515;
}

.faq-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  color: #dd1515;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: #2a2a2a;
  color: #ccc;
  padding: 60px 0 0;
}

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

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: #aaa;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: #dd1515;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-col p a {
  color: #dd1515;
}

.hours-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.hours-list span {
  font-weight: 600;
  color: #ddd;
  min-width: 90px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: #aaa;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #dd1515;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #888;
  line-height: 1.8;
}

.footer-bottom a {
  color: #aaa;
}

.footer-bottom a:hover {
  color: #dd1515;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-grid.reverse {
    direction: ltr;
  }

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

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #dd1515;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
  }

  .main-nav a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.1);
  }

  .dropdown a {
    color: #fff;
  }

  .hero {
    min-height: 500px;
  }

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

  .hero p {
    font-size: 16px;
  }

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

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

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

  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
    font-size: 14px;
  }

  h2 {
    font-size: 26px !important;
  }

  .cta-banner h2 {
    font-size: 26px !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .logo-text {
    font-size: 16px;
  }
}
