/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  overflow: hidden;
  width: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2D3748;
  background-color: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #1A202C;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4A5568;
}

/* Color System */
:root {
  --primary-color: #2D5016;
  --primary-light: #4A7C59;
  --primary-dark: #1A3009;
  --secondary-color: #4A5568;
  --secondary-light: #718096;
  --accent-color: #D69E2E;
  --accent-light: #F6E05E;
  --success-color: #38A169;
  --warning-color: #D69E2E;
  --error-color: #E53E3E;
  --neutral-50: #F7FAFC;
  --neutral-100: #EDF2F7;
  --neutral-200: #E2E8F0;
  --neutral-300: #CBD5E0;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;
  --vastu-primary: #8B5A3C;
  --vastu-secondary: #D4A574;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.2);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.section-header p {
  font-size: 1.25rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-200);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-content h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-phone:hover {
  color: var(--primary-dark);
}

.btn-header-cta {
  background-color: var(--accent-color);
  color: white;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-header-cta:hover {
  background-color: #B7791F;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(214, 158, 46, 0.3);
}

/* Page Header Styles */
.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.9), rgba(74, 124, 89, 0.8)),
    url('https://images.pexels.com/photos/1370704/pexels-photo-1370704.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
  color: white;
  text-align: center;
}

.page-header-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.page-header-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
}

/* About Page Styles */
.about-hero {
  padding: 6rem 0;
  background-color: white;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-text h2 {
  margin-bottom: 2rem;
  color: var(--neutral-900);
}

.about-hero-text .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
  padding: 6rem 0;
  background-color: var(--neutral-50);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.mission-card,
.vision-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.mission-card h3,
.vision-card h3 {
  margin-bottom: 1.5rem;
  color: var(--neutral-900);
}

/* Core Values */
.core-values {
  padding: 6rem 0;
  background-color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--neutral-50);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--neutral-200);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.value-card h4 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background-color: var(--neutral-50);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.team-member {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 2rem;
}

.member-info h4 {
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
}

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--secondary-color);
}

/* Services Page Styles */
.service-features {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Specialized Services */
.specialized-services {
  padding: 6rem 0;
  background-color: white;
}

.specialized-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.specialized-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--neutral-50);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.specialized-card.reverse {
  direction: rtl;
}

.specialized-card.reverse>* {
  direction: ltr;
}

.specialized-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.specialized-content {
  padding: 3rem;
}

.specialized-content h3 {
  margin-bottom: 1.5rem;
  color: var(--neutral-900);
}

.specialized-content p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

.specialized-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.specialized-content li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--secondary-color);
}

.specialized-content li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.vastu-section .specialized-content h3 {
  color: var(--vastu-primary);
}

.vastu-section .specialized-content li:before {
  color: var(--vastu-primary);
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background-color: var(--neutral-50);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.step-content h4 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.step-content p {
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Projects Page Styles */
.project-stats {
  padding: 4rem 0;
  background-color: var(--neutral-50);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

/* Featured Projects */
.featured-projects {
  padding: 6rem 0;
  background-color: white;
}

.projects-showcase {
  margin-top: 4rem;
}

.project-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--neutral-50);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.project-image-large img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.project-details-large {
  padding: 3rem;
}

.project-category {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.project-details-large h3 {
  margin-bottom: 1.5rem;
  color: var(--neutral-900);
  font-size: 2rem;
}

.project-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 2.5rem;
}

.project-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.highlight-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.highlight-item span {
  font-size: 0.875rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.project-features h4 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.project-features ul {
  list-style: none;
  padding: 0;
}

.project-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--secondary-color);
}

.project-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Project Portfolio */
.project-portfolio {
  padding: 6rem 0;
  background-color: var(--neutral-50);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--neutral-300);
  background: white;
  color: var(--secondary-color);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(74, 124, 89, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.project-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.project-stats-mini {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.mini-stat {
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.mini-stat span {
  font-size: 0.875rem;
  color: var(--secondary-color);
  font-weight: 500;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  background: var(--neutral-50);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 2rem;
  font-size: 4rem;
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1;
}

.testimonial-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-style: italic;
}

.author-info h4 {
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
}

.author-info span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Contact Page Styles */
.contact-hero {
  padding: 4rem 0;
  background-color: var(--neutral-50);
}

.contact-intro h2 {
  margin-bottom: 2rem;
  color: var(--neutral-900);
}

.contact-intro .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.consultation-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item span {
  color: var(--neutral-800);
  font-weight: 500;
  line-height: 1.6;
}

/* Contact Main */
.contact-main {
  padding: 6rem 0;
  background-color: white;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--secondary-light);
  font-style: italic;
}

.office-hours {
  background: var(--neutral-50);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.office-hours h4 {
  margin-bottom: 1.5rem;
  color: var(--neutral-900);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-200);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  color: var(--secondary-color);
  font-weight: 500;
}

.hours-item span:last-child {
  color: var(--neutral-900);
  font-weight: 600;
}

.emergency-contact {
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(229, 62, 62, 0.05));
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--error-color);
}

.emergency-contact h4 {
  margin-bottom: 1rem;
  color: var(--error-color);
}

.emergency-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.emergency-contact a {
  color: var(--error-color);
  text-decoration: none;
  font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--neutral-50);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.contact-form-section .contact-form {
  gap: 0;
}

.contact-form-section .form-group {
  margin-bottom: 1rem;
}

.form-group .checkbox-label {
  display: flex;
}

.form-container {
  padding: 3rem;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h3 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.form-header p {
  color: var(--secondary-color);
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-group {
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--secondary-color);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--neutral-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
}

.btn-form-submit {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

/* Map Section */
.map-section {
  padding: 6rem 0;
  background-color: var(--neutral-50);
}

.map-container {
  margin-top: 3rem;
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-100));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--neutral-300);
}

.map-content {
  text-align: center;
  color: var(--secondary-color);
}

.map-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.map-content h4 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.map-content p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background-color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.faq-item {
  background: var(--neutral-50);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
  font-size: 1.125rem;
}

.faq-item p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 200px;
}

.cta-buttons .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
  background-color: var(--neutral-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
  background-color: white;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--neutral-800);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(247, 250, 252, 0.8), rgba(237, 242, 247, 0.9)),
    url('https://images.pexels.com/photos/1370704/pexels-photo-1370704.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
  background-attachment: fixed;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-left {
  padding-right: 2rem;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
}

.hero-title {
  color: var(--neutral-900);
  margin-bottom: 2rem;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  color: var(--secondary-color);
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-item span {
  color: var(--neutral-800);
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Lead Form Styles */
.hero-right {
  animation: fadeInUp 1s ease-out 0.8s both;
}

.lead-form-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--neutral-200);
  position: relative;
}

.lead-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 16px 16px 0 0;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.form-header p {
  color: var(--secondary-color);
  font-size: 1rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lead-form .form-group {
  margin-bottom: 0;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--neutral-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background-color: var(--neutral-50);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--neutral-400);
}

.btn-form-submit {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.form-disclaimer {
  text-align: center;
  margin-top: 1rem;
}

.form-disclaimer p {
  font-size: 0.875rem;
  color: var(--secondary-color);
  margin: 0;
}

/* Services Overview */
.services-overview {
  padding: 8rem 0;
  background-color: var(--neutral-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--neutral-200);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.vastu-service {
  /* background: linear-gradient(135deg, rgba(139, 90, 60, 0.05), rgba(212, 165, 116, 0.05)); */
  border: 1px solid rgba(139, 90, 60, 0.2);
}

.service-card.vastu-service .service-icon {
  color: var(--vastu-primary);
}

.service-icon {
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.service-card h3 {
  margin-bottom: 1.5rem;
  color: var(--neutral-900);
}

.service-card p {
  color: var(--secondary-color);
  line-height: 1.7;
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.about-description {
  margin-bottom: 3rem;
}

.about-description p {
  margin-bottom: 1.5rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.about-image {
  position: relative;
  height: 100%;
}

.about-image img {
  width: 500px;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Detailed */
.services {
  padding: 8rem 0;
  background-color: var(--neutral-50);
}

.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse>* {
  direction: ltr;
}

.service-detail-content h3 {
  margin-bottom: 1.5rem;
  color: var(--neutral-900);
}

.service-detail-content p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
}

.service-detail-content li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-200);
  position: relative;
  padding-left: 2rem;
  color: var(--secondary-color);
}

.service-detail-content li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.service-detail-content li:last-child {
  border-bottom: none;
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vastu-section .service-detail-content h3 {
  color: var(--vastu-primary);
}

.vastu-section .service-detail-content li:before {
  color: var(--vastu-primary);
}

/* Projects Section */
.projects {
  padding: 8rem 0;
  background-color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 2.5rem;
}

.project-content h3 {
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.project-content p {
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.project-details {
  display: flex;
  gap: 1rem;
}

.project-type,
.project-size {
  background-color: var(--neutral-100);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--neutral-50), rgba(45, 80, 22, 0.05));
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-info .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
}

.contact-item p {
  margin: 0;
  color: var(--secondary-color);
}

/* Form Styles */
.form {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--neutral-800);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--neutral-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: var(--neutral-900);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.footer-brand p {
  color: var(--neutral-300);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--neutral-400);
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-left {
    padding-right: 0;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-hero-content,
  .project-featured,
  .specialized-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .specialized-card.reverse {
    direction: ltr;
  }

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .project-highlights {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .service-detail.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 90px;
    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;
  }

  .nav-menu.active {
    left: 0;
    top: 0;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form-container {
    padding: 2rem 1.5rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-header-content h1 {
    font-size: 2.5rem;
  }

  .about-stats,
  .project-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .portfolio-filter {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .project-stats-mini {
    justify-content: center;
  }

}

@media (max-width: 480px) {

  .about-content,
  .contact-content {
    display: block;
  }

  .about-image img {
    width: 100%;
    margin-top: 20px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-container {
    height: 70px;
  }

  .logo-content h2 {
    font-size: 1.5rem;
  }

  .logo-tagline {
    font-size: 0.7rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .about-stats,
  .project-highlights,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-stats-mini {
    flex-direction: column;
    gap: 1rem;
  }

  .specialized-content,
  .project-details-large,
  .form-container {
    padding: 2rem;
  }

  .service-card,
  .form {
    padding: 2rem 1.5rem;
  }

  .project-content {
    padding: 2rem;
  }

  .contact-info .section-header,
  .about-text .section-header {
    text-align: center;
  }

  .hours-item {
    flex-direction: column;
    gap: 0.25rem;
  }
}