/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #333; line-height: 1.6; background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== CSS VARIABLES ========== */
:root {
  --green-dark: #3d6b4f;
  --green-mid: #4a8c62;
  --green-light: #e8f0eb;
  --green-accent: #5a9e6f;
  --gold: #c9a96e;
  --text-dark: #2c2c2c;
  --text-muted: #6b7b72;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 { font-family: Georgia, 'Times New Roman', serif; color: var(--text-dark); line-height: 1.2; }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green-mid); margin-bottom: 12px;
}
.section-title { font-size: 2.4rem; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary { background: var(--green-dark); color: #fff; }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: #fff; }
.btn-white { background: #fff; color: var(--green-dark); }
.btn-white:hover { background: var(--green-light); }

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700; color: var(--green-dark); letter-spacing: 1px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); transition: var(--transition); position: relative; }
.nav-links a:hover { color: var(--green-mid); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--green-mid); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px; font-size: 0.85rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-dark); transition: var(--transition); }

/* ========== HERO ========== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--green-light) 0%, #f5f9f6 50%, #fff 100%);
  position: relative; overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green-mid); margin-bottom: 16px; }
.hero h1 { font-size: 3.2rem; margin-bottom: 20px; color: var(--text-dark); }
.hero h1 em { font-style: italic; color: var(--green-dark); }
.hero p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 520px; object-fit: cover; }
.hero-image::before {
  content: ''; position: absolute; top: -20px; right: -20px; width: 100%; height: 100%;
  border: 2px solid var(--green-mid); border-radius: var(--radius); z-index: -1; opacity: 0.3;
}
.hero-badge {
  position: absolute; bottom: 30px; left: -30px; background: #fff; padding: 16px 24px;
  border-radius: 12px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-badge-icon { width: 48px; height: 48px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hero-badge-text strong { display: block; font-size: 1.1rem; }
.hero-badge-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ========== SKIN CARE SECTION ========== */
.skin-care { padding: 100px 0; }
.skin-care .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.skin-care-image { position: relative; }
.skin-care-image img { border-radius: var(--radius); width: 100%; height: 480px; object-fit: cover; }
.skin-care-image .exp-badge {
  position: absolute; bottom: -20px; right: -20px; background: var(--green-dark); color: #fff;
  padding: 20px 28px; border-radius: 12px; text-align: center;
}
.skin-care-image .exp-badge strong { font-size: 2rem; display: block; }
.skin-care-image .exp-badge span { font-size: 0.8rem; opacity: 0.8; }
.skin-care-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.skin-care-content > p { color: var(--text-muted); margin-bottom: 28px; }
.feature-list { margin-bottom: 32px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; }
.feature-list li .check { width: 24px; height: 24px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green-mid); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.signature { font-family: Georgia, serif; font-style: italic; font-size: 1.3rem; color: var(--green-dark); margin-top: 20px; }

/* ========== STATS BAR ========== */
.stats {
  padding: 60px 0;
  background: var(--green-dark);
  color: #fff;
}
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item h3 { font-size: 2.8rem; color: #fff; margin-bottom: 8px; }
.stat-item p { font-size: 0.9rem; opacity: 0.8; }

/* ========== SERVICES ========== */
.services { padding: 100px 0; background: var(--green-light); }
.services .section-header { text-align: center; margin-bottom: 50px; }
.services .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 240px; object-fit: cover; }
.service-card-body { padding: 28px; }
.service-card-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.service-card-body .price { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); }

/* ========== BREAST ENHANCEMENT ========== */
.enhancement { padding: 100px 0; }
.enhancement .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.enhancement-image img { border-radius: var(--radius); width: 100%; height: 500px; object-fit: cover; }
.enhancement-content .section-label { margin-bottom: 12px; }
.enhancement-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.enhancement-content > p { color: var(--text-muted); margin-bottom: 24px; }
.enhancement-features { margin-bottom: 28px; }
.enhancement-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; }
.enhancement-features li::before { content: '✓'; color: var(--green-mid); font-weight: 700; }

/* ========== TIMELINE ========== */
.timeline-section { padding: 100px 0; background: var(--green-dark); color: #fff; }
.timeline-section .section-label { color: var(--gold); }
.timeline-section .section-title { color: #fff; }
.timeline-section .section-subtitle { color: rgba(255,255,255,0.7); }
.timeline-section .section-header { text-align: center; margin-bottom: 60px; }
.timeline-section .section-subtitle { margin: 0 auto; }
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: rgba(255,255,255,0.2); transform: translateX(-50%);
}
.timeline-item { display: flex; align-items: center; margin-bottom: 40px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content { width: 45%; padding: 24px; background: rgba(255,255,255,0.08); border-radius: 12px; backdrop-filter: blur(4px); }
.timeline-content h4 { font-size: 1.1rem; margin-bottom: 8px; color: #fff; }
.timeline-content p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.timeline-dot {
  width: 48px; height: 48px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  font-size: 1.1rem; color: var(--green-dark); position: absolute; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.timeline-image { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; margin: 0 auto; border: 4px solid rgba(255,255,255,0.2); }
.timeline-image img { width: 100%; height: 100%; object-fit: cover; }

/* ========== GALLERY ========== */
.gallery { padding: 100px 0; }
.gallery .section-header { text-align: center; margin-bottom: 50px; }
.gallery .section-subtitle { margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery .btn { display: block; margin: 0 auto; }

/* ========== TRANSFORM ========== */
.transform { padding: 100px 0; background: var(--green-light); }
.transform .section-header { text-align: center; margin-bottom: 50px; }
.transform .section-subtitle { margin: 0 auto; }
.transform-slider { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 800px; margin: 0 auto; }
.transform-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.transform-card img { width: 100%; height: 360px; object-fit: cover; }
.transform-label {
  position: absolute; top: 16px; left: 16px; background: var(--green-dark); color: #fff;
  padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
}
.transform-card { position: relative; }

/* ========== FAQ ========== */
.faq { padding: 100px 0; }
.faq .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.faq-content .section-label { margin-bottom: 12px; }
.faq-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.faq-content > p { color: var(--text-muted); margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid #eee; border-radius: 12px; overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--green-mid); box-shadow: var(--shadow); }
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-weight: 600; font-size: 0.95rem; transition: var(--transition);
}
.faq-question:hover { color: var(--green-mid); }
.faq-question .arrow { transition: var(--transition); font-size: 1.2rem; }
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 100px 0; background: var(--green-light); }
.testimonials .section-header { text-align: center; margin-bottom: 50px; }
.testimonials .section-subtitle { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-size: 4rem; font-family: Georgia, serif; color: var(--green-light); line-height: 1;
}
.testimonial-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; font-style: italic; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--green-dark); font-size: 1.1rem; }
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }

/* ========== PRICING ========== */
.pricing { padding: 100px 0; }
.pricing .section-header { text-align: center; margin-bottom: 50px; }
.pricing .section-subtitle { margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pricing-card {
  background: #fff; border: 1px solid #eee; border-radius: var(--radius);
  padding: 40px 32px; text-align: center; transition: var(--transition); position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--green-mid); border-width: 2px; }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green-dark); color: #fff; padding: 4px 20px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.pricing-icon { font-size: 2rem; margin-bottom: 16px; }
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .price-tag { font-size: 2.8rem; font-weight: 700; color: var(--green-dark); margin: 16px 0; }
.pricing-card .price-tag span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-features { text-align: left; margin: 24px 0; }
.pricing-features li { padding: 8px 0; font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--green-mid); font-weight: 700; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ========== BOOKING ========== */
.booking { padding: 100px 0; background: var(--green-dark); color: #fff; }
.booking .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.booking-content .section-label { color: var(--gold); }
.booking-content h2 { font-size: 2.2rem; color: #fff; margin-bottom: 16px; }
.booking-content > p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.booking-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.booking-info-item { display: flex; align-items: center; gap: 14px; }
.booking-info-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.booking-info-item strong { display: block; font-size: 0.9rem; }
.booking-info-item span { font-size: 0.8rem; opacity: 0.7; }
.booking-form {
  background: #fff; border-radius: var(--radius); padding: 40px; color: var(--text-dark);
}
.booking-form h3 { font-size: 1.4rem; margin-bottom: 8px; }
.booking-form > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px;
  font-size: 0.9rem; transition: var(--transition); font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(74,140,98,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ========== BLOG ========== */
.blog { padding: 100px 0; }
.blog .section-header { text-align: center; margin-bottom: 50px; }
.blog .section-subtitle { margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: #fff; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 0.8rem; color: var(--green-mid); font-weight: 600; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card-body p { font-size: 0.85rem; color: var(--text-muted); }

/* ========== CLIENTS ========== */
.clients { padding: 60px 0; background: var(--green-light); }
.clients .container { text-align: center; }
.clients h3 { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 30px; font-family: 'Segoe UI', sans-serif; font-weight: 500; }
.clients-logos { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; opacity: 0.5; }
.clients-logos span { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; color: var(--text-dark); letter-spacing: 1px; }

/* ========== NEWSLETTER ========== */
.newsletter { padding: 80px 0; background: var(--green-dark); color: #fff; text-align: center; }
.newsletter h2 { font-size: 2rem; color: #fff; margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; gap: 12px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border: none; border-radius: 50px; font-size: 0.95rem;
  font-family: inherit;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form .btn { white-space: nowrap; }

/* ========== FOOTER ========== */
.footer { padding: 80px 0 30px; background: #2c2c2c; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
  font-size: 1.1rem;
}
.footer-social a:hover { background: var(--green-mid); }
.footer-col h4 { font-size: 1rem; margin-bottom: 20px; font-family: 'Segoe UI', sans-serif; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ========== ANIMATIONS ========== */
.fade-in-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero .container, .skin-care .container, .enhancement .container,
  .faq .container, .booking .container { grid-template-columns: 1fr; }
  .services-grid, .pricing-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.active {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 24px; box-shadow: var(--shadow-lg); gap: 16px;
  }
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .services-grid, .gallery-grid, .pricing-grid, .blog-grid,
  .testimonials-grid, .transform-slider { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .timeline::before { left: 24px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; align-items: flex-start; padding-left: 60px; }
  .timeline-content { width: 100%; }
  .timeline-dot { left: 24px; transform: translateX(-50%); }
}


/* ========== PAGE HERO ========== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--green-light) 0%, #f5f9f6 50%, #fff 100%);
  text-align: center;
}
.page-hero-title { font-size: 2.8rem; margin-bottom: 16px; }
.page-hero-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ========== ABOUT PAGE ========== */
.about-story { padding: 100px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story-image img { border-radius: var(--radius); width: 100%; height: 480px; object-fit: cover; }
.about-story-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.about-story-content > p { color: var(--text-muted); margin-bottom: 16px; }
.about-values { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.about-value-item { display: flex; align-items: flex-start; gap: 14px; }
.about-value-icon { width: 36px; height: 36px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
.about-value-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.about-value-item span { font-size: 0.85rem; color: var(--text-muted); }

.team-section { padding: 100px 0; background: var(--green-light); }
.team-section .section-header { text-align: center; margin-bottom: 50px; }
.team-section .section-subtitle { margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); text-align: center; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-image img { width: 100%; height: 280px; object-fit: cover; }
.team-card-body { padding: 24px; }
.team-card-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--green-mid); font-weight: 600; display: block; margin-bottom: 10px; }
.team-card-body p { font-size: 0.85rem; color: var(--text-muted); }

/* ========== SERVICES PAGE ========== */
.services-detail { padding: 100px 0; }
.service-detail-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }
.service-detail-image img { border-radius: var(--radius); width: 100%; height: 400px; object-fit: cover; }
.service-detail-content h2 { font-size: 2rem; margin-bottom: 16px; }
.service-detail-content > p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.service-price { font-size: 1.1rem; color: var(--text-muted); margin-top: 20px; }
.service-price strong { font-size: 1.6rem; color: var(--green-dark); }

/* ========== GALLERY PAGE ========== */
.gallery-filter { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px; border: 2px solid #eee; border-radius: 50px; background: #fff;
  font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--text-muted);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--green-mid); color: var(--green-dark); background: var(--green-light); }
.gallery-grid-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item { position: relative; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(61,107,79,0.7); display: flex;
  align-items: center; justify-content: center; opacity: 0; transition: var(--transition);
}
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 0.95rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item img { transition: var(--transition); }

/* ========== BLOG PAGE ========== */
.blog-page { padding: 100px 0; }
.blog-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.blog-article { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 30px; transition: var(--transition); }
.blog-article:hover { box-shadow: var(--shadow-lg); }
.blog-article-image img { width: 100%; height: 300px; object-fit: cover; }
.blog-article-body { padding: 32px; }
.blog-article-body h2 { font-size: 1.5rem; margin-bottom: 14px; }
.blog-article-body p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.blog-article-body .btn { margin-top: 8px; }

.blog-sidebar { position: sticky; top: 90px; align-self: start; }
.sidebar-widget { background: #fff; border: 1px solid #eee; border-radius: var(--radius); padding: 28px; margin-bottom: 24px; }
.sidebar-widget h3 { font-size: 1.1rem; margin-bottom: 16px; }
.sidebar-categories li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories li a { font-size: 0.9rem; color: var(--text-dark); transition: var(--transition); }
.sidebar-categories li a:hover { color: var(--green-mid); }
.sidebar-categories li span { font-size: 0.8rem; color: var(--text-muted); background: var(--green-light); padding: 2px 10px; border-radius: 10px; }
.sidebar-popular a { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; align-items: center; }
.sidebar-popular a:last-child { border-bottom: none; }
.sidebar-popular a img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.sidebar-popular a strong { display: block; font-size: 0.85rem; margin-bottom: 4px; }
.sidebar-popular a span { font-size: 0.75rem; color: var(--text-muted); }
.sidebar-newsletter p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.sidebar-newsletter input { width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 0.85rem; margin-bottom: 10px; }
.sidebar-newsletter .btn { width: 100%; justify-content: center; }

/* ========== CONTACT PAGE ========== */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h2 { font-size: 2rem; margin-bottom: 12px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 28px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon { width: 48px; height: 48px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item span { display: block; font-size: 0.85rem; color: var(--text-muted); }
.contact-social h4 { font-size: 1rem; margin-bottom: 12px; }
.contact-social-links { display: flex; gap: 12px; }
.contact-social-links a { padding: 8px 16px; background: var(--green-light); border-radius: 20px; font-size: 0.85rem; color: var(--green-dark); font-weight: 600; transition: var(--transition); }
.contact-social-links a:hover { background: var(--green-dark); color: #fff; }

.contact-form-wrapper { background: #fff; border: 1px solid #eee; border-radius: var(--radius); padding: 40px; }
.contact-form-wrapper h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-form-wrapper > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }

.map-section { padding: 0 0 100px; }
.map-placeholder {
  background: var(--green-light); border-radius: var(--radius); padding: 80px 40px;
  text-align: center;
}
.map-placeholder-inner h3 { font-size: 1.3rem; margin-bottom: 8px; margin-top: 12px; }
.map-placeholder-inner p { color: var(--text-muted); font-size: 0.95rem; }
.map-pin { font-size: 3rem; }

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 1024px) {
  .about-story-grid, .service-detail-item, .service-detail-item.reverse,
  .contact-grid, .blog-page-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .service-detail-item.reverse { direction: ltr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 768px) {
  .page-hero-title { font-size: 2rem; }
  .team-grid, .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
  .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid, .gallery-grid-4 { grid-template-columns: 1fr; }
}
