/* Paradise Medical Center - Unified Brand Styles */
/* All service pages should link to this CSS file */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --background: 30 30% 99%;
  --foreground: 200 25% 15%;
  --primary: 178 45% 35%;
  --primary-dark: 178 50% 28%;
  --primary-foreground: 0 0% 100%;
  --muted: 200 15% 95%;
  --muted-foreground: 200 15% 45%;
  --border: 200 15% 88%;
  --accent: 178 40% 92%;
  --paradise-teal: 178 45% 35%;
  --paradise-teal-light: 178 40% 92%;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* Header - Unified with Homepage */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover {
  color: hsl(var(--primary));
}
.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.phone-link:hover {
  color: hsl(var(--primary));
}
.phone-link svg {
  width: 16px;
  height: 16px;
}
.cta-btn {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  color: white;
  padding: 0.6875rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px -4px hsl(200 25% 15% / 0.15);
}
.cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px -8px hsl(200 25% 15% / 0.2);
}
.menu-btn {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
}
.menu-btn svg {
  width: 24px;
  height: 24px;
}
.mobile-menu {
  display: none;
  padding: 1.5rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu.active {
  display: block;
}
.mobile-menu-link {
  display: block;
  padding: 0.75rem 0;
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
}
.mobile-menu-link:hover {
  color: hsl(var(--primary));
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--muted)) 100%);
  color: hsl(var(--foreground));
  padding: 140px 0 80px;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: hsl(var(--primary-dark));
}
.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: hsl(var(--muted-foreground));
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.3s;
}
.hero-cta:hover {
  transform: scale(1.02);
}

/* Video Section */
.video-section {
  padding: 60px 0;
  background: hsl(var(--accent));
}
.video-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: hsl(var(--primary-dark));
}
.video-container {
  max-width: 800px;
  margin: 0 auto;
}
.video-container iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
}
.video-placeholder {
  background: hsl(var(--muted));
  border-radius: 12px;
  padding: 60px;
  text-align: center;
}
.video-placeholder p {
  color: hsl(var(--primary));
  font-size: 1.1rem;
}

/* Content Sections */
.content-section {
  padding: 60px 0;
}
.content-section:nth-child(even),
.content-section.alt {
  background: hsl(var(--accent));
}
.content-section h2 {
  font-size: 2rem;
  color: hsl(var(--primary-dark));
  margin-bottom: 25px;
}
.content-section h3 {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  margin: 30px 0 15px;
}
.content-section h3 a {
  color: hsl(var(--primary));
  text-decoration: none;
}
.content-section h3 a:hover {
  color: hsl(var(--primary-dark));
  text-decoration: underline;
}
.content-section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
}
.content-section ul {
  margin: 20px 0 20px 30px;
}
.content-section li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.two-column img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Treatment/Service Grids */
.treatment-grid,
.services-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.treatment-card,
.service-card,
.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 4px solid hsl(var(--primary));
}
.treatment-card h4,
.service-card h3,
.benefit-card h4 {
  color: hsl(var(--primary-dark));
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.treatment-card p,
.service-card p,
.benefit-card p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  margin: 0;
}

/* Treatment Areas Grid (4 columns) */
.treatment-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.area-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.area-card:hover {
  border-color: hsl(var(--primary));
  transform: translateY(-3px);
}
.area-card h4 {
  color: hsl(var(--primary-dark));
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.area-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
}
.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: hsl(var(--primary-dark));
  margin-bottom: 40px;
}
.faq-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid hsl(var(--primary));
}
.faq-item h3,
.faq-item h4 {
  color: hsl(var(--primary-dark));
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.faq-item p {
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
}
.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}
.cta-button {
  display: inline-block;
  background: white;
  color: hsl(var(--primary));
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.cta-button:hover {
  background: hsl(var(--accent));
  transform: scale(1.02);
}
.btn-white {
  display: inline-block;
  background: white;
  color: hsl(var(--primary));
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}
.btn-white:hover {
  background: hsl(var(--accent));
}

/* Locations Section */
.locations-section {
  padding: 60px 0;
  background: hsl(var(--accent));
}
.locations-section h2 {
  text-align: center;
  font-size: 2rem;
  color: hsl(var(--primary-dark));
  margin-bottom: 40px;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.location-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.location-card iframe {
  width: 100%;
  height: 200px;
  border: 0;
}
.location-info {
  padding: 25px;
}
.location-info h3,
.location-info h4 {
  color: hsl(var(--primary-dark));
  margin-bottom: 10px;
}
.location-info p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 5px;
}
.location-info a {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 600;
}
.location-info a:hover {
  text-decoration: underline;
}

/* Related Services */
.related-services {
  padding: 60px 0;
}
.related-services h2 {
  text-align: center;
  font-size: 2rem;
  color: hsl(var(--primary-dark));
  margin-bottom: 40px;
}
.service-link {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  border: 2px solid hsl(var(--accent));
  display: block;
}
.service-link:hover {
  transform: translateY(-5px);
  border-color: hsl(var(--primary));
}
.service-link h4 {
  color: hsl(var(--primary-dark));
  margin-bottom: 10px;
}
.service-link p {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  margin: 0;
}

/* Before/After Section */
.before-after {
  padding: 60px 0;
  background: hsl(var(--accent));
}
.before-after h2 {
  text-align: center;
  font-size: 2rem;
  color: hsl(var(--primary-dark));
  margin-bottom: 40px;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ba-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.ba-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.ba-card .caption {
  padding: 20px;
  text-align: center;
}
.ba-card h4 {
  color: hsl(var(--primary-dark));
  margin-bottom: 5px;
}
.ba-card p {
  color: hsl(var(--muted-foreground));
  margin: 0;
  font-size: 0.95rem;
}

/* Warning Signs (for skin cancer page) */
.warning-signs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.sign-card {
  background: white;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 4px solid hsl(var(--primary));
}
.sign-card .letter {
  font-size: 3rem;
  font-weight: bold;
  color: hsl(var(--primary-dark));
  margin-bottom: 10px;
}
.sign-card h4 {
  color: hsl(var(--primary));
  margin-bottom: 8px;
  font-size: 1rem;
}
.sign-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  margin: 0;
}

/* Cancer/Type Cards */
.cancer-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.type-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.type-card h4 {
  color: hsl(var(--primary-dark));
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.type-card p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  margin-bottom: 15px;
}
.type-card ul {
  margin: 0 0 0 20px;
}
.type-card li {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* Location Highlight */
.location-highlight {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid hsl(var(--primary));
}
.location-highlight h3 {
  color: hsl(var(--primary-dark));
  margin-bottom: 10px;
}
.location-highlight .address {
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 15px;
}

/* Footer */
footer {
  background: hsl(var(--primary-dark));
  color: white;
  padding: 50px 0 20px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.footer-section,
.footer-col {
  color: white;
}
.footer-section h4,
.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
}
.footer-section p,
.footer-section a,
.footer-col p,
.footer-col a {
  color: hsl(var(--accent));
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.footer-section a:hover,
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid hsl(var(--primary));
  text-align: center;
  color: hsl(var(--accent));
}

/* Responsive */
@media (max-width: 1024px) {
  .treatment-grid,
  .services-grid,
  .benefits-grid,
  .cancer-types,
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .treatment-areas {
    grid-template-columns: repeat(2, 1fr);
  }
  .warning-signs {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-content,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .nav-desktop {
    display: none;
  }
  .header-cta-wrap {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .two-column,
  .treatment-grid,
  .services-grid,
  .benefits-grid,
  .treatment-areas,
  .ba-grid,
  .cancer-types,
  .locations-grid,
  .footer-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .warning-signs {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-container iframe {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .warning-signs {
    grid-template-columns: 1fr;
  }
}
