/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

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

/* Prevent icon flash before Font Awesome loads */
.fas,
.far,
.fab,
.fal,
.fad,
.fa {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands", sans-serif !important;
  font-display: swap;
}

/* Ensure icons are visible and properly styled */
i[class*="fa-"] {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fallback for icons before Font Awesome loads */
i[class*="fa-"]:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", sans-serif;
  font-weight: 900;
  font-display: swap;
}

/* Specific font weights for different icon types */
.fas {
  font-weight: 900;
}

.far {
  font-weight: 400;
}

.fab {
  font-weight: 400;
}

/* Simple Font Awesome loading - Local fonts load immediately */
i[class*="fa-"] {
  opacity: 1 !important;
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* Ensure icons are block-level for proper sizing */
i[class*="fa-"] {
  display: inline-block;
  width: auto;
  height: auto;
  line-height: inherit;
  vertical-align: baseline;
}

/* Accessibility improvements */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

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

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-title .title-outline {
    -webkit-text-stroke: 3px #333;
  }

  .nav-link:hover,
  .btn:hover {
    background: #000;
    color: #fff;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  font-weight: 400;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

/* Fix container overflow for navigation */
.navbar .container {
  overflow: visible !important;
}

/* Prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* Clean dropdown container */
.nav-item.dropdown {
  position: relative;
}

/* Flash Messages */
.flash-message {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: opacity 0.3s ease;
}

.flash-notice {
  background: #d4edda;
  border-bottom: 3px solid #808080;
  color: #155724;
}

.flash-alert {
  background: #f8d7da;
  border-bottom: 3px solid #dc3545;
  color: #721c24;
}

.flash-message .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flash-text {
  font-weight: 500;
}

.flash-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.flash-close:hover {
  opacity: 1;
}

/* Footer chevrons handled by responsive CSS below */
@media (max-width: 768px) {
  .footer-chevron {
    display: inline-block;
  }
}

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

.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  height: 80px;
}

.nav-brand .logo {
  display: block;
  text-decoration: none;
  line-height: 1;
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: 280px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  height: 80px;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  align-items: center;
  height: 80px;
}

.nav-item {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #808080;
}

/* Simple Dropdown - No JavaScript Required */
.dropdown-menu {
  position: absolute;
  top: 80px;
  left: 0;
  background: #fff;
  min-width: 220px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  z-index: 1001;
  margin: 0;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Adjust last dropdown to stay within viewport */
.nav-item:nth-last-child(-n+3) .dropdown-menu {
  left: auto;
  right: 0;
}

/* Prevent body scroll when dropdown is open on mobile */
@media (max-width: 768px) {
  .nav-item.dropdown-open {
    position: static;
  }

  .nav-item.dropdown-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    margin-top: 0;
    border-radius: 0;
  }
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #666;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  color: #808080;
  background-color: #f8fafc;
}

.nav-extra {
  display: flex;
  align-items: center;
  gap: 20px;
}


.nav-extra {
  display: flex;
  align-items: center;
  height: 80px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Main Content */
.main-content {
  margin-top: 80px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #808080 50%, #808080 100%);
  color: #333;
  padding: 40px 0 60px 0;
  position: relative;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  gap: 30px;
}

.hero-title-and-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-tagline {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 0;
  color: #333;
  max-width: 800px;
  text-transform: none;
  letter-spacing: -0.02em;
}

.hero-title .title-static {
  display: inline-block;
  color: #333;
  font-weight: 900;
}

.hero-title .title-accent {
  color: #808080;
  font-weight: 900;
}

.hero-title .flipper-word {
  display: inline-block;
  min-width: 480px;
  text-align: left;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.hero-title .title-outline {
  color: transparent;
  -webkit-text-stroke: 2px #333;
  font-weight: 300;
}

.hero-description {
  margin: 0;
  max-width: 100%;
  position: relative;
}

.hero-description-text {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #808080;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: baseline;
  justify-content: flex-end;
  margin-top: 0;
}

.mobile-stats {
  display: none;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 216px;
  font-weight: 300;
  color: #e5e5e5;
  line-height: 0.8;
  margin-bottom: 8px;
  min-width: 160px;
  text-align: center;
  display: inline-block;
}

.stat-label {
  font-size: 48px;
  color: #333;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1.2;
}

.hero-image-container {
  width: 100%;
  padding: 0;
  margin-top: 0;
  position: relative;
}

.hero-workspace-image {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Global section spacing optimization */
section {
  margin-bottom: 0;
}

section+section {
  margin-top: 0;
}

.section-tagline {
  color: #808080;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 40px 0;
  background: #808080;
  color: white;
}


.features-header-section {
  margin-bottom: 50px;
}

.features-header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.features-text-left .section-tagline {
  color: white;
  text-align: left;
  margin-bottom: 15px;
}

.features-text-left .section-title {
  color: white;
  text-align: left;
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.features-text-right .section-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px 20px;
  margin-top: 60px;
}

.feature-item {
  background: transparent;
  padding: 20px 10px;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-icon {
  background: transparent;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  flex-shrink: 0;
  margin: 15px auto 20px auto;
}

.feature-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin: 0;
  line-height: 1.3;
  max-width: 150px;
}

/* Office Options Section */
.office-options-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.office-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.office-option-item {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #e9ecef;
}

.office-option-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.office-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #808080, #666);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: white;
  font-size: 28px;
}

.office-option-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.office-option-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Upcoming Events Section */
.upcoming-events-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #808080, #666);
  color: white;
}

.events-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.events-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.events-text .title-accent {
  color: #e8e8e8;
}

.events-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.events-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.events-btn {
  background: white;
  color: #808080;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.events-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.instagram-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.instagram-link:hover {
  color: #e8e8e8;
}

.events-visual {
  display: flex;
  justify-content: center;
}

.events-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.event-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.event-icon:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.event-icon i {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
  color: white;
}

.event-icon span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: #808080;
}

.faq-question.active {
  color: #808080;
  border-bottom: 1px solid #e9ecef;
}

.faq-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
  color: #808080;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-answer.active {
  padding: 0 30px 25px 30px;
  max-height: 200px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Growth Section */
.growth-section {
  padding: 40px 0 0 0;
  background: white;
}

.growth-header {
  text-align: left;
  margin-bottom: 40px;
}

.growth-tagline {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.growth-title {
  font-size: 48px;
  font-weight: 800;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0;
}

.growth-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.growth-image-container {
  position: relative;
  width: 100%;
}

.growth-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
}

.growth-text-right {
  padding: 0;
}

.growth-description {
  font-size: 16px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-learn-more {
  background: #808080;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 6px;
  margin: 30px 0 40px 0;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: #5a5a5a;
  transform: translateY(-2px);
}

.growth-stat-cards {
  position: absolute;
  bottom: -40px;
  right: -220px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  z-index: 2;
}

.stat-card {
  width: 180px;
  height: 180px;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card-dark {
  background: #1a1a1a;
}

.stat-card-teal {
  background: #808080;
}

.stat-card-icon {
  font-size: 32px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.stat-card-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  line-height: 1.1;
}

/* Testimonials Section */
.testimonials-section {
  padding: 40px 0 0 0;
  background: #f8fafc;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
  height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: #808080;
  border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
  background: #5a5a5a;
}

.testimonial-item {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  min-width: 350px;
  flex-shrink: 0;
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: #64748b;
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  padding: 40px 0 30px 0;
  background: white;
}

.contact-section .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.contact-section .section-tagline {
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.contact-section .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-section .title-accent {
  color: #808080;
}

.contact-section .section-description {
  font-size: 16px;
  color: #64748b;
  max-width: none;
  margin: 0;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 2px 0;
}

.contact-icon {
  color: #808080;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.contact-details p {
  font-size: 16px;
  color: #1e293b;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.contact-label {
  font-weight: 600;
  color: #64748b;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details a {
  color: #1e293b;
  font-weight: 600;
  text-decoration: none;
}

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

/* Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 18px;
  color: #94a3b8;
  font-size: 16px;
  z-index: 2;
}

.form-control {
  width: 100%;
  padding: 18px 18px 18px 45px;
  border: none;
  border-bottom: 2px solid #f1f5f9;
  border-radius: 0;
  font-size: 16px;
  background: #fafbfc;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-bottom-color: #808080;
  background: #ffffff;
}

.form-control:hover {
  background: #f4f6f8;
}

.form-control::placeholder {
  color: #94a3b8;
}

.btn-contact-primary {
  background: #808080;
  color: white;
  border: none;
  padding: 18px 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 0;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-contact-primary:hover {
  background: #5a5a5a;
}

.form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 20px;
}

.privacy-checkbox {
  flex: 1;
  padding-top: 15px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.privacy-link {
  color: #808080;
  text-decoration: underline;
}

.privacy-link:hover {
  color: #5a5a5a;
}

/* Footer Styles */
.footer {
  background: #808080;
  color: white;
  padding: 40px 0 20px 0;
}

.footer-main-title {
  margin-bottom: 35px;
}

.footer-main-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 35px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
}

.footer-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 240px;
  margin-bottom: 15px;
}

.footer-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-text {
  color: #ffffff;
  line-height: 1.6;
}

.footer-text p {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #ffffff;
}

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

.footer-text a:hover {
  color: #808080;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #334155;
  color: #94a3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #808080;
  color: white;
  transform: translateY(-2px);
}

.contact-info a {
  color: #94a3b8;
  text-decoration: none;
}

.contact-info a:hover {
  color: #808080;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-input-wrapper {
  display: flex;
  position: relative;
}

.newsletter-input {
  flex: 1;
  padding: 15px 60px 15px 20px;
  border: 2px solid #a0a0a0;
  border-radius: 8px;
  background: transparent;
  color: white;
  font-size: 16px;
}

.newsletter-input::placeholder {
  color: #cccccc;
}

.newsletter-input:focus {
  outline: none;
  border-color: #808080;
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #808080;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: #5a5a5a;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}

.privacy-label input[type="checkbox"] {
  margin: 0;
  margin-top: 2px;
}

.privacy-label .privacy-link {
  color: #808080;
  text-decoration: underline;
}

.privacy-label .privacy-link:hover {
  color: #ffffff;
}

.privacy-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 12px;
}

.privacy-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #a0a0a0;
  color: #ffffff;
  font-size: 14px;
}

/* Scrolled Header State - Optional */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header.scrolled .logo-image {
  height: 50px;
  max-width: 240px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

.nav-menu {
  transition: transform 0.3s ease;
}

.nav-menu.mobile-open {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: fixed;
  top: 80px;
  right: 0;
  width: 320px;
  height: calc(100vh - 80px);
  background: white;
  z-index: 999;
  padding: 0 0 20px 0;
  transform: translateX(0);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 300px;
    height: calc(100vh - 80px);
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.mobile-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    height: auto;
    padding: 20px 0;
  }

  .nav-item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-link {
    padding: 20px 30px;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    margin: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.dropdown.active .dropdown-menu {
    max-height: 300px;
  }

  .dropdown-menu a {
    padding: 15px 50px;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
  }
}

.nav-menu.mobile-open .nav-list {
  flex-direction: column;
  width: 100%;
  gap: 0;
  padding: 0;
  margin: 0;
  align-items: stretch;
}

.nav-menu.mobile-open .nav-item {
  width: 100%;
  border-bottom: 1px solid #f1f5f9;
}

.nav-menu.mobile-open .nav-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 18px 30px;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease;
  text-align: left;
}

.nav-menu.mobile-open .dropdown .nav-link {
  justify-content: space-between;
}

.nav-menu.mobile-open .nav-link:hover {
  background: #f8fafc;
  color: #808080;
}

.nav-menu.mobile-open .nav-link i {
  font-size: 12px;
  color: #94a3b8;
}

.nav-menu.mobile-open .dropdown-menu {
  position: static;
  opacity: 0;
  visibility: hidden;
  transform: none;
  box-shadow: none;
  background: #f8fafc;
  margin-top: 0;
  border-radius: 0;
  border: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-menu.mobile-open .dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 400px;
}

.nav-menu.mobile-open .dropdown.active .nav-link i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.nav-menu.mobile-open .nav-link i {
  transition: transform 0.3s ease;
}

.nav-menu.mobile-open .dropdown-menu li a {
  padding: 15px 50px;
  border-bottom: 1px solid #f1f5f9;
  color: #64748b;
  font-size: 14px;
}

.nav-menu.mobile-open .dropdown-menu li a:hover {
  background: #f1f5f9;
  color: #808080;
}

/* Animation classes */
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item,
.testimonial-item,
.contact-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.feature-item.animate-in,
.testimonial-item.animate-in,
.contact-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Moving Text Section */
.moving-text-section {
  position: relative;
  padding: 40px 0 0 0;
  background: #ffffff;
  overflow: hidden;
}

.moving-text-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moving-text-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 60px 0;
}

.moving-text-line {
  display: flex;
  white-space: nowrap;
  animation: moveRight 40s linear infinite;
  width: 200%;
}

.moving-text-line.reverse {
  animation: moveLeft 35s linear infinite;
  width: 200%;
}

.moving-text-line.line-1 .text-item,
.moving-text-line.line-3 .text-item {
  font-size: 120px;
  font-weight: 900;
  color: #e8e8e8;
  margin-right: 120px;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.moving-text-line.line-2 .text-item {
  font-size: 120px;
  font-weight: 900;
  color: #808080;
  margin-right: 120px;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.text-item {
  font-size: 120px;
  font-weight: 900;
  color: #808080;
  margin-right: 120px;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.moving-text-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.businesswomen-image-container {
  max-width: 800px;
  width: 100%;
}

.businesswomen-image {
  width: 100%;
  height: auto;
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes moveLeft {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .navbar {
    padding: 15px 0;
  }

  .header.scrolled .navbar {
    padding: 8px 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.mobile-open {
    width: 100%;
    max-width: 320px;
    top: 75px;
    height: calc(100vh - 75px);
    padding: 0 0 30px 0;
    justify-content: flex-start;
  }

  /* Improve container padding on mobile */
  .container {
    padding: 0 16px;
  }

  /* Better touch targets for mobile */
  .nav-link,
  .btn,
  button {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Mobile form improvements */
  .form-control {
    font-size: 16px;
    /* Prevents zoom on iOS */
    padding: 16px 18px 16px 45px;
  }

  /* Mobile-friendly dropdowns */
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f8fafc;
  }

  /* Improve mobile navigation */
  .nav-menu.mobile-open .nav-link {
    padding: 16px 24px;
    font-size: 16px;
  }

  /* Mobile testimonials scroll */
  .testimonials-grid {
    gap: 20px;
    padding: 16px 0;
  }

  .testimonial-item {
    min-width: 280px;
    padding: 24px 20px;
  }

  .logo-image {
    height: 62px;
    max-width: 273px;
    transition: all 0.3s ease;
  }

  /* Smaller logo for mobile sticky header */
  .header.scrolled .logo-image {
    height: 48px;
    max-width: 210px;
  }

  .footer-logo {
    height: 46px;
    max-width: 210px;
  }

  .hero-text-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 16px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: center;
  }

  .stat-item {
    text-align: center;
    align-items: center;
  }

  .stat-number {
    font-size: 60px;
    min-width: 120px;
  }

  .stat-label {
    font-size: 14px;
  }

  .hero-section {
    padding: 30px 0 40px 0;
  }

  .hero-workspace-image {
    max-height: 300px;
  }

  .hero-title {
    font-size: 48px;
    max-width: 100%;
  }

  .stat-number {
    font-size: 64px;
  }

  .hero-workspace-image {
    width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 30px 20px;
  }

  .feature-icon {
    font-size: 36px;
    width: 60px;
    height: 60px;
    margin: 12px auto 15px auto;
  }

  .feature-item h3 {
    font-size: 14px;
  }

  .features-header-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .features-text-left .section-tagline {
    text-align: center;
  }

  .features-text-left .section-title {
    text-align: center;
  }

  .growth-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .growth-title {
    font-size: 36px;
  }

  .growth-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .growth-main-image {
    height: 400px;
  }

  .growth-text-right {
    padding: 0;
  }

  .growth-image-container {
    width: 100%;
    max-width: none;
  }

  .growth-stat-cards {
    position: relative;
    bottom: auto;
    right: auto;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
  }

  .stat-card {
    width: 150px;
    height: 150px;
    padding: 25px 15px;
  }

  .testimonial-item {
    min-width: 280px;
    padding: 30px;
  }

  .contact-section {
    padding: 40px 0 30px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 35px;
  }

  .contact-info {
    gap: 15px;
  }

  .contact-item {
    gap: 18px;
    padding: 1px 0;
    align-items: center;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    justify-content: center;
  }

  .contact-details p {
    font-size: 14px;
  }

  .contact-label {
    font-size: 12px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 30px;
    align-items: baseline;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-main-title {
    margin-bottom: 25px;
  }

  .footer-main-title h2 {
    font-size: 28px;
  }

  .contact-section {
    padding: 50px 0 40px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .contact-info {
    gap: 12px;
  }

  .contact-item {
    gap: 15px;
    padding: 1px 0;
    align-items: center;
  }

  .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
    justify-content: center;
  }

  .contact-details h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .contact-details p {
    font-size: 13px;
  }

  .contact-label {
    font-size: 11px;
  }

  .contact-section .section-title {
    font-size: 36px;
  }

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

  .form-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .privacy-checkbox {
    padding-top: 0;
  }

  .moving-text-section {
    padding: 40px 0 0 0;
  }

  .nav-menu.mobile-open {
    width: 100%;
    max-width: 280px;
    top: 75px;
    height: calc(100vh - 75px);
    padding: 0 0 25px 0;
    justify-content: flex-start;
  }

  .mobile-overlay {
    top: 75px;
    height: calc(100vh - 75px);
  }

  .moving-text-wrapper {
    min-height: 400px;
  }

  .moving-text-line.line-1 .text-item,
  .moving-text-line.line-3 .text-item {
    font-size: 80px;
    margin-right: 80px;
    color: #e8e8e8;
    letter-spacing: -2px;
  }

  .moving-text-line.line-2 .text-item {
    font-size: 80px;
    margin-right: 80px;
    color: #808080;
    letter-spacing: -2px;
  }

  .businesswomen-image-container {
    max-width: 100%;
    padding: 0 20px;
  }

  /* Proper spacing for hero image on mobile */
  .hero-image-container {
    margin-top: 20px;
    transform: none;
  }

  /* Add spacing after stats so they don't overlap the image */
  .hero-stats {
    margin-bottom: 40px;
    /* increased to prevent overlap with raised image */
  }

  /* Hero mobile styles */
  .hero-section {
    padding: 40px 0 40px 0;
  }

  .hero-text-content {
    gap: 25px;
    margin-bottom: 30px;
  }

  .hero-title-and-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .desktop-stats {
    display: none;
  }

  .mobile-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 25px;
  }

  .mobile-stats .stat-number {
    font-size: 72px;
  }

  .mobile-stats .stat-label {
    font-size: 16px;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-description-text {
    font-size: 15px;
    line-height: 1.6;
    padding: 20px 25px;
    border-radius: 10px;
  }

  /* Office Options mobile styles */
  .office-options-section {
    padding: 60px 0;
  }

  .office-options-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .office-option-item {
    padding: 25px 20px;
  }

  .office-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .office-option-item h3 {
    font-size: 18px;
  }

  .office-option-item p {
    font-size: 14px;
  }

  /* Upcoming Events mobile styles */
  .upcoming-events-section {
    padding: 60px 0;
  }

  .events-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .events-text h2 {
    font-size: 36px;
  }

  .events-description {
    font-size: 16px;
  }

  .events-cta {
    justify-content: center;
  }

  .events-icon-grid {
    gap: 20px;
  }

  .event-icon {
    padding: 20px;
  }

  .event-icon i {
    font-size: 28px;
  }

  /* FAQ mobile styles */
  .faq-section {
    padding: 60px 0;
  }

  .faq-list {
    margin-top: 40px;
  }

  .faq-question {
    padding: 20px 25px;
    font-size: 16px;
  }

  .faq-answer.active {
    padding: 0 25px 20px 25px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  /* Flipper word mobile styles - fix layout shift */
  .hero-title {
    font-size: 36px;
  }

  .hero-title .title-static {
    font-size: 36px;
  }

  .hero-title .flipper-word {
    min-width: 200px;
    font-size: 36px;
  }

  .hero-workspace-image {
    height: 300px;
  }

}

/* Medium mobile devices */
@media (max-width: 640px) {
  .hero-text-content {
    gap: 30px;
    margin-bottom: 40px;
  }

  .hero-image-container {
    margin-top: 20px;
  }

  /* Hero for smaller screens */
  .hero-section {
    padding: 30px 0 30px 0;
  }

  .hero-text-content {
    gap: 20px;
    margin-bottom: 25px;
  }

  .hero-title-and-stats {
    gap: 0;
  }

  .mobile-stats {
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
  }

  .mobile-stats .stat-number {
    font-size: 48px;
  }

  .mobile-stats .stat-label {
    font-size: 14px;
  }

  .hero-description-text {
    font-size: 14px;
    line-height: 1.5;
    padding: 18px 20px;
    border-radius: 8px;
  }

  /* Office Options smaller mobile styles */
  .office-options-section {
    padding: 50px 0;
  }

  .office-options-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .office-option-item {
    padding: 20px 15px;
  }

  .office-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .office-option-item h3 {
    font-size: 16px;
  }

  .office-option-item p {
    font-size: 13px;
  }

  /* Upcoming Events smaller mobile styles */
  .upcoming-events-section {
    padding: 50px 0;
  }

  .events-content {
    gap: 30px;
  }

  .events-text h2 {
    font-size: 28px;
  }

  .events-description {
    font-size: 15px;
  }

  .events-cta {
    flex-direction: column;
    gap: 15px;
  }

  .events-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .events-icon-grid {
    gap: 15px;
  }

  .event-icon {
    padding: 15px;
  }

  .event-icon i {
    font-size: 24px;
  }

  .event-icon span {
    font-size: 12px;
  }

  /* FAQ smaller mobile styles */
  .faq-section {
    padding: 50px 0;
  }

  .faq-list {
    margin-top: 30px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer.active {
    padding: 0 20px 18px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  /* Flipper word smaller mobile styles - fix layout shift */
  .hero-title {
    font-size: 28px;
  }

  .hero-title .title-static {
    font-size: 28px;
  }

  .hero-title .flipper-word {
    min-width: 160px;
    font-size: 28px;
  }

  .hero-workspace-image {
    height: 250px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .growth-content {
    gap: 30px;
  }

  .contact-content {
    gap: 30px;
  }

  /* Better form spacing on medium mobile */
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

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

  /* Smaller text on very small screens */
  .hero-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .section-title {
    font-size: 24px;
  }

  /* Compact spacing for small screens */
  .features-section,
  .growth-section,
  .testimonials-section,
  .contact-section {
    padding: 30px 0;
  }

  .hero-section {
    padding: 30px 0 0 0;
    /* Revert background to default */
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.1;
  }

  .hero-stats {
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }

  .stat-item {
    text-align: center;
    align-items: center;
  }

  .stat-number {
    font-size: 48px;
    min-width: 100px;
  }

  .stat-label {
    font-size: 13px;
  }

  .section-title {
    font-size: 28px;
  }

  .features-section,
  .growth-section,
  .testimonials-section {
    padding: 40px 0;
  }

  .contact-section {
    padding: 50px 0 40px 0;
  }

  .growth-header {
    margin-bottom: 30px;
  }

  .growth-title {
    font-size: 32px;
  }

  .growth-content {
    gap: 40px;
  }

  .growth-main-image {
    height: 300px;
  }

  .growth-image-container {
    width: 100%;
    max-width: none;
  }

  .growth-stat-cards {
    flex-direction: row;
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }

  .stat-card {
    width: 140px;
    height: 140px;
    padding: 20px 15px;
  }

  .stat-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .stat-card-number {
    font-size: 30px;
  }

  .stat-card-label {
    font-size: 10px;
  }

  .testimonial-item {
    min-width: 250px;
    padding: 25px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(10, 1fr);
    gap: 30px;
  }

  .feature-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    margin: 10px auto 12px auto;
  }

  .features-header-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features-text-left .section-title {
    font-size: 28px;
  }

  .hero-workspace-image {
    height: 300px;
  }

  .footer {
    padding: 40px 0 20px 0;
  }

  .footer-main-title {
    margin-bottom: 20px;
  }

  .footer-main-title h2 {
    font-size: 24px;
  }

  .footer-content {
    gap: 25px;
    margin-bottom: 25px;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  .contact-section .section-title {
    font-size: 32px;
  }

  .form-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .privacy-checkbox {
    padding-top: 0;
  }

  .moving-text-section {
    padding: 40px 0 0 0;
  }

  .moving-text-wrapper {
    min-height: 300px;
  }

  .moving-text-line.line-1 .text-item,
  .moving-text-line.line-3 .text-item {
    font-size: 60px;
    margin-right: 60px;
    color: #e8e8e8;
    letter-spacing: -1px;
  }

  .moving-text-line.line-2 .text-item {
    font-size: 60px;
    margin-right: 60px;
    color: #808080;
    letter-spacing: -1px;
  }

  .businesswomen-image-container {
    padding: 0 10px;
  }

  /* Fine-tune for very small screens */
  .hero-image-container {
    margin-top: 30px;
    transform: none;
  }

  .hero-stats {
    margin-bottom: 20px;
  }

}

/* ===========================================
   BLOG PAGES STYLING
   =========================================== */

/* Blog Layout */
.blog-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  margin-top: 100px;
  /* Account for fixed header */
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}

/* Main Blog Content */
.blog-main {
  min-height: 500px;
}

.search-results-header,
.tag-results-header {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 0.25rem;
  margin-bottom: 2rem;
  border-left: 4px solid #3b82f6;
}

.current-tag {
  background: #3b82f6;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

/* Blog Posts List */
.blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-post-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-post-item.featured {
  border: 2px solid #10b981;
}

.post-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.blog-post-item:hover .post-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #10b981;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.post-content {
  padding: 2rem;
}

.post-title {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.post-title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: #3b82f6;
}

.post-excerpt {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.read-more {
  margin-top: 1rem;
}

.read-more-link {
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #2563eb;
}

.read-more-link i {
  font-size: 0.8rem;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Author Widget */
.author-widget {
  text-align: center;
}

.author-avatar {
  margin-bottom: 1rem;
}

.avatar-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f3f4f6;
}

.author-name {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.author-bio {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.author-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.twitter {
  background: #1da1f2;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.instagram {
  background: #e4405f;
}

/* Search Widget */
.search-widget .search-form {
  margin: 0;
  padding: 0;
}

.search-input-wrapper {
  position: relative;
  display: flex;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 3rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3rem;
  background: #3b82f6;
  border: none;
  border-radius: 0 6px 6px 0;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.search-btn:hover {
  background: #2563eb;
}

/* Widget Titles */
.widget-title {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.categories-list li:last-child {
  border-bottom: none;
}

.categories-list a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.categories-list a:hover {
  color: #3b82f6;
}

/* Recent Posts Widget */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post-item {
  display: flex;
  gap: 0.75rem;
}

.recent-post-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}

.recent-post-content h4 a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
  color: #3b82f6;
}

.recent-post-date {
  color: #9ca3af;
  font-size: 0.8rem;
}

/* Author Widget */
.author-widget {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #e5e7eb;
  margin-bottom: 30px;
}

.author-avatar {
  margin-bottom: 20px;
}

.avatar-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  border: 3px solid #f3f4f6;
}

.author-name {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.author-bio {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.author-social .social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: auto;
  padding: 0;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-social .social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.author-social .social-link.facebook {
  background: #1877f2;
}

.author-social .social-link.twitter {
  background: #1da1f2;
}

.author-social .social-link.linkedin {
  background: #0a66c2;
}

.author-social .social-link.instagram {
  background: #e4405f;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-item {
  background: #f8fafc;
  color: #64748b;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.tag-item:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

/* Ad Widget */
.ad-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: white;
}

.ad-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid white;
}

.ad-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.ad-content p {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.ad-btn {
  background: white;
  color: #667eea;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.ad-btn:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

/* No Posts */
.no-posts {
  text-align: center;
  padding: 3rem;
  color: #64748b;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Blog Single Post Page */
.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  margin-top: 100px;
  /* Account for fixed header */
}

.blog-post-single {
  background: white;
  border-radius: 0.5rem;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.post-header {
  margin-bottom: 2rem;
  text-align: center;
}

.post-header h1 {
  font-size: 2.5rem;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.post-featured-image {
  margin-bottom: 2rem;
  text-align: center;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.blog-post-single .post-excerpt {
  font-size: 1.1rem;
  color: #64748b;
  font-style: italic;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 0.25rem;
}

.post-body {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #374151;
}

.post-gallery {
  margin: 2rem 0;
}

.post-gallery h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

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

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.25rem;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.post-actions {
  display: flex;
  justify-content: center;
}

.related-posts {
  margin-top: 3rem;
}

.related-posts h2 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.related-post {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.related-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.related-post .post-content {
  padding: 1rem;
  line-height: 1.5;
}

.related-post .post-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.related-post .post-content h3 a {
  color: #1e293b;
  text-decoration: none;
}

.related-post .post-content h3 a:hover {
  color: #3b82f6;
}

.related-post .post-excerpt {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  padding: 0;
  background: none;
  border: none;
  font-style: normal;
}

.related-post .post-meta {
  font-size: 0.75rem;
  justify-content: flex-start;
}

/* ===========================================
   SERVICE PAGES ENHANCED STYLING  
   =========================================== */

/* Service Page Content Wrapper */
.service-content-wrapper {
  margin-top: 100px;
  /* Account for fixed header */
  padding: 2rem 0;
}

.service-section {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

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

.service-header h1 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

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

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

.service-feature {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-feature i {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.service-feature h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.service-feature p {
  color: #64748b;
  line-height: 1.6;
}

.service-gallery {
  margin: 3rem 0;
}

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

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.2s;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Mobile Responsiveness for Blog and Service Pages */
@media (max-width: 768px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
    margin-top: 80px;
  }

  .blog-sidebar {
    order: 2;
  }

  .blog-main {
    order: 1;
  }

  .blog-post-item .post-content {
    padding: 1.5rem;
  }

  .post-title {
    font-size: 1.25rem;
  }

  .post-image {
    height: 200px;
  }

  .author-social {
    gap: 0.5rem;
  }

  .social-link {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .recent-post-item {
    flex-direction: column;
  }

  .recent-post-thumb {
    width: 100%;
    height: 150px;
  }

  .tags-cloud {
    justify-content: center;
  }

  .blog-post-container {
    padding: 1rem;
    margin-top: 80px;
  }

  .blog-post-single {
    padding: 2rem 1rem;
  }

  .blog-header h1,
  .post-header h1 {
    font-size: 2rem;
  }

  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .featured-posts-grid,
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .service-content-wrapper {
    margin-top: 80px;
    padding: 1rem;
  }

  .service-header h1 {
    font-size: 2rem;
  }

  .sidebar-widget {
    padding: 1rem;
  }
}

/* ============================================
   MODERN SERVICE PAGE DESIGN
   ============================================ */

.modern-service-page {
  background: #ffffff;
  min-height: 100vh;
  padding: 0;
  margin-top: -1px;
}

.service-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  min-height: 100vh;
}

/* Left Sidebar Styling */
.service-sidebar {
  width: 300px;
  background: #ffffff;
  border-right: 1px solid #e5e5e5;
  padding: 40px 30px;
  position: sticky;
  top: 0;
  height: fit-content;
  max-height: 100vh;
  overflow-y: auto;
}

.sidebar-section {
  margin-bottom: 40px;
}

.sidebar-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.text-green {
  color: #808080;
}

.text-grey {
  color: #808080;
}

/* Services Menu */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services-list li {
  margin-bottom: 8px;
}

.service-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-nav-link:hover {
  color: #808080;
  background-color: #f3f4f6;
  border-color: #e5e7eb;
}

.service-nav-link.active {
  color: #808080;
  background-color: #f3f4f6;
  border-color: #808080;
  font-weight: 600;
}

.service-nav-link::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.service-nav-link:hover::after,
.service-nav-link.active::after {
  opacity: 1;
  transform: translateX(3px);
}

.schedule-tour-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #808080 0%, #6b7280 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(128, 128, 128, 0.2);
}

.schedule-tour-btn:hover {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 128, 128, 0.3);
}

/* Contact Section */
.contact-section {
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
}

.contact-description {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.contact-icon {
  background: linear-gradient(135deg, #808080 0%, #6b7280 100%);
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(128, 128, 128, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(128, 128, 128, 0.3);
}

.contact-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.contact-info p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Need a Place CTA */
.place-cta {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.place-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/images/group-of-businesswomen-meeting-in-the-office-2023-12-20-19-53-24-utc-Photoroom-min.png") center/cover;
  opacity: 0.1;
  z-index: 0;
}

.place-cta-content {
  position: relative;
  z-index: 1;
}

.place-cta h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 15px 0;
  line-height: 1.3;
  text-align: center;
}

.contact-cta-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #808080;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.contact-cta-btn:hover {
  background: #6b7280;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 128, 128, 0.3);
}

/* Main Content Area */
.service-main-content {
  flex: 1;
  padding: 40px 50px 40px 40px;
  background: #ffffff;
}

/* Hero Section */
.service-hero {
  margin-bottom: 50px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-category {
  display: inline-block;
  background: #f3f4f6;
  color: #808080;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-title {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 25px 0;
  line-height: 1.2;
}

.service-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}

.hero-image {
  width: 100%;
  margin: 20px 0;
}

.main-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

/* Image Gallery */
.service-gallery-section {
  margin-bottom: 15px;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

/* Service Overview */
.service-overview-section {
  margin-bottom: 5px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  line-height: 1.2;
}

.section-description {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 8px;
  max-width: 800px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 5px;
}

.feature-item {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  width: auto;
  height: auto;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  color: #808080 !important;
  font-size: 2em !important;
  /* 2x relative to parent icon size */
  line-height: 1;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  text-align: center;
  width: 100%;
  display: block;
}

/* Membership and Dedicated Desks Styling */
.membership-advantages,
.dedicated-features {
  margin-top: 30px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #808080;
}

.advantages-title,
.features-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.advantages-list,
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.advantages-list li,
.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.advantages-list li:last-child,
.features-list li:last-child {
  border-bottom: none;
}

.advantages-list li strong,
.features-list li strong {
  color: #1f2937;
  font-weight: 600;
}

.membership-cta,
.dedicated-cta {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  font-style: italic;
  margin: 0;
  padding: 20px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

/* Unique Features */
.unique-features-section {
  margin-bottom: 15px;
}

.unique-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.unique-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.unique-feature:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.unique-feature-icon {
  background: #808080;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.unique-feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.unique-feature-content p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* FAQ Section - Modern Theme Design */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
  pointer-events: none;
}

.faq-section header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.faq-section .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #808080;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 36px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: none;
  text-align: left;
  font-size: 19px;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 16px 16px 0 0;
}

.faq-question:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #808080;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, transparent 0%, #808080 50%, transparent 100%);
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 0 3px 3px 0;
}

.faq-question.active::before {
  opacity: 1;
}

.faq-question.active {
  background: linear-gradient(135deg, #808080 0%, #6b7280 100%);
  color: white;
}

.faq-icon {
  color: #64748b;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 20px;
  background: #f1f5f9;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question:hover .faq-icon {
  background: #e2e8f0;
  color: #808080;
  transform: scale(1.1);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-top: 1px solid #e2e8f0;
}

.faq-answer.active {
  max-height: 800px;
  padding: 32px 36px 36px 36px;
}

.faq-answer p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  padding-top: 0;
  position: relative;
}

.faq-answer p::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 8px;
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #808080 0%, #6b7280 100%);
  border-radius: 2px;
}



/* FAQ Mobile Responsiveness */

@media (max-width: 768px) {
  .faq-section {
    padding: 30px 0;
  }

  .faq-section .section-title {
    font-size: 28px;
  }

  .faq-list {
    margin: 0 16px;
    border-radius: 8px;
  }

  .faq-question {
    padding: 20px 24px;
    font-size: 16px;
  }

  .faq-answer.active {
    padding: 0 24px 24px 24px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-section .section-title {
    font-size: 24px;
  }

  .faq-list {
    margin: 0 12px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer.active {
    padding: 0 20px 20px 20px;
  }

  .faq-icon {
    font-size: 14px;
    margin-left: 12px;
  }
}

/* Slightly larger touch targets on mobile */
@media (max-width: 640px) {
  .faq-question {
    padding: 22px 24px;
    font-size: 18px;
  }
}

/* Responsive Design for Modern Service Page */
@media (max-width: 1200px) {
  .service-container {
    max-width: 100%;
  }

  .service-main-content {
    padding: 30px 40px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .service-container {
    flex-direction: column;
  }

  .service-sidebar {
    width: 100%;
    position: static;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 30px;
  }

  .service-hero {
    flex-direction: column;
    gap: 30px;
  }

  .hero-image {
    flex: none;
  }

  .main-hero-image {
    height: 250px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-main-content {
    padding: 20px;
  }

  .service-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .unique-features-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile spacing adjustments */
  .service-overview-section {
    margin-bottom: 3px;
  }

  .section-description {
    margin-bottom: 8px;
  }

  .section-title {
    margin-bottom: 5px;
  }

  .features-grid {
    margin-top: 5px;
    gap: 10px;
  }

  .gallery-images {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 180px;
  }

  .unique-feature {
    flex-direction: column;
    text-align: center;
  }

  .unique-feature-icon {
    margin: 0 auto;
  }
}

/* ============================================
   MODERN CONTACT PAGE DESIGN
   ============================================ */

.modern-contact-page {
  background: #ffffff;
  min-height: 100vh;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/* Hero Section */
.contact-hero {
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
}

.page-category {
  display: inline-block;
  background: #f3f4f6;
  color: #808080;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 40px;
  max-width: 500px;
}

.contact-quick-stats {
  display: flex;
  gap: 30px;
}

.quick-stat {
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #808080;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.hero-image {
  flex: 0 0 400px;
}

.contact-hero-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Info Cards Section */
.contact-info-section {
  padding: 80px 40px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #808080;
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #808080 0%, #6b7280 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  color: white;
  font-size: 24px;
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.contact-card p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-address,
.contact-phone,
.contact-email,
.contact-tour,
.contact-hours,
.contact-response,
.contact-duration {
  font-size: 14px;
}

.contact-phone,
.contact-email {
  font-weight: 600;
  color: #1f2937;
  font-size: 16px;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #808080;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border: 2px solid #808080;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-card-link:hover {
  background: #808080;
  color: white;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 40px;
  background: #f8f9fa;
}

.form-container {
  max-width: 1000px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.form-subtitle {
  font-size: 16px;
  color: #6b7280;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.modern-contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.message-group {
  grid-column: span 1;
}

.form-group {
  width: 100%;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 14px;
  z-index: 2;
}

.message-icon {
  top: 20px;
  transform: none;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #808080;
  box-shadow: 0 0 0 3px rgba(128, 128, 128, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

/* Error Messages */
.form-errors {
  display: flex;
  gap: 15px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.error-icon {
  color: #ef4444;
  font-size: 20px;
  flex-shrink: 0;
}

.error-content h4 {
  color: #dc2626;
  font-size: 16px;
  margin-bottom: 10px;
}

.error-content ul {
  color: #dc2626;
  font-size: 14px;
  margin: 0;
  padding-left: 15px;
}

/* Form Footer */
.form-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;
}

.privacy-notice {
  margin-bottom: 30px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-input:checked+.checkbox-custom {
  background: #808080;
  border-color: #808080;
}

.checkbox-input:checked+.checkbox-custom::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  color: #6b7280;
}

.privacy-link {
  color: #808080;
  text-decoration: none;
  font-weight: 600;
}

.privacy-link:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.submit-btn {
  background: linear-gradient(135deg, #808080 0%, #6b7280 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(128, 128, 128, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(128, 128, 128, 0.4);
}

.form-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

/* Location Section */
.location-section {
  padding: 80px 40px;
  background: #ffffff;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-description {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 40px;
}

.location-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.location-feature {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
}

.location-feature .feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #808080 0%, #6b7280 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(128, 128, 128, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.location-feature:hover .feature-icon {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(128, 128, 128, 0.3);
}

.location-feature .feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-feature .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.location-feature .feature-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.location-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.location-btn.primary {
  background: #808080;
  color: white;
  box-shadow: 0 4px 12px rgba(128, 128, 128, 0.3);
}

.location-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(128, 128, 128, 0.4);
}

.location-btn.secondary {
  background: #f3f4f6;
  color: #374151;
  border: 2px solid #e5e7eb;
}

.location-btn.secondary:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
}

/* Map Container */
.map-placeholder {
  position: relative;
}

.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.map-background {
  width: 100%;
  height: 100%;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px) brightness(0.7);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  text-align: center;
  color: white;
}

.map-icon {
  font-size: 40px;
  color: #808080;
  margin-bottom: 15px;
}

.map-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.map-content p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  background: #808080;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-link:hover {
  background: #6b7280;
}

/* Social Media Section */
.social-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e5e7eb 100%);
  text-align: center;
}

.social-container {
  max-width: 800px;
  margin: 0 auto;
}

.social-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 90px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
}

.social-link.instagram {
  background: linear-gradient(135deg, #e4405f 0%, #d73852 100%);
}

.social-link.linkedin {
  background: linear-gradient(135deg, #0a66c2 0%, #095cb5 100%);
}

.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2 0%, #1a91da 100%);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link i {
  font-size: 22px;
}

.social-link span {
  font-size: 13px;
  font-weight: 500;
}

/* Contact CTA */
.contact-cta {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-cta h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.contact-cta p {
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: #808080;
  color: white;
  box-shadow: 0 4px 12px rgba(128, 128, 128, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(128, 128, 128, 0.4);
}

.cta-btn.secondary {
  background: #374151;
  color: white;
  border: 2px solid #374151;
}

.cta-btn.secondary:hover {
  background: #1f2937;
  border-color: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(55, 65, 81, 0.4);
}

/* Responsive Design for Contact Page */
@media (max-width: 1200px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero-image {
    flex: none;
  }

  .contact-quick-stats {
    justify-content: center;
  }

  .location-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .submit-btn {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 20px;
  }

  .contact-info-section,
  .contact-form-section,
  .location-section,
  .social-section {
    padding: 60px 20px;
  }

  .contact-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-quick-stats {
    flex-direction: column;
    gap: 20px;
  }

  .social-links {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto 40px auto;
  }

  .social-link {
    flex-direction: row;
    justify-content: center;
    min-width: auto;
  }

  .cta-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }

  .location-actions {
    justify-content: center;
  }

  .location-btn {
    flex: 1;
    justify-content: center;
  }
}

/* ============================================
   MODERN ABOUT PAGE DESIGN
   ============================================ */

.modern-about-page {
  background: #ffffff;
  min-height: 100vh;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/* About Hero Section */
.about-hero {
  padding: 40px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
}

.about-title {
  font-size: 52px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 25px 0;
  line-height: 1.2;
}

.about-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 25px;
  max-width: 550px;
}

.about-stats {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #808080;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

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

/* Story Section */
.story-section {
  padding: 50px 40px;
  background: #ffffff;
}

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

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-description {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 25px;
}

.story-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
  padding: 50px 40px;
  background: #f8f9fa;
}

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

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.mission-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: #808080;
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #808080 0%, #6b7280 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  color: white;
  font-size: 32px;
}

.mission-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.mission-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* What Makes Us Different Section */
.different-section {
  padding: 50px 40px;
  background: #ffffff;
}

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

.different-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.different-description {
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 40px;
}

/* Features Grid for Different Section */
.different-section .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.different-section .feature-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #808080;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.different-section .feature-item:hover {
  background: #f1f3f4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.different-section .feature-item .feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #808080;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.different-section .feature-item .feature-icon i {
  color: white;
  font-size: 20px;
}

.different-section .feature-item .feature-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.different-section .feature-item .feature-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
  margin: 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #808080;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.different-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
  padding: 50px 40px;
  background: #f8f9fa;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.team-member {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.member-image {
  margin-bottom: 25px;
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 4px solid #f3f4f6;
}

.team-member h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.member-role {
  font-size: 14px;
  color: #808080;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-link {
  width: 35px;
  height: 35px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-link:hover {
  background: #808080;
  color: white;
  transform: translateY(-2px);
}

/* Awards Section */
.awards-section {
  padding: 50px 40px;
  background: #ffffff;
  text-align: center;
}

.awards-container {
  max-width: 1000px;
  margin: 0 auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.award-item {
  padding: 30px 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.award-item:hover {
  border-color: #808080;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(128, 128, 128, 0.1);
}

.award-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #808080 0%, #6b7280 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: white;
  font-size: 24px;
}

.award-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.award-item p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* About CTA Section */
.about-cta-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  text-align: center;
  color: white;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.cta-description {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 50px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: #808080;
  color: white;
  box-shadow: 0 6px 20px rgba(128, 128, 128, 0.4);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(128, 128, 128, 0.5);
}

/* Secondary button for dark backgrounds - CTA sections */
.cta-section .cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-section .cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

/* Enhanced CTA Section for Offices */
.service-cta-section {
  margin-top: 8px;
  padding: 0 20px;
}

.cta-banner {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-banner.enhanced {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
  padding: 40px 35px;
}

.cta-content {
  flex: 1;
}

.cta-image {
  flex: 0 0 300px;
}

.cta-visual {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-banner .cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #d1d5db;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #e5e7eb;
}

.cta-benefits li i {
  margin-right: 12px;
  font-size: 18px;
}

.cta-banner h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.cta-banner p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #d1d5db;
}

.cta-banner .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #10b981;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-banner .cta-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.cta-banner .cta-btn i {
  font-size: 18px;
}

/* Responsive CTA */
@media (max-width: 768px) {
  .cta-banner.enhanced {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .cta-image {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  .cta-banner .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 16px;
  }
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.cta-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #808080;
}

.cta-stat-label {
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive Design for About Page */
@media (max-width: 1200px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .story-content,
  .different-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .different-content {
    grid-template-areas:
      "text"
      "image";
  }

  .different-text {
    grid-area: text;
  }

  .different-image {
    grid-area: image;
  }
}

@media (max-width: 768px) {

  .about-hero,
  .story-section,
  .mission-section,
  .different-section,
  .team-section,
  .awards-section,
  .about-cta-section {
    padding: 30px 20px;
  }

  .about-title {
    font-size: 36px;
  }

  .different-section .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .different-section .feature-item {
    padding: 20px;
  }

  .cta-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-stats {
    flex-direction: column;
    gap: 25px;
  }

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

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .cta-btn {
    width: 250px;
    justify-content: center;
  }

  .cta-stats {
    flex-direction: column;
    gap: 25px;
  }
}

/* =============================================================================
   SEMANTIC HTML & ACCESSIBILITY IMPROVEMENTS
   ============================================================================= */

/* Semantic FAQ Structure */
.faq-list {
  margin: 0;
  padding: 0;
}

.faq-item {
  margin: 0;
  padding: 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0;
  color: inherit;
}

.faq-question:focus {
  outline: 2px solid #808080;
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-question:focus-visible {
  outline: 2px solid #808080;
  outline-offset: 2px;
}

/* Form Accessibility Improvements */
.form-help {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  line-height: 1.4;
}

.form-errors {
  margin-bottom: 20px;
  padding: 15px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
}

.form-errors h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #dc2626;
}

.form-errors ul {
  margin: 0;
  padding-left: 20px;
}

.form-errors li {
  margin-bottom: 5px;
  font-size: 14px;
}

/* Skip Link for Screen Readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 6px;
}

/* Home Features: icon-only and centered */
.features-section .feature-item {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.features-section .feature-item:hover {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  transform: translateY(0);
}

.features-section .feature-icon {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  width: auto;
  height: auto;
  margin: 0 auto 12px auto;
}

.features-section .feature-item:hover .feature-icon {
  background: transparent !important;
  box-shadow: none !important;
  transform: none;
}

.features-section .feature-item h3 {
  text-align: center;
}

/* Home Features: white, larger icons */
.features-section .feature-icon i {
  color: #ffffff !important;
  font-size: 2em !important;
  /* 2x relative to parent icon size */
  line-height: 1;
}

/* Legal Advantages Styling */
.legal-advantages {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #808080;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: #f1f3f4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #808080;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.advantage-icon i {
  color: white;
  font-size: 24px;
}

.advantage-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.advantage-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* Responsive Legal Advantages */
@media (max-width: 768px) {
  .advantage-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .advantage-icon {
    align-self: center;
    margin-top: 0;
  }

  .advantage-content h4 {
    font-size: 16px;
  }

  .advantage-content p {
    font-size: 14px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
  text-decoration: none;
}

.whatsapp-float i {
  font-size: 30px;
  line-height: 1;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
    font-size: 28px;
  }

  .whatsapp-float i {
    font-size: 28px;
  }
}

/* AI Benefits Styling */
.ai-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #808080;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #f1f3f4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #808080;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.benefit-icon i {
  color: white;
  font-size: 24px;
}

.benefit-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.benefit-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* Responsive AI Benefits */
@media (max-width: 768px) {
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .benefit-icon {
    align-self: center;
    margin-top: 0;
  }

  .benefit-content h4 {
    font-size: 16px;
  }

  .benefit-content p {
    font-size: 14px;
  }
}

/* Contact Page Responsive Styles */
@media (max-width: 1200px) {
  .contact-container {
    padding: 0 20px;
  }

  .contact-hero {
    padding: 50px 20px;
  }

  .hero-content {
    gap: 40px;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-info-section {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 15px;
  }

  .hero-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Override hero image order for service pages */
  .service-hero .hero-content {
    display: flex;
    flex-direction: column;
  }

  .service-hero .hero-content .service-title {
    order: 0;
  }

  .service-hero .hero-content .hero-image {
    order: 1;
  }

  .service-hero .hero-content .service-description {
    order: 2;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .contact-quick-stats {
    justify-content: center;
    gap: 20px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-info-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-column {
    gap: 20px;
  }

  .message-group {
    grid-column: span 1;
  }

  .form-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .form-actions {
    width: 100%;
  }

  .submit-btn {
    width: 100%;
  }

  .location-container {
    flex-direction: column;
    gap: 30px;
  }

  .location-info {
    order: 1;
  }

  .map-placeholder {
    order: 2;
  }

  .location-features {
    gap: 16px;
  }

  .location-feature {
    padding: 16px 0;
    gap: 16px;
  }

  .location-feature .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .location-feature .feature-content h4 {
    font-size: 17px;
  }

  .location-feature .feature-content p {
    font-size: 14px;
  }

  .location-actions {
    flex-direction: column;
    gap: 15px;
  }

  .location-btn {
    width: 100%;
    text-align: center;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 15px;
  }

  .social-link {
    flex: 1;
    min-width: 120px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 30px 10px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-subtitle {
    font-size: 14px;
  }

  .contact-quick-stats {
    flex-direction: column;
    gap: 15px;
  }

  .contact-card {
    padding: 25px 15px;
  }

  .contact-info-section {
    padding: 40px 10px;
  }

  .section-title {
    font-size: 24px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px 12px 12px 40px;
    font-size: 14px;
  }

  .input-icon {
    left: 12px;
    font-size: 12px;
  }

  .message-icon {
    top: 15px;
  }
}

/* Enhan
ced Mobile Optimization for Service Pages */
@media (max-width: 768px) {

  /* Service page mobile improvements */
  .service-container {
    flex-direction: column;
    gap: 0;
  }

  .service-sidebar {
    position: static;
    width: 100%;
    padding: 20px 16px;
    order: 2;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
  }

  .service-main-content {
    order: 1;
    padding: 20px 16px;
  }

  .services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .service-nav-link {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #64748b;
    white-space: nowrap;
    transition: all 0.2s ease;
  }

  .service-nav-link.active {
    background: #808080;
    color: white;
    border-color: #808080;
  }

  .service-nav-link:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
  }

  /* Better mobile gallery */
  .gallery-images {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-item {
    height: 200px;
    border-radius: 8px;
  }

  /* Mobile features grid */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-item {
    padding: 16px 12px;
    text-align: center;
  }

  .feature-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .feature-item h4 {
    font-size: 14px;
    line-height: 1.3;
  }

  /* Mobile service hero */
  .service-hero {
    padding: 30px 0;
  }

  .service-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .main-hero-image {
    height: 200px;
    margin: 20px 0;
  }

  .service-description {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Mobile advantages and features lists */
  .advantages-list,
  .features-list {
    padding-left: 16px;
  }

  .advantages-list li,
  .features-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
  }

  /* Mobile membership highlights */
  .membership-highlight-overview {
    margin: 24px 0 16px 0 !important;
    padding: 20px 16px !important;
  }

  .membership-highlight-overview h3 {
    font-size: 1.2em !important;
    margin-bottom: 8px !important;
  }

  .membership-highlight-overview p {
    font-size: 1em !important;
  }
}

@media (max-width: 480px) {

  /* Very small mobile optimizations */
  .service-nav-link {
    padding: 6px 10px;
    font-size: 13px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-title {
    font-size: 24px;
  }

  .main-hero-image {
    height: 180px;
  }

  .service-description {
    font-size: 15px;
  }

  .advantages-list li,
  .features-list li {
    font-size: 14px;
  }

  .membership-highlight-overview {
    padding: 16px 12px !important;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .service-hero {
    padding: 20px 0;
  }

  .main-hero-image {
    height: 150px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-container {
    gap: 30px;
  }

  .service-sidebar {
    width: 280px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Serv
ice Page Section Spacing Fixes */
.service-overview-section,
.unique-features-section {
  padding: 30px 0;
}

.service-overview-section header,
.unique-features-section header {
  margin-bottom: 30px;
}

.membership-advantages,
.dedicated-features {
  margin-top: 24px;
}

.advantages-title,
.features-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}

.advantages-list,
.features-list {
  margin-bottom: 24px;
}

/* Reduce excessive margins in service pages */
.service-gallery-section {
  padding: 20px 0;
}

.gallery-images {
  margin: 0;
}

/* Better spacing for membership highlights */
.membership-highlight-overview {
  margin: 24px 0 !important;
}

/* Mobile service page spacing */
@media (max-width: 768px) {

  .service-overview-section,
  .unique-features-section {
    padding: 20px 0;
  }

  .service-gallery-section {
    padding: 16px 0;
  }

  .membership-highlight-overview {
    margin: 20px 0 !important;
  }
}

/* Simple Text Flipper - Same Size as "Our" */
.flipper-word {
  display: inline-block;
  color: #808080;
  font-weight: 900;
  font-size: inherit;
  line-height: inherit;
  transition: all 0.5s ease;
  min-width: 280px;
  text-align: left;
  vertical-align: baseline;
}

/* Hero title - Simple and Clean */
.hero-title {
  line-height: 1.1;
  word-spacing: 0.1em;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .flipper-word {
    min-width: 220px;
  }
}

@media (max-width: 480px) {
  .flipper-word {
    min-width: 180px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .flip-text {
    transition: opacity 0.3s ease;
    transform: none !important;
  }
}

/* Hero title layout fixes for text flipper */
.hero-title {
  line-height: 1.1;
  word-spacing: 0.1em;
}

.hero-title .title-accent {
  position: relative;
  z-index: 1;
}

/* Ensure text doesn't break awkwardly */
.hero-title br {
  display: block;
}



/* Mobile text adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
    line-height: 1.15;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }


}

/* Ad
ditional mobile hero fixes */
@media (max-width: 768px) {
  .hero-section .container {
    padding: 0 16px;
  }

  .hero-text-content {
    position: relative;
    z-index: 2;
  }

  .hero-image-container {
    position: relative;
    z-index: 1;
  }

  /* Ensure proper spacing between text and image */
  .hero-workspace-image {
    border-radius: 8px;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 20px 0 30px 0;
  }

  .hero-text-content {
    gap: 20px;
    margin-bottom: 30px;
  }

  .hero-image-container {
    margin-top: 15px;
  }

  .hero-workspace-image {
    height: 250px;
    border-radius: 6px;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    padding: 20px 0;
  }

  .hero-text-content {
    gap: 20px;
    margin-bottom: 20px;
  }

  .hero-workspace-image {
    height: 200px;
  }
}

/* E
nhanced FAQ Mobile Responsiveness */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-section .section-title {
    font-size: 32px;
  }

  .faq-list {
    margin: 0 20px;
  }

  .faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .faq-question {
    padding: 24px 28px;
    font-size: 17px;
    border-radius: 12px 12px 0 0;
  }

  .faq-answer.active {
    padding: 24px 28px 28px 28px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-left: 16px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 30px 0;
  }

  .faq-section .section-title {
    font-size: 28px;
  }

  .faq-list {
    margin: 0 16px;
  }

  .faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .faq-question {
    padding: 20px 24px;
    font-size: 16px;
    border-radius: 10px 10px 0 0;
  }

  .faq-answer.active {
    padding: 20px 24px 24px 24px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 1.7;
  }

  .faq-answer p::before {
    left: -16px;
    width: 3px;
    height: 16px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin-left: 12px;
  }
}

/* Enha
nced Location Features Alignment */
.location-features {
  padding: 0;
}

.location-feature {
  border-radius: 12px;
  transition: all 0.3s ease;
  margin: 0;
}

.location-feature:hover {
  background: rgba(248, 250, 252, 0.8);
  padding: 20px 16px;
  margin: 0 -16px;
}

/* Ensure consistent icon alignment */
.location-feature .feature-icon i {
  line-height: 1;
  vertical-align: middle;
}

/* Better text alignment */
.location-feature .feature-content {
  min-height: 56px;
  justify-content: center;
}

/* Mobile specific alignment fixes */
@media (max-width: 480px) {
  .location-feature {
    padding: 12px 0;
    gap: 12px;
  }

  .location-feature:hover {
    padding: 12px 8px;
    margin: 0 -8px;
  }

  .location-feature .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
    border-radius: 12px;
  }

  .location-feature .feature-content {
    min-height: 44px;
  }

  .location-feature .feature-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .location-feature .feature-content p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Mobile 
Footer Collapsible Sections */
.footer-toggle {
  display: none;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.footer-toggle {
  width: 100%;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-toggle .footer-subtitle {
  margin: 0;
  padding: 0;
  border-bottom: none;
  flex: 1;
  text-align: left;
}

.footer-chevron {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  margin-left: 16px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-collapsible.active {
  max-height: 300px;
  padding-bottom: 16px;
}

/* Mobile Footer Styles - Enhanced Design */
@media (max-width: 768px) {
  .footer-toggle {
    display: flex;
  }

  .footer-section .footer-subtitle {
    display: none;
  }

  .footer-toggle .footer-subtitle {
    display: block;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-section {
    border-bottom: none;
  }

  .footer-text {
    padding: 0;
  }

  .footer-collapsible {
    padding: 0 24px;
    margin-top: 8px;
  }

  .footer-collapsible.active {
    padding: 20px 24px 24px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* Desktop Footer - Keep Original Behavior */
@media (min-width: 769px) {
  .footer-collapsible {
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  .footer-toggle .footer-subtitle {
    border-bottom: none;
    padding: 0;
  }

  .footer-chevron {
    display: none;
  }
}

/* Enhanced Mobile Menu Top Alignment */
.nav-menu.mobile-open {
  align-content: flex-start;
}

.nav-menu.mobile-open .nav-list {
  flex-shrink: 0;
  align-self: flex-start;
}

.nav-menu.mobile-open .nav-item:first-child {
  margin-top: 0;
}

.nav-menu.mobile-open .nav-item:first-child .nav-link {
  padding-top: 20px;
}

/* Ensure no unwanted spacing at top */
@media (max-width: 768px) {
  .nav-menu.mobile-open {
    padding-top: 0;
  }

  .nav-menu.mobile-open .nav-list {
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .nav-menu.mobile-open .nav-item:first-child .nav-link {
    padding-top: 16px;
  }
}

/* Ensure hero section doesn't overflow */
.hero-section {
  overflow-x: hidden;
}

.hero-text-content {
  overflow-x: hidden;
}

/* Fix icon overflow in sections */
.features-grid,
.testimonials-grid,
.contact-content {
  overflow-x: hidden;
}

.feature-item,
.testimonial-item {
  max-width: 100%;
  overflow: hidden;
}

/* Mobile container fixes */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    overflow-x: hidden;
  }


}

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

/* Enh
anced Footer Mobile Design */
@media (max-width: 768px) {
  .footer-section {
    margin-bottom: 0;
  }

  .footer-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
  }

  .footer-toggle[aria-expanded="true"] .footer-chevron {
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 1);
  }

  .footer-collapsible {
    border-radius: 0 0 8px 8px;
    margin-top: 0;
  }

  /* Better spacing for footer content */
  .footer-main-title {
    margin-bottom: 32px;
    text-align: center;
  }

  .footer-main-title h2 {
    font-size: 24px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .footer-toggle {
    padding: 16px 20px;
    border-radius: 6px;
  }

  .footer-collapsible.active {
    padding: 16px 20px 20px 20px;
  }

  .footer-chevron {
    font-size: 14px;
    width: 18px;
    height: 18px;
  }
}

/* This is handled by the new footer styles at the end of the file */

/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.faq-section .section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
  padding: 24px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: #666;
}

.faq-icon {
  font-size: 0.9rem;
  color: #666;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #666;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

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

  .faq-question {
    padding: 20px 20px;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-icon {
    margin-left: 12px;
  }
}



/* Additional FAQ alignment fixes */
.faq-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section .section-header .section-title .title-accent {
  color: #666;
}

/* Ensure proper button styling */
.faq-question:focus {
  outline: 2px solid #808080;
  outline-offset: 2px;
}

.faq-question:active {
  transform: translateY(1px);
}

/* Better spacing for FAQ items */
.faq-item:last-child {
  margin-bottom: 0;
}

/* Smooth animation for better UX */
.faq-answer {
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ens
ure Font Awesome icons are always visible */
i[class*="fa-"] {
  opacity: 1 !important;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Fallback for icons before Font Awesome loads */
i[class*="fa-"]:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands", sans-serif;
  font-weight: 900;
  font-display: swap;
}

/* Specific font weights for different icon types */
.fas,
.fa-solid {
  font-weight: 900;
}

.far,
.fa-regular {
  font-weight: 400;
}

.fab,
.fa-brands {
  font-weight: 400;
}

/* Fo
oter Styles - Hide chevrons on desktop */
@media (min-width: 769px) {
  .footer-chevron {
    display: none !important;
  }

  /* Also hide the footer toggle buttons on desktop since they're not needed */
  .footer-toggle {
    cursor: default;
    pointer-events: none;
  }

  /* Make footer content always visible on desktop */
  .footer-collapsible {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
  }
}

/* Footer Mobile Styles - Show chevrons and enable collapsible behavior */
@media (max-width: 768px) {
  .footer-chevron {
    display: inline-block !important;
    transition: transform 0.3s ease;
  }

  .footer-toggle {
    cursor: pointer;
    pointer-events: auto;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
  }

  .footer-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .footer-collapsible.active {
    max-height: 500px;
  }
}

/* Fe
atures Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #e0e0e0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  color: #666;
  font-size: 24px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #666 0%, #808080 100%);
  color: white;
  transform: scale(1.1);
}

.feature-item h4,
.feature-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333 !important;
  margin: 0;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
  }

  .feature-item {
    padding: 20px 12px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .feature-item h4,
  .feature-item h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/*
 Ensure Font Awesome icons are always visible on all pages */
.feature-icon i[class*="fa-"],
.feature-icon i.fas,
.feature-icon i.far,
.feature-icon i.fab {
  opacity: 1 !important;
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands", sans-serif !important;
}

/* Specific fix for virtual office page and other service pages */
.service-overview-section .feature-item h3,
.service-overview-section .feature-item h4 {
  color: #333 !important;
  background: transparent !important;
}

/* Additi
onal fixes for text visibility issues */
.features-grid .feature-item h3,
.features-grid .feature-item h4 {
  color: #333 !important;
  text-shadow: none !important;
  background-color: transparent !important;
}

/* Ensure proper contrast and visibility */
.feature-item {
  background-color: #fff !important;
}

.feature-item h3,
.feature-item h4 {
  color: #333 !important;
}

/*
 Comprehensive Font Awesome icon fixes */
.fas,
.fa-solid {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.far,
.fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* Force visibility for all icon containers */
.feature-icon,
.faq-icon,
.footer-chevron,
.stat-card-icon,
.contact-icon,
.contact-card-icon,
.mission-icon,
.office-icon,
.event-icon,
.input-icon,
.stat-icon,
.space-icon,
.nav-link i,
.btn i {
  opacity: 1 !important;
  visibility: visible !important;
}

.feature-icon i,
.faq-icon i,
.footer-chevron i,
.stat-card-icon i,
.contact-icon i,
.contact-card-icon i,
.mission-icon i,
.office-icon i,
.event-icon i,
.input-icon,
.stat-icon i,
.space-icon i,
.nav-link i,
.btn i {
  opacity: 1 !important;
  display: inline-block !important;
  visibility: visible !important;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif !important;
  font-weight: 900 !important;
  font-style: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* Fallback icon styles for critical UI elements */
.feature-icon i:before,
.faq-icon i:before {
  font-display: swap !important;
}

/* Font Awesome fonts are now loaded locally via fontawesome.css */

/* ========================================
   DROPDOWN MENU STACKING CONTEXT FIX
   ======================================== */
/* Keep header/nav above all sections */
.header {
  position: fixed;
  z-index: 10000 !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
}

.navbar,
.nav-menu {
  position: relative;
  z-index: 10000 !important;
  overflow: visible !important;
}

/* Make each top-level nav item a positioning context */
.nav-list li,
.nav-item {
  position: relative !important;
  z-index: 10001 !important;
}

/* Ensure the dropdown is on top and not clipped */
.dropdown-menu {
  position: absolute !important;
  left: 0;
  top: 100%;
  z-index: 11000 !important;
  max-height: none !important;
  height: auto !important;
  clip: auto !important;
  clip-path: none !important;
}

/* Ensure dropdown parent doesn't clip */
.nav-item.dropdown {
  overflow: visible !important;
  position: relative !important;
  z-index: 10001 !important;
}

/* When dropdown is visible, ensure nothing clips it */
.nav-item:hover .dropdown-menu,
.nav-item.active .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  clip: auto !important;
  clip-path: none !important;
}

/* If any hero/section was clipping the dropdown, unclip it */
.hero,
.hero-section,
.service-hero,
.section,
.banner,
.slider,
.swiper,
.cover,
.modern-service-page,
.service-container,
.service-main-content,
.service-sidebar,
main,
section {
  overflow: visible !important;
  overflow-x: hidden !important;
  /* Only hide horizontal overflow */
  overflow-y: visible !important;
  /* Allow vertical overflow for dropdown */
}

/* Prevent body/html from becoming scrollable due to dropdown */
body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

/* Make sure main content area doesn't become a scroll container */
.modern-service-page,
.service-container {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* Ensure main content doesn't overlap header dropdown area */
.main-content,
main#main-content {
  position: relative !important;
  z-index: 1 !important;
}

/* If any ancestor had transform/filter that created a new stacking context, neutralize it for the header */
.header,
.navbar,
.nav-menu,
.container {
  transform: none !important;
  filter: none !important;
  will-change: auto !important;
}

/* 
Service Pages Styles */
.modern-service-page {
  display: flex;
  min-height: 100vh;
  background: #f8f9fa;
}

.service-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
}

/* Service Sidebar */
.service-sidebar {
  width: 300px;
  flex-shrink: 0;
  padding: 40px 0;
}

.sidebar-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.text-grey {
  color: #808080;
}

.text-green {
  color: #808080;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services-list li {
  margin-bottom: 8px;
}

.service-nav-link {
  display: block;
  padding: 12px 15px;
  color: #666;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.service-nav-link:hover,
.service-nav-link.active {
  background: #808080;
  color: white;
}

.schedule-tour-btn {
  display: block;
  background: #808080;
  color: white;
  text-align: center;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.schedule-tour-btn:hover {
  background: #5a5a5a;
  transform: translateY(-2px);
}

.contact-section .contact-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #808080;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info p {
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.place-cta {
  background: linear-gradient(135deg, #808080, #666);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  margin-top: 20px;
}

.place-cta-content h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.contact-cta-btn {
  display: inline-block;
  background: white;
  color: #808080;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.contact-cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Service Main Content */
.service-main-content {
  flex: 1;
  padding: 40px 0;
}

/* Service Hero Section */
.service-hero {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 48px;
  font-weight: 800;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-image {
  margin: 30px 0;
  order: 2;
}

.main-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.service-description {
  order: 3;
}

.service-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.service-description p:last-child {
  margin-bottom: 0;
}

/* Service Gallery */
.service-gallery-section {
  margin-bottom: 40px;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

/* Service Overview Section */
.service-overview-section {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.section-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: #e9ecef;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #808080;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-size: 24px;
}

.feature-item h3,
.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

/* Unique Features Section */
.unique-features-section {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.membership-advantages {
  margin: 30px 0;
}

.advantages-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

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

.advantages-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.advantages-list li:last-child {
  border-bottom: none;
}

.advantages-list li strong {
  color: #333;
  font-weight: 600;
}

.unique-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.unique-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.unique-feature:hover {
  transform: translateY(-3px);
  background: #e9ecef;
}

.unique-feature-icon {
  width: 50px;
  height: 50px;
  background: #808080;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.unique-feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.unique-feature-content p {
  color: #666;
  margin: 0;
  font-size: 14px;
}

/* Service CTA Section */
.service-cta-section {
  margin-bottom: 40px;
}

.cta-banner {
  background: linear-gradient(135deg, #808080, #666);
  border-radius: 12px;
  padding: 40px;
  color: white;
  text-align: center;
}

.cta-banner.enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #808080;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cta-visual {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .service-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .service-sidebar {
    width: 100%;
    padding: 20px 0;
  }

  .sidebar-section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .service-main-content {
    padding: 20px 0;
  }

  .service-hero {
    padding: 25px;
    margin-bottom: 25px;
  }

  .service-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  /* CRITICAL: Fix hero image positioning on mobile */
  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .service-title {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin: 20px 0;
  }

  .service-description {
    order: 3;
  }

  .main-hero-image {
    height: 250px;
  }

  .service-overview-section,
  .unique-features-section {
    padding: 25px;
    margin-bottom: 25px;
  }

  .section-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .unique-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-banner.enhanced {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .cta-title {
    font-size: 28px;
  }

  .gallery-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

@media (max-width: 480px) {
  .service-hero {
    padding: 20px;
  }

  .service-title {
    font-size: 28px;
  }

  .main-hero-image {
    height: 200px;
  }

  .service-overview-section,
  .unique-features-section {
    padding: 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .feature-item h3,
  .feature-item h4 {
    font-size: 14px;
  }
}

/ * Additional dropdown scroll prevention */ .nav-item.dropdown:hover {
  /* Prevent any layout shifts */
  transform: translateZ(0);
}

/* Ensure dropdown doesn't cause reflow */
.dropdown-menu {
  /* Use GPU acceleration for smoother animations */
  transform: translate3d(0, 10px, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.nav-item:hover .dropdown-menu {
  transform: translate3d(0, 0, 0);
}

/* Prevent scrollbar from appearing during dropdown animation */
html {
  overflow-y: scroll;
}

/* Fix for dropdown causing page jump */
@media (min-width: 769px) {
  .header {
    /* Ensure header doesn't cause layout shifts */
    transform: translate3d(0, 0, 0);
  }

  .dropdown-menu {
    /* Prevent dropdown from affecting document flow */
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    margin: 0;
    /* Ensure dropdown is contained within viewport */
    max-width: min(300px, calc(100vw - 40px));
  }

  /* Prevent horizontal overflow from dropdown */
  .nav-item.dropdown {
    overflow: visible;
  }

  .nav-item.dropdown:last-child .dropdown-menu {
    /* Adjust last dropdown to stay within viewport */
    left: auto;
    right: 0;
  }
}

/* Final fi
x for dropdown scroll issue */
@media (min-width: 769px) {

  /* Ensure header doesn't cause layout shifts */
  .header {
    will-change: auto;
    contain: layout;
  }

  /* Prevent dropdown from causing page reflow */
  .nav-item.dropdown {
    position: relative;
    isolation: isolate;
  }

  .dropdown-menu {
    /* Use transform instead of top/left for positioning */
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    /* Prevent any layout calculations */
    contain: layout size style;
    /* Ensure dropdown doesn't affect scrollbars */
    overflow: hidden;
  }

  .nav-item:hover .dropdown-menu {
    transform: translateY(0);
    overflow: visible;
  }

  /* Prevent Services dropdown from going off-screen */
  .nav-item:last-of-type .dropdown-menu,
  .nav-item:nth-last-of-type(2) .dropdown-menu {
    left: auto;
    right: 0;
  }

  /* Ensure no horizontal scrollbar appears */
  .navbar .container {
    contain: layout;
  }
}

/* Fina
l Clean Header & Dropdown Styles */
@media (min-width: 769px) {

  /* Ensure header stays fixed height */
  .header {
    height: 80px !important;
  }

  .navbar {
    height: 80px !important;
  }

  /* Ensure dropdown doesn't affect header */
  .dropdown-menu {
    position: absolute;
    top: 80px;
    margin-top: 0;
  }

  /* Right-align last dropdowns to stay in viewport */
  .nav-item:nth-last-child(-n+2) .dropdown-menu {
    left: auto;
    right: 0;
  }
}

/* Prevent any layout shifts */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}