/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif; background: #faf8f5; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Navbar */
.navbar { background: linear-gradient(135deg, #0d4948 0%, #1a5555 100%); height: 80px; display: flex; justify-content: center; align-items: center; position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.navbar-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; padding: 0 50px; }
.navbar-logo { color: #fff; cursor: pointer; display: flex; align-items: center; transition: transform 0.3s ease; }
.navbar-logo:hover { transform: scale(1.05); }
.logo-wrapper { display: flex; align-items: center; gap: 12px; }
.logo-image { height: 60px; width: auto; object-fit: contain; }
.nav-menu { display: flex; list-style: none; gap: 2rem; margin: 0; }
.nav-item { height: 80px; display: flex; align-items: center; }
.nav-link { color: #fff; padding: 0.5rem 1rem; height: 100%; display: flex; align-items: center; font-weight: 500; position: relative; transition: color 0.3s ease; }
.nav-link::after { content: ''; position: absolute; width: 0; height: 3px; bottom: 20px; left: 50%; background-color: #ff6b35; transition: all 0.3s ease; transform: translateX(-50%); }
.nav-link:hover, .nav-link.active { color: #ff6b35; }
.nav-link:hover::after, .nav-link.active::after { width: 80%; }
.menu-icon { display: none; color: #fff; cursor: pointer; font-size: 2rem; }

/* Hero Section */
.hero-section { position: relative; height: 90vh; min-height: 600px; background: linear-gradient(rgba(13, 73, 72, 0.7), rgba(13, 73, 72, 0.7)), url('https://customer-assets.emergentagent.com/job_html-css-project-3/artifacts/ftdbzmig_ds%20hero.jpeg') center/cover; display: flex; align-items: center; justify-content: center; color: #fff; }
.hero-content { text-align: center; max-width: 900px; padding: 0 20px; animation: fadeInUp 0.8s ease forwards; }
.hero-title { font-size: 4rem; font-weight: 700; margin-bottom: 20px; font-family: 'Georgia', serif; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
.hero-subtitle { font-size: 2rem; color: #ff6b35; margin-bottom: 15px; font-weight: 600; }
.hero-description { font-size: 1.2rem; margin-bottom: 40px; color: rgba(255, 255, 255, 0.95); }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Buttons */
.btn { padding: 15px 40px; font-size: 1rem; font-weight: 600; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; display: inline-block; }
.btn-primary { background: #ff6b35; color: #fff; }
.btn-primary:hover { background: #ff8c5a; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background: #fff; color: #0d4948; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #0d4948; border: 2px solid #0d4948; }
.btn-outline:hover { background: #0d4948; color: #fff; transform: translateY(-2px); }

/* Section Styles */
.section-title { font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 15px; color: #0d4948; font-family: 'Georgia', serif; }
.section-title-white { font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 15px; color: #fff; font-family: 'Georgia', serif; }
.section-underline { width: 100px; height: 4px; background: #ff6b35; margin: 0 auto 50px; }
.section-subtitle { text-align: center; font-size: 1.1rem; color: #666; margin-bottom: 50px; }

/* Specialities Section */
.specialities-section { padding: 80px 20px; background: #faf8f5; }
.specialities-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.speciality-card { background: #fff; padding: 40px; border-radius: 12px; text-align: center; transition: all 0.3s ease; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.speciality-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); }
.speciality-icon { width: 80px; height: 80px; margin: 0 auto 25px; background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ff6b35; font-size: 2.5rem; }
.speciality-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; color: #0d4948; }
.speciality-description { color: #666; line-height: 1.6; }

/* Gallery Grid */
.gallery-preview-section { padding: 80px 20px; background: #fff; }
.gallery-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; }
.gallery-item { position: relative; height: 300px; border-radius: 12px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(13, 73, 72, 0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.gallery-overlay span { color: #fff; font-size: 1.3rem; font-weight: 600; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-button-container { text-align: center; }

/* Reviews Section */
.reviews-section { padding: 80px 20px; background: linear-gradient(135deg, #0d4948 0%, #1a5555 100%); color: #fff; }
.reviews-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.review-card { background: rgba(255, 255, 255, 0.1); padding: 30px; border-radius: 12px; backdrop-filter: blur(10px); transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1); }
.review-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.15); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.review-header { display: flex; gap: 15px; margin-bottom: 20px; }
.review-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid #ff6b35; }
.review-info { flex: 1; }
.review-info h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.review-rating { color: #ff6b35; font-size: 1.1rem; margin-bottom: 5px; letter-spacing: 2px; }
.review-date { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }
.review-text { color: rgba(255, 255, 255, 0.9); line-height: 1.7; font-size: 0.95rem; }

/* Info Section */
.info-section { padding: 80px 20px; background: linear-gradient(135deg, #0d4948 0%, #1a5555 100%); color: #fff; }
.info-grid { max-width: 1200px; margin: 0 auto 50px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.info-card { background: rgba(255, 255, 255, 0.1); padding: 40px; border-radius: 12px; text-align: center; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.info-card:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-5px); }
.info-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: rgba(255, 107, 53, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ff6b35; font-size: 2rem; }
.info-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; }
.info-card p { color: rgba(255, 255, 255, 0.9); line-height: 1.6; margin: 5px 0; }

/* Footer */
.footer { background: linear-gradient(135deg, #0d4948 0%, #1a5555 100%); color: #fff; padding: 60px 20px 20px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-section { display: flex; flex-direction: column; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-image { height: 60px; width: auto; object-fit: contain; }
.footer-description { color: rgba(255, 255, 255, 0.8); line-height: 1.6; margin-bottom: 20px; font-size: 0.95rem; }
.footer-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; color: #ff6b35; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.8); transition: all 0.3s ease; display: inline-block; }
.footer-links a:hover { color: #ff6b35; transform: translateX(5px); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

/* Lightbox */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); display: flex; align-items: center; justify-content: center; z-index: 10000; animation: fadeIn 0.3s ease; }
.lightbox-content { position: relative; max-width: 90%; max-height: 90%; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: 8px; }
.lightbox-title { text-align: center; color: #fff; font-size: 1.3rem; font-weight: 600; margin-top: 20px; }
.lightbox-close { position: absolute; top: -50px; right: 0; background: transparent; border: none; color: #fff; font-size: 3rem; cursor: pointer; transition: all 0.3s ease; }
.lightbox-close:hover { color: #ff6b35; transform: rotate(90deg); }

/* Responsive */
@media screen and (max-width: 768px) {
  .navbar-container { padding: 0 30px; }
  .nav-menu { display: none; flex-direction: column; width: 100%; position: absolute; top: 80px; left: 0; background: linear-gradient(135deg, #0d4948 0%, #1a5555 100%); gap: 0; }
  .nav-menu.active { display: flex; }
  .nav-item { height: auto; width: 100%; }
  .nav-link { width: 100%; padding: 2rem; justify-content: center; }
  .menu-icon { display: block; }
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.5rem; }
  .section-title, .section-title-white { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .specialities-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; }
}
