/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b45309, #c2410c);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #1e293b;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  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: 80px;
}

.nav-logo {
  /* Since the text is removed, you can keep flex for alignment or adjust if needed */
  display: flex;
  align-items: center;
  gap: 0; /* No gap needed if only image */
}

.logo-icon {
  background: none; /* Remove gradient background */
  padding: 0;       /* Remove padding */
  border-radius: 0; /* Remove rounded corners */
  color: inherit;   /* Reset color */
  font-size: inherit; /* Reset font size */
}

/* Remove logo title and subtitle styles or you can just delete these classes from your HTML */
.logo-title, .logo-subtitle {
  display: none; /* Hide text */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #d97706;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d97706;
}

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

.bar {
  width: 25px;
  height: 3px;
  background: #1e293b;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #1e293b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></g></svg>')
    repeat;
  opacity: 0.1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fbbf24;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle h2 {
  color: #fbbf24;
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
  height: 60vh;
  background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #1e293b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 80px;
}

.page-hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-hero .hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Styles */
section {
  padding: 80px 0;
}

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

.section-header h2 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #d97706, #ea580c);
  margin: 0 auto;
  border-radius: 2px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #d97706;
  margin-bottom: 1.5rem;
}

/* Statistics Section */
.stats {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

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

.stat-card {
  background: linear-gradient(135deg, #1e293b, #475569);
  color: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.stat-label {
  font-size: 1rem;
  color: #e2e8f0;
  font-weight: 500;
}

/* Spaces Section */
.spaces {
  background: white;
}

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

.space-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.space-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.space-icon {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.space-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.space-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.space-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d97706;
  font-weight: 500;
  font-size: 0.9rem;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

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

.developer-info {
  background: linear-gradient(135deg, #1e293b, #475569);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
}

.developer-info p {
  color: Black;
  margin-bottom: 1.5rem;
}

.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d97706;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: white;
}

.rera-info {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(234, 88, 12, 0.1));
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 1.5rem;
  border-radius: 16px;
  margin-top: 2rem;
}

.rera-badge {
  background: transparent;
  border: 1px solid #d97706;
  color: #d97706;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.rera-info-1 {
  background: #232D3F;
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 1.5rem;
  border-radius: 16px;
  margin-top: 2rem;
}

.rera-info p {
  color: White;
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.rera-info-1 p {
  color: #000000;
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

/* Features Section */
.features {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.feature-icon {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h3 {
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-content p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

/* Gallery Preview */
.gallery-preview {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
}

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

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

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  color: #e2e8f0;
  margin: 0;
}

.gallery-button {
  text-align: center;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #1e293b, #475569);
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #ffffff;
  margin: 0.25rem 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-header p {
  color: #e2e8f0;
  margin: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid #1e293b;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: #fbbf24;
  font-weight: 600;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-section ul li i {
  width: 16px;
  margin-right: 8px;
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.9rem;
}

/* About Page Specific Styles */
.company-overview {
  background: white;
  padding: 80px 0;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text h2 {
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.overview-text p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.overview-image {
  position: relative;
}

.overview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text p {
  margin: 0;
  color: #1e293b;
  font-size: 0.9rem;
}

.badge-text p:first-child {
  font-weight: 600;
}

/* Vision & Mission */
.vision-mission {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
}

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

.vm-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e2e8f0;
}

.vm-icon {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.vm-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.vm-card p {
  color: #64748b;
  line-height: 1.7;
}

/* Developer Info */
.developer-info {
  background: white;
}

.developer-content {
  background: linear-gradient(135deg, #1e293b, #475569);
  color: white;
  padding: 3rem;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.developer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.developer-icon {
  background: #d97706;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.developer-title h3 {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.developer-title p {
  color: #e2e8f0;
  margin: 0;
}

.developer-text p {
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.experience-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

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

.stat-label {
  color: #e2e8f0;
  font-size: 0.9rem;
}

.developer-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
}

.feature-item i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.feature-item span {
  color: white;
  font-weight: 500;
}

/* Key Stats */
.key-stats {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
}

/* Location Advantages */
.location-advantages {
  background: white;
}

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

.advantage-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.advantage-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.advantage-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Timeline */
.timeline {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.timeline-icon {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  flex: 1;
}

.timeline-content h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #64748b;
  margin: 0;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #1e293b, #475569);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Gallery Page Specific Styles */
.gallery-stats {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 60px 0;
}

.gallery-categories {
  background: white;
}

.gallery-category {
  margin-bottom: 5rem;
}

.category-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-header h2 {
  color: #1e293b;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
}

/* Virtual Tour */
.virtual-tour {
  background: linear-gradient(135deg, #1e293b, #475569);
  color: white;
  text-align: center;
}

.virtual-tour .section-header h2 {
  color: white;
}

.virtual-tour .section-header p {
  color: #e2e8f0;
}

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

.tour-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tour-preview img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Download Section */
.download-section {
  background: white;
}

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

.download-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.download-icon {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.download-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.download-card p {
  color: #64748b;
  margin-bottom: 2rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  opacity: 0.7;
}

/* Contact Page Specific Styles */
.contact-info {
  background: ;
}

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

.contact-details h2 {
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.contact-details > p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h3 {
  color: #1e293b;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: #64748b;
  margin: 0.25rem 0;
  font-size: 1rem;
}

.contact-text small {
  color: #94a3b8;
  font-size: 0.9rem;
}

.contact-form-section {
  display: flex;
  align-items: flex-start;
}

.form-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
}

.form-header {
  background: linear-gradient(135deg, #1e293b, #475569);
  color: white;
  padding: 2rem;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-header p {
  color: #e2e8f0;
  margin: 0;
}

.contact-form {
  padding: 2rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.checkbox-group label {
  margin: 0;
  font-weight: normal;
  color: #64748b;
  font-size: 0.9rem;
}

/* Map Section */
.map-section {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
}

.map-container {
  margin-bottom: 3rem;
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-content {
  text-align: center;
  color: #64748b;
}

.map-content i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #64748b;
}

.map-content h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.map-content p {
  margin-bottom: 1.5rem;
}

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

.highlight-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #e2e8f0;
}

.highlight-icon {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.highlight-card h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: #64748b;
  margin: 0;
}

/* Schedule Visit */
.schedule-visit {
  background: linear-gradient(135deg, #1e293b, #475569);
  color: white;
}

.schedule-visit .section-header h2 {
  color: white;
}

.schedule-visit .section-header p {
  color: #e2e8f0;
}

.visit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.visit-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visit-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
}

.visit-feature i {
  color: #fbbf24;
  font-size: 1.5rem;
  width: 30px;
  flex-shrink: 0;
}

.visit-feature h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.visit-feature p {
  color: #e2e8f0;
  margin: 0;
  font-size: 0.9rem;
}

.visit-form-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.visit-form-card .form-header h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.visit-form-card .form-header p {
  color: #e2e8f0;
  margin: 0;
}

.visit-form {
  margin-top: 2rem;
}

.visit-form input,
.visit-form select,
.visit-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.visit-form input::placeholder,
.visit-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.visit-form input:focus,
.visit-form select:focus,
.visit-form textarea:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.faq-item h3 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    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: 1.5rem;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .contact-content,
  .overview-content,
  .developer-content,
  .visit-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

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

  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle h2 {
    font-size: 1.5rem;
  }

  .hero-subtitle p {
    font-size: 1.1rem;
  }

  .page-hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .stats-grid,
  .spaces-grid,
  .features-grid,
  .gallery-grid,
  .advantages-grid,
  .download-grid,
  .location-highlights {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .cta-buttons,
  .tour-buttons,
  .overview-buttons {
    flex-direction: column;
    align-items: center;
  }

  .experience-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .image-badge {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 70px;
    padding: 0 15px;
  }

  .logo-title {
    font-size: 1.2rem;
  }

  .hero {
    padding: 0 15px;
  }

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

  .hero-subtitle h2 {
    font-size: 1.2rem;
  }

  .hero-subtitle p {
    font-size: 1rem;
  }

  .page-hero .hero-content h1 {
    font-size: 2rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .space-card,
  .vm-card,
  .advantage-card,
  .download-card {
    padding: 1.5rem;
  }

  .about-text,
  .developer-content {
    padding: 2rem;
  }

  .contact-form,
  .visit-form-card {
    padding: 1.5rem;
  }

  .gallery-item img {
    height: 200px;
  }

  .tour-preview img {
    height: 250px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid #d97706;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}
