:root {
  --primary-color: #1a1a1a;
  --accent-color: #f8e9a1;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #ffffff;
  --bg-dark: #1a1a1a;
  --form-bg: #f5f5f5;
  --border-color: #e0e0e0;
  --transition: all 0.3s ease;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --container-width: 1200px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, .btn {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
}

#content {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.section {
  padding: 50px 0;
  width: 100%;
}

.hidden {
  display: none;
}

/* Ensure all main containers respect width constraints */
.pricing-container,
.about-container,
.footer-container,
.spaces-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.pricing-section,
.about-section,
.spaces-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure all main containers respect width constraints */
.pricing-container,
.about-container,
.footer-container,
.spaces-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.pricing-section,
.about-section,
.spaces-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 15px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text-dark);
  position: relative;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

.nav-menu a.active {
  color: var(--accent-color);
}

.nav-icons {
  display: flex;
  align-items: center;
}

.nav-icon {
  margin-left: 15px;
  font-size: 18px;
  color: var(--text-dark);
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
}

.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.language-switcher button {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 5px 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}

.language-switcher button.active {
  opacity: 1;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.language-switcher .divider {
  height: 15px;
  width: 1px;
  background-color: var(--text-dark);
  opacity: 0.3;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .language-switcher {
    margin-right: 15px;
  }
}

.hero-section {
  height: 100vh;
  display: flex;
  position: relative;
  max-width: var(--container-width);
  margin: 0 auto;
}

.hero-sidebar {
  width: 25%;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 120px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-main {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.hero-contact {
  width: 25%;
  background-color: var(--bg-light);
  padding: 120px 30px 30px;
  display: flex;
  flex-direction: column;
}

.hero-brand {
  margin-bottom: 30px;
}

.hero-brand h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.hero-tagline {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-description {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 30px;
}

.hero-cta {
  background-color: var(--text-light);
  color: var(--bg-dark);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}

.hero-cta .icon {
  margin-left: 10px;
}

.hero-social {
  display: flex;
  align-items: center;
}

.hero-social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 14px;
}

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

.contact-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-button {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: var(--text-dark);
  opacity: 0.7;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
}

.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 10px center;
  background-size: 15px;
}

.submit-btn {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 12px;
  border-radius: 5px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

.submit-btn:hover {
  opacity: 0.9;
}

.contact-info {
  margin-top: auto;
  text-align: center;
}

.tagline-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  background-color: var(--bg-light);
  padding: 30px;
}

.tagline-text {
  font-size: 28px;
  font-weight: 600;
}

.tagline-text span {
  color: var(--primary-color);
}

.tagline-text .highlight {
  position: relative;
  display: inline-block;
}

.tagline-text .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(248, 233, 161, 0.5);
  z-index: -1;
}

.pricing-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
}

.pricing-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  width: 30%;
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

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

.pricing-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-period {
  font-size: 14px;
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 500;
  display: block;
  text-align: center;
}

.spaces-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.spaces-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  width: 100%;
}

.space-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: var(--bg-light);
  width: 100%;
}

.space-card:hover {
  transform: translateY(-10px);
}

.space-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.space-content {
  padding: 20px;
}

.space-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.space-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 768px) {
  .spaces-gallery {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .space-image {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .spaces-gallery {
    grid-template-columns: 1fr;
  }
}

.about-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.about-container {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  width: 50%;
  padding-right: 50px;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-content {
  width: 50%;
}

.about-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-description {
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-features {
  list-style: none;
}

.about-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.about-features .icon {
  margin-right: 15px;
  background-color: rgba(248, 233, 161, 0.3);
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text {
  font-size: 14px;
}

.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-column {
  width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.8;
}

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

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 16px;
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .hero-sidebar {
    padding: 120px 30px 30px;
  }
  
  .hero-brand h1 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    height: auto;
    max-width: 100%;
  }
  
  .hero-sidebar,
  .hero-main,
  .hero-contact {
    width: 100%;
    padding: 60px 30px;
  }
  
  .hero-sidebar { order: 1; }
  .hero-main { 
    order: 0;
    height: 60vh;
    position: relative;
  }
  .hero-contact { order: 2; }
  
  .tagline-banner {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    position: relative;
  }
  
  .hero-main {
    height: 50vh;
  }
  
  .hero-brand {
    position: absolute;
    top: 30vh;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
    color: var(--text-light);
    z-index: 10;
  }
  
  .hero-brand h1 {
    color: var(--accent-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }
  
  .hero-tagline {
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }
}

@media (max-width: 768px) {
  .hero-brand {
    top: 40%;
    transform: translateY(-50%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    padding: 30px;
  }
  
  .hero-brand h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }
  
  .hero-sidebar {
    padding: 40px 20px;
  }
  
  .hero-contact {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .hero-brand {
    top: 40%;
    transform: translateY(-50%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    padding: 30px;
  }
  
  .hero-brand h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }
  
  .hero-sidebar {
    padding: 40px 20px;
  }
  
  .hero-contact {
    padding: 40px 20px;
  }
}

@media (max-width: 992px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 80%;
    margin-bottom: 30px;
  }
  
  .about-container {
    flex-direction: column;
  }
  
  .about-image,
  .about-content {
    width: 100%;
    padding: 0;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .footer-column {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 15px;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 0;
    z-index: 100;
  }
  
  .nav-menu.mobile-active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-menu li {
    margin: 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-menu li a {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-brand h1 {
    font-size: 36px;
  }
  
  .tagline-text {
    font-size: 24px;
  }
  
  .pricing-card {
    width: 100%;
  }
  
  .footer-column {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-brand h1 {
    font-size: 32px;
  }
  
  .hero-tagline {
    font-size: 16px;
  }
  
  .tagline-text {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 28px;
  }
}

/* Additional responsive fixes for container content */
@media (max-width: 576px) {
  .pricing-card,
  .spaces-gallery,
  .gallery {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .spaces-gallery {
    grid-template-columns: 1fr;
  }
}

/* Additional responsive fixes for container content */
@media (max-width: 576px) {
  .pricing-card,
  .spaces-gallery,
  .gallery {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .spaces-gallery {
    grid-template-columns: 1fr;
  }
}