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

:root {
  --color-primary: #7B9E87;
  --color-primary-light: #A8C5B5;
  --color-primary-dark: #5A7A64;
  --color-accent: #E8A598;
  --color-accent-light: #F5D5CD;
  --color-accent-dark: #D08575;
  --color-cream: #FDF8F3;
  --color-white: #FFFFFF;
  --color-text: #3D4A3F;
  --color-text-light: #6B7A6D;
  --color-border: #E5E8E5;
  --color-bg-light: #F9F7F4;
  --color-bg-section: #F0EDE8;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Quicksand', 'Segoe UI', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 3.5rem;
  --space-xxl: 5rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50%;
  --shadow-soft: 0 4px 20px rgba(123, 158, 135, 0.1);
  --shadow-medium: 0 8px 30px rgba(123, 158, 135, 0.15);
  --shadow-hover: 0 12px 40px rgba(123, 158, 135, 0.2);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 500; color: var(--color-text); background-color: var(--color-cream); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 500; line-height: 1.3; color: var(--color-text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); margin-bottom: var(--space-sm); }
p { margin-bottom: var(--space-sm); font-size: 1.05rem; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-dark); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(253, 248, 243, 0.95); backdrop-filter: blur(10px); transition: box-shadow var(--transition-normal); }
.header.scrolled { box-shadow: var(--shadow-soft); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: var(--space-sm) var(--space-md); max-width: 1200px; margin: 0 auto; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--color-primary); display: flex; align-items: center; gap: 0.5rem; }
.logo span { color: var(--color-accent); }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary)); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; }
.nav-links { display: flex; list-style: none; gap: var(--space-lg); align-items: center; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--color-text); position: relative; padding: 0.5rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--color-accent); transition: width var(--transition-normal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--color-primary); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-menu-btn span { display: block; width: 25px; height: 3px; background: var(--color-text); margin: 5px 0; border-radius: 2px; transition: var(--transition-fast); }

.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg-light) 100%); }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 150%; background: radial-gradient(ellipse, var(--color-accent-light) 0%, transparent 70%); opacity: 0.5; z-index: 0; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -20%; width: 60%; height: 100%; background: radial-gradient(ellipse, var(--color-primary-light) 0%, transparent 70%); opacity: 0.3; z-index: 0; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; position: relative; z-index: 1; }
.hero-text { animation: fadeInUp 0.8s ease forwards; }
.hero-badge { display: inline-block; background: var(--color-accent-light); color: var(--color-accent-dark); padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: var(--space-md); }
.hero-title { margin-bottom: var(--space-md); }
.hero-title span { color: var(--color-primary); }
.hero-subtitle { font-size: 1.2rem; color: var(--color-text-light); margin-bottom: var(--space-md); line-height: 1.8; }
.hero-image { position: relative; animation: fadeInRight 0.8s ease forwards; animation-delay: 0.2s; opacity: 0; }
.hero-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-medium); }
.hero-image-wrapper::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100%; height: 100%; background: var(--color-primary-light); border-radius: var(--radius-lg); z-index: -1; }
.hero-image img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }
.floating-element { position: absolute; z-index: 2; animation: float 6s ease-in-out infinite; }
.floating-element.el-1 { top: 20%; right: 10%; width: 60px; height: 60px; background: var(--color-accent); border-radius: var(--radius-full); opacity: 0.6; }
.floating-element.el-2 { bottom: 30%; left: 5%; width: 40px; height: 40px; background: var(--color-primary-light); border-radius: var(--radius-full); opacity: 0.5; animation-delay: 2s; }
.floating-element.el-3 { top: 40%; left: 15%; width: 25px; height: 25px; background: var(--color-accent-light); border-radius: var(--radius-full); opacity: 0.7; animation-delay: 4s; }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 50px; font-family: var(--font-body); font-weight: 600; font-size: 1rem; text-decoration: none; transition: all var(--transition-normal); cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); color: white; box-shadow: 0 4px 15px rgba(123, 158, 135, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(123, 158, 135, 0.4); color: white; }
.btn-secondary { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: white; }
.btn-group { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

section { padding: var(--space-xxl) 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto var(--space-lg); }
.section-badge { display: inline-block; background: var(--color-primary-light); color: var(--color-primary-dark); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: var(--space-sm); }
.section-subtitle { color: var(--color-text-light); font-size: 1.1rem; margin-top: var(--space-sm); }
.section-light { background: var(--color-cream); }
.section-alt { background: var(--color-bg-section); position: relative; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.service-card { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); padding: var(--space-md) var(--space-md) var(--space-md) var(--space-md); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); transition: all var(--transition-normal); position: relative; overflow: hidden; text-decoration: none; color: white; display: block; min-height: 180px; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.service-icon { position: absolute; bottom: 10px; right: 10px; width: 70px; height: 70px; border-radius: var(--radius-md); overflow: hidden; opacity: 0.9; }
.service-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.service-card h3 { color: white; margin-bottom: var(--space-xs); font-size: 1.3rem; }
.service-card p { color: rgba(255,255,255,0.9); margin-bottom: 0; font-size: 0.95rem; max-width: calc(100% - 80px); }
.service-link { display: inline-flex; align-items: center; gap: 0.5rem; color: white; font-weight: 600; margin-top: var(--space-sm); }
.service-link:hover { color: var(--color-accent-light); }

.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-lg); align-items: center; }
.about-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-medium); }
.about-image-wrapper::after { content: ''; position: absolute; bottom: -15px; left: -15px; width: 100%; height: 100%; background: var(--color-accent-light); border-radius: var(--radius-lg); z-index: -1; }
.about-image img { width: 100%; height: auto; display: block; }
.about-content p { color: var(--color-text-light); }
.about-highlight { background: var(--color-bg-light); padding: var(--space-md); border-radius: var(--radius-md); margin: var(--space-md) 0; border-left: 4px solid var(--color-primary); }
.about-highlight p { margin: 0; font-style: italic; color: var(--color-text); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.feature-item { text-align: center; padding: var(--space-lg); background: var(--color-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); transition: transform var(--transition-normal); }
.feature-item:hover { transform: translateY(-5px); }
.feature-icon { width: 80px; height: 80px; margin: 0 auto var(--space-md); background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent)); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 2rem; }

.quote-section { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: white; text-align: center; position: relative; overflow: hidden; }
.quote-section::before { content: '"'; position: absolute; font-size: 20rem; font-family: var(--font-heading); opacity: 0.1; top: -50px; left: 50%; transform: translateX(-50%); }
.quote-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.quote-text { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; font-style: italic; line-height: 1.5; margin-bottom: var(--space-md); }
.quote-author { font-size: 1rem; opacity: 0.9; }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 30px; left: 15%; right: 15%; height: 2px; background: var(--color-border); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); color: white; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin: 0 auto var(--space-md); box-shadow: var(--shadow-soft); }
.process-step p { color: var(--color-text-light); font-size: 0.95rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--space-lg); }
.contact-info { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: white; padding: var(--space-xl); border-radius: var(--radius-lg); }
.contact-info h3 { color: white; margin-bottom: var(--space-md); font-size: 1.8rem; }
.contact-info p { opacity: 0.9; margin-bottom: var(--space-lg); }
.contact-item { display: flex; align-items: flex-start; gap: var(--space-sm); margin-bottom: var(--space-md); }
.contact-item-icon { width: 45px; height: 45px; background: rgba(255, 255, 255, 0.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-content h4 { color: white; font-family: var(--font-body); font-weight: 600; margin-bottom: 0.25rem; }
.contact-item-content p { margin: 0; opacity: 0.9; }
.contact-item-content a { color: white; }
.contact-form-wrapper { background: var(--color-white); padding: var(--space-xl); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: var(--space-md); }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--color-text); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1rem 1.25rem; border: 2px solid var(--color-border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; transition: border-color var(--transition-fast); background: var(--color-bg-light); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--color-primary); background: var(--color-white); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

.cta-section { background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%); color: white; text-align: center; }
.cta-section h2 { color: white; margin-bottom: var(--space-sm); }
.cta-section p { opacity: 0.95; max-width: 600px; margin: 0 auto var(--space-lg); font-size: 1.15rem; }
.cta-section .btn-primary { background: white; color: var(--color-accent-dark); }
.cta-section .btn-primary:hover { background: var(--color-cream); }

.footer { background: var(--color-text); color: white; padding: var(--space-lg) 0 var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-lg); margin-bottom: var(--space-md); }
.footer-brand .logo { color: white; margin-bottom: var(--space-sm); }
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.footer h4 { color: white; font-family: var(--font-body); font-weight: 600; margin-bottom: var(--space-md); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255, 255, 255, 0.7); transition: color var(--transition-fast); }
.footer-links a:hover { color: white; }
.footer-bottom { padding-top: var(--space-md); border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm); }
.footer-bottom p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; margin: 0; }
.footer-bottom-links { display: flex; gap: var(--space-md); }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer-bottom-links a:hover { color: white; }

.page-header { background: linear-gradient(135deg, var(--color-bg-section) 0%, var(--color-cream) 100%); padding: 130px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at right, var(--color-primary-light) 0%, transparent 70%); opacity: 0.3; }
.page-header h1 { margin-bottom: var(--space-sm); position: relative; }
.page-header p { color: var(--color-text-light); font-size: 1.2rem; max-width: 600px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: var(--space-md); font-size: 0.9rem; position: relative; }
.breadcrumb a { color: var(--color-text-light); }

.offering-detail { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; padding: var(--space-lg) 0; }
.offering-detail:nth-child(even) { direction: rtl; }
.offering-detail:nth-child(even) > * { direction: ltr; }
.offering-detail-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-medium); }
.offering-detail-image img { width: 100%; height: auto; display: block; }
.offering-list { list-style: none; margin: var(--space-md) 0; }
.offering-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; padding: 0.5rem 0; }
.offering-list li svg { color: var(--color-primary); flex-shrink: 0; margin-top: 0.25rem; }

.qualifications { list-style: none; margin: var(--space-md) 0; }
.qualifications li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--color-text-light); }
.qualifications li svg { color: var(--color-primary); flex-shrink: 0; margin-top: 0.25rem; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .hero-content, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: var(--space-md); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .offering-detail, .offering-detail:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px; height: 100vh; background: var(--color-white); flex-direction: column; justify-content: center; padding: var(--space-lg); box-shadow: var(--shadow-medium); transition: right var(--transition-normal); gap: var(--space-md); z-index: 1000; }
  .nav-links.active { right: 0; }
  .mobile-menu-btn { display: block; z-index: 1001; }
  .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
  .hero { padding-top: 120px; min-height: auto; padding-bottom: var(--space-xl); }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: var(--space-xl) 0; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-sm); }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .contact-info, .contact-form-wrapper { padding: var(--space-lg); }
  .services-grid { grid-template-columns: 1fr; }
}

.nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: all var(--transition-normal); z-index: 999; }
.nav-overlay.active { opacity: 1; visibility: visible; }
.mt-lg { margin-top: var(--space-lg); }
.text-center { text-align: center; }

.info-box { display: flex; gap: var(--space-md); flex-wrap: wrap; background: var(--color-bg-light); padding: var(--space-sm) var(--space-md); border-radius: var(--radius-md); margin: var(--space-md) 0; border-left: 4px solid var(--color-primary); }
.info-box-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.info-box-item strong { color: var(--color-primary-dark); }
