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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #c5a47e;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #c5a47e;
  color: white;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #b08e68;
  transform: translateY(-3px);
}

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

.section {
  padding: 100px 0;
}

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

.section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

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

.logo img {
  height: 80px;
  width: auto;
  filter: none;
  transition: all 0.3s ease;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  list-style: none;
  position: absolute;
  left: 60%;
  transform: translateX(-50%);
  background-color: rgba(240, 240, 240, 0.9);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-menu li {
  margin: 0 8px;
}

.nav-menu a {
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 15px;
  transition: all 0.3s ease;
  display: block;
}

.nav-menu a:hover {
  color: #fff;
  background-color: #c5a47e;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-growth-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #c5a47e;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-features {
  list-style: none;
  margin: 30px 0 40px 0;
  padding: 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-features li i {
  color: #c5a47e;
  margin-right: 15px;
  font-size: 1.3rem;
  width: 20px;
  text-align: center;
}

/* About Section */
.about {
  background-color: #f9f9f9;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.feature-item {
  flex: 1;
  min-width: 150px;
  margin-bottom: 20px;
}

.feature-item i {
  color: #c5a47e;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 250px;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay h4 {
  margin-bottom: 10px;
}

/* Amenities Section */
.amenities {
  background-color: #f9f9f9;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.amenity-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.amenity-item:hover {
  transform: translateY(-10px);
}

.amenity-item i {
  font-size: 2.5rem;
  color: #c5a47e;
  margin-bottom: 20px;
}

.amenity-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Location Section */
.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.location-map {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 5px;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.location-info ul {
  list-style: none;
  margin-top: 20px;
}

.location-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.location-info li i {
  color: #c5a47e;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Payment Plan Section */
.payment-plan {
  background-color: #fff;
}

.payment-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}

.payment-step {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  padding: 30px;
  margin: 15px;
  background-color: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-step h3 {
  color: #c5a47e;
  margin-bottom: 15px;
}

.payment-step .percentage {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: #c5a47e;
  margin-right: 15px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Form Success and Error Messages */
.form-success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid #4caf50;
  padding: 30px;
  text-align: center;
  border-radius: 5px;
}

.form-success i {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.form-success h3 {
  color: #4caf50;
  margin-bottom: 15px;
}

.form-error {
  background-color: rgba(244, 67, 54, 0.1);
  border: 1px solid #f44336;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  color: #f44336;
}

/* Developer Section */
.developer {
  background-color: #fff;
}

.developer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.developer-text {
  flex: 1;
  min-width: 300px;
}

.developer-logo {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.developer-logo img {
  max-width: 250px;
}

/* Fairmont Logo Section */
.fairmont-logo-section {
  flex: 0 0 auto;
  min-width: 200px;
  text-align: center;
  margin-top: 30px;
}

.fairmont-logo {
  text-align: center;
  margin-bottom: 20px;
}

.fairmont-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.fairmont-logo p {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

/* Developer Section Updates */
.developer-logos {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.developer-logo img,
.developer-logos .fairmont-logo img {
  max-width: 250px;
  height: auto;
}

.developer-logos .fairmont-logo {
  margin-bottom: 0;
}

.developer-logos .fairmont-logo p {
  color: #fff;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  color: #c5a47e;
  font-size: 1.3rem;
  margin-bottom: 25px;
}

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

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

.footer-links a:hover {
  color: #c5a47e;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Parallax Sections */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
  position: relative;
  color: #fff;
  text-align: center;
}

.parallax-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.parallax-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.parallax-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.parallax-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #c5a47e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #b08e68;
}

/* Contact Buttons */
.contact-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.contact-button {
  width: 50px;
  height: 50px;
  background-color: #c5a47e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
  background-color: #b08e68;
  transform: translateY(-3px);
}

.whatsapp {
  background-color: #25d366;
}

.phone {
  background-color: #007bff;
}

.email {
  background-color: #ea4335;
}

.telegram {
  background-color: #0088cc;
}

.telegram:hover {
  background-color: #006699;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

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

  .section {
    padding: 80px 0;
  }

  .parallax-section {
    padding: 120px 0;
  }

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

@media (max-width: 1200px) {
  .nav-menu {
    left: 65%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .hero-growth-title {
    font-size: 1.2rem;
  }

  .section {
    padding: 60px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transform: none;
    left: auto;
    border-radius: 0;
  }

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

  .nav-menu li {
    margin: 15px 0;
    width: 100%;
  }

  .nav-menu a {
    color: #333 !important;
    font-size: 1rem;
    display: block;
    padding: 12px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
  }

  .nav-menu a:hover {
    color: #c5a47e !important;
    background-color: rgba(197, 164, 126, 0.1);
    padding-left: 10px;
    transform: none;
  }

  .parallax-section {
    padding: 100px 0;
    background-attachment: scroll;
  }

  .parallax-title {
    font-size: 2.2rem;
  }

  /* Responsive adjustments for logos */
  .fairmont-logo-section {
    margin-top: 40px;
  }

  .fairmont-logo img,
  .developer-logo img,
  .developer-logos .fairmont-logo img {
    max-width: 180px;
  }

  .developer-logos {
    gap: 30px;
  }

  /* Hero features responsive */
  .hero-features li {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

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

  .hero-growth-title {
    font-size: 1.1rem;
  }

  .section {
    padding: 50px 0;
  }

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

  .parallax-section {
    padding: 80px 0;
  }

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

  .parallax-text {
    font-size: 1rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }

  .contact-buttons {
    bottom: 20px;
    left: 20px;
  }

  .contact-button {
    width: 40px;
    height: 40px;
  }

  /* Responsive adjustments for logos */
  .fairmont-logo img,
  .developer-logo img,
  .developer-logos .fairmont-logo img {
    max-width: 150px;
  }

  .developer-logos {
    gap: 25px;
  }

  /* Hero features responsive */
  .hero-features li {
    font-size: 0.95rem;
  }

  .hero-features li i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }

  .nav-menu a {
    font-size: 0.75rem;
  }

  .nav-toggle {
    font-size: 1.2rem;
  }
}
