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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 90px;
}

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

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  order: 1;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.logo-placeholder img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  flex-wrap: nowrap;
  order: 2;
  flex: 1;
  justify-content: center;
  margin: 0 2rem;
}

.nav-item {
  white-space: nowrap;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: block;
}

.nav-link:hover {
  color: #ff6b35;
  background-color: rgba(255, 107, 53, 0.1);
}

.nav-link.active {
  color: #ff6b35;
  font-weight: 600;
  background-color: rgba(255, 107, 53, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  order: 4;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.nav-enquire-btn {
  order: 3;
  flex-shrink: 0;
}

.nav-enquire-btn .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-enquire-btn .btn i {
  margin-right: 0.5rem;
}

/* Hero Section */
.hero {
  padding: 80px 0 80px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe4d6 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ff6b35;
  border: 2px solid #ff6b35;
}

.btn-secondary:hover {
  background: #ff6b35;
  color: white;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

.full-width-text {
  font-size: 1.2rem;
  color: #4a5568;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 4px solid #ff6b35;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d1810;
  margin-bottom: 1rem;
}

.service-description {
  color: #4a5568;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #3f3835;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-description {
  color: #a0aec0;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: white;
}

.footer-links li i {
  font-size: 1rem;
}

.footer-section .social-links {
  margin-top: 1.5rem;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #4a5568;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #ff6b35;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 2rem;
  text-align: center;
  color: #a0aec0;
}

/* Page Header Styles */
.page-header {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe4d6 100%);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Page Styles */
.services-content {
  padding: 80px 0;
}

.services-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.services-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1rem;
}

.services-detailed {
  margin-bottom: 4rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-detail-icon i {
  font-size: 2rem;
  color: white;
}

.service-detail h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #2d1810;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-cta {
  text-align: center;
  background: #fff8f5;
  padding: 3rem;
  border-radius: 15px;
}

.services-cta h2 {
  font-size: 2rem;
  color: #2d1810;
  margin-bottom: 1rem;
}

/* About Page Styles */
.about-content {
  padding: 80px 0;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

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

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

.about-text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1.5rem;
}

.about-text-content p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-image-content img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.values-section {
  margin: 4rem 0;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon i {
  font-size: 1.5rem;
  color: white;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1810;
  margin-bottom: 1rem;
}

.team-section {
  margin: 4rem 0;
  text-align: center;
}

/* ===== UPDATED TEAM GRID - 4 COLUMNS IN ONE ROW ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}
/* ===== END OF TEAM GRID UPDATES ===== */

.team-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1810;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #ff6b35;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  color: #4a5568;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-page {
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info-section h3 {
  font-size: 2rem;
  color: #2d1810;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-section h3 {
  font-size: 2rem;
  color: #2d1810;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2d1810;
}

.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ffe4d6;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.emergency-contact {
  margin-top: 4rem;
}

.emergency-card {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.emergency-icon {
  font-size: 3rem;
}

.emergency-phone {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}

/* Gallery Page Styles */
.gallery-content {
  padding: 80px 0;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1rem;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #ff6b35;
  background: transparent;
  color: #ff6b35;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ff6b35;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.4;
}

/* Testimonials Page Styles */
.testimonials-content {
  padding: 80px 0;
}

.testimonials-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1rem;
}

.featured-testimonials {
  margin-bottom: 4rem;
}

.testimonial-large {
  background: #fff8f5;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
}

.quote-icon {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.3rem;
  color: #2d1810;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.2rem;
  color: #2d1810;
  margin-bottom: 0.5rem;
}

.author-info span {
  color: #4a5568;
  font-size: 0.9rem;
}

.rating {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.rating i {
  color: #ffd700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.testimonial-header {
  margin-bottom: 1rem;
}

.testimonials-stats {
  background: #fff8f5;
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #2d1810;
  font-weight: 500;
}

.testimonials-cta {
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.testimonials-cta h2 {
  font-size: 2rem;
  color: #2d1810;
  margin-bottom: 1rem;
}

/* Blog Page Styles */
.blog-content {
  padding: 80px 0;
}

.blog-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1rem;
}

.featured-blog {
  margin-bottom: 4rem;
}

.blog-post-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-content-large {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #4a5568;
}

.blog-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d1810;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post .blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-post .blog-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.blog-read-more {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.blog-read-more:hover {
  text-decoration: underline;
}

.blog-newsletter {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 12px 24px;
  background: white;
  color: #ff6b35;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* FAQ Page Styles */
.faq-content {
  padding: 80px 0;
}

.faq-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1rem;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 20px;
  border: 2px solid #ff6b35;
  background: transparent;
  color: #ff6b35;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
  background: #ff6b35;
  color: white;
}

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

.faq-section {
  display: none;
}

.faq-section.active {
  display: block;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff8f5;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #ffe4d6;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: #2d1810;
  margin: 0;
}

.faq-question i {
  color: #ff6b35;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.faq-contact {
  text-align: center;
  background: #fff8f5;
  padding: 3rem;
  border-radius: 15px;
  margin-top: 4rem;
}

.faq-contact h2 {
  font-size: 2rem;
  color: #2d1810;
  margin-bottom: 1rem;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Testimonials Preview Styles */
.testimonials-preview {
  padding: 80px 0;
  background: #fff8f5;
}

.testimonials-preview .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.testimonials-preview .testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.testimonials-preview .testimonial-content p {
  font-size: 1.1rem;
  color: #2d1810;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonials-preview .testimonial-author h4 {
  color: #2d1810;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.testimonials-preview .testimonial-author span {
  color: #4a5568;
  font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* About Page Specific Styles */
.about-text-section {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-text-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 2rem;
}

.about-text-section p {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-images-section {
  text-align: center;
  margin-top: 4rem;
}

.about-images-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 3rem;
}

.about-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-image-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.about-image-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.about-image-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.about-image-item h3 {
  padding: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1810;
  margin: 0;
}

/* Enhanced Image Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalZoomIn 0.3s ease;
}

@keyframes modalZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #ff6b35;
}

.modal-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.modal-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.modal-nav-btn:hover {
  background: rgba(255, 107, 53, 0.8);
  transform: scale(1.1);
}

.prev-btn {
  margin-left: -60px;
}

.next-btn {
  margin-right: -60px;
}

/* Enquiry Modal Styles */
.enquiry-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enquiry-modal.show {
  opacity: 1;
}

.modal-content {
  background: white;
  margin: 2% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.close-modal {
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #ffe4d6;
}

.enquiry-form {
  padding: 2rem;
}

.enquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.enquiry-form .form-group {
  margin-bottom: 1rem;
}

.enquiry-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2d1810;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ffe4d6;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ffe4d6;
}

.form-actions .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Success Message Styles */
.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #c3e6cb;
  display: none;
}

.success-message.show {
  display: block;
}

/* Loading Spinner */
.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

.loading-spinner.show {
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Contact Form Styles */
.contact-form {
  background: white;
  padding: 0;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2d1810;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ffe4d6;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-form .checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.contact-form .btn {
  width: 100%;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Contact Item Styles */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff8f5;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.contact-details h4 {
  font-size: 1.2rem;
  color: #2d1810;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #4a5568;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-details span {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Success Message */
.contact-form .success-message {
  margin-bottom: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .nav-container {
    padding: 0 30px;
  }

  .nav-menu {
    gap: 0.8rem;
    margin: 0 1.5rem;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }

  .nav-enquire-btn .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .logo-placeholder img {
    height: 45px;
    max-width: 160px;
  }

  /* Team grid: 2 columns on tablets */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-menu {
    gap: 0.6rem;
    margin: 0 1rem;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
  }

  .nav-enquire-btn .btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .logo-placeholder img {
    height: 40px;
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 0;
    order: 4;
    margin: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    margin-bottom: 1rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 1rem;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .nav-enquire-btn {
    order: 2;
    margin-right: 1rem;
  }

  .logo-placeholder img {
    height: 35px;
    max-width: 120px;
  }

  .navbar {
    padding: 0.8rem 0;
  }

  /* Team grid: 1 column on mobile */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .modal-header {
    padding: 1rem 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .enquiry-form {
    padding: 1.5rem;
  }

  .enquiry-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .modal-content-wrapper {
    max-width: 95%;
    max-height: 85%;
  }

  .modal-close {
    top: -40px;
    font-size: 30px;
  }

  .modal-nav-btn {
    font-size: 18px;
    padding: 10px 15px;
  }

  .prev-btn {
    margin-left: -40px;
  }

  .next-btn {
    margin-right: -40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .nav-enquire-btn .btn {
    padding: 6px 8px;
    font-size: 0.7rem;
  }

  .nav-enquire-btn .btn i {
    display: none;
  }

  .logo-placeholder img {
    height: 30px;
    max-width: 100px;
  }

  .modal-nav-btn {
    font-size: 16px;
    padding: 8px 12px;
  }

  .prev-btn {
    margin-left: -30px;
  }

  .next-btn {
    margin-right: -30px;
  }

  .gallery-image {
    height: 200px;
  }

  .modal-content {
    width: 98%;
    margin: 2% auto;
    max-height: 95vh;
  }

  .enquiry-form {
    padding: 1rem;
  }

  .close-modal {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* Team Member Profile Page Styles */
.team-profile-header {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe4d6 100%);
}

.team-profile-content {
  padding: 80px 0;
}

.profile-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.profile-image-section {
  text-align: center;
}

.profile-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 0.5rem;
}

.profile-role {
  font-size: 1.3rem;
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 2rem;
}

.profile-contact {
  background: #fff8f5;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.profile-contact h3 {
  font-size: 1.5rem;
  color: #2d1810;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.contact-details {
  flex: 1;
}

.contact-details a {
  color: #2d1810;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  color: #ff6b35;
}

.profile-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.profile-info h2 {
  font-size: 2rem;
  color: #2d1810;
  margin-bottom: 1.5rem;
}

.bio-section {
  margin-bottom: 2rem;
}

.bio-section h3 {
  font-size: 1.3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.bio-section p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.qualifications {
  list-style: none;
  padding: 0;
}

.qualifications li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  color: #4a5568;
}

.qualifications li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.specialty-tag {
  background: #ffe4d6;
  color: #ff6b35;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-button:hover {
  color: #2d1810;
}

.back-button i {
  font-size: 1rem;
}

/* Responsive Design for Team Profile */
@media (max-width: 768px) {
  .profile-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .profile-image {
    width: 250px;
    height: 250px;
  }

  .profile-name {
    font-size: 2rem;
  }

  .contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .profile-image {
    width: 200px;
    height: 200px;
  }

  .profile-name {
    font-size: 1.8rem;
  }

  .profile-role {
    font-size: 1.1rem;
  }
}
