@charset "UTF-8";
/*!
 * Project Name: Traventure Homes - Koyambedu
 * Author: Tamil Selva
 * Version: 1.0.0
 * Description: Custom CSS for layout, styling, and responsive design.
 * Created: 19 Sep 2025
 * Updated: 07 Jan 2025
 */
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Castoro+Titling&family=Castoro:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Castoro Titling", serif;
}

p,
ul,
ol,
li,
a,
span,
button {
  font-family: "outfit", sans-serif;
}

body {
  background-color: var(--black-color);
}

html,
body {
  scroll-behavior: smooth;
}

/* Typography */
/* Root Variables */
:root {
  --primary-color: #ca9e46;
  --secondary-color: #fabe75;
  --tertiary-color: #ababab;
  --white-color: #fff;
  --black-color: #000;
}

/* Root Variables */
/* Custom scroll bar */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

/* Custom scroll bar */
.site-header {
  background: #f0f0f0f2;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.site-header .nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .brand img {
  height: 60px;
  transition: transform 0.3s ease;
}
.site-header .brand img:hover {
  transform: scale(1.05);
}
.site-header .sub-brand img {
  height: 100px;
  width: 100px;
  transition: transform 0.3s ease;
}
.site-header .sub-brand img:hover {
  transform: scale(1.05);
}
.site-header .nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-header .btn-enquiry {
  background: var(--black-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.site-header .btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.site-header .nav__links {
  display: flex;
  gap: 24px;
}
.site-header .nav__links a {
  color: var(--primary-color);
  font-weight: 400;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}
.site-header .nav__links a:hover {
  color: blanchedalmond;
}
.site-header .nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--black-color);
  transition: width 0.3s ease;
}
.site-header .nav__links a:hover::after {
  width: 100%;
}
.site-header .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.site-header .hamburger span {
  width: 25px;
  height: 3px;
  background: var(--black-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.site-header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.site-header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 900px) {
  .site-header .nav {
    padding: 10px 10px;
  }
  .site-header .hamburger {
    display: flex;
  }
  .site-header .nav__links {
    position: absolute;
    top: 125px;
    left: 0;
    right: 0;
    background: #646464;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    display: none;
  }
  .site-header .nav__links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .site-header .btn-enquiry {
    display: none;
  }
}

.btn-enquiry-mobile {
  display: none;
}

@media (max-width: 900px) {
  .btn-enquiry-mobile {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    z-index: 99;
    background: var(--black-color);
    color: var(--primary-color);
    border: none;
    padding: 18px 0;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    border: 1px solid var(--primary-color);
  }
  .btn-enquiry-mobile:active,
  .btn-enquiry-mobile:hover {
    background: var(--primary-color);
    color: var(--black-color);
  }
}
.banner {
  width: 100%;
  position: relative;
}
.banner .banner-img {
  width: 100%;
  height: 100vh;
  display: none;
}
.banner .desktop {
  display: block;
}
.banner .mobile {
  display: none;
}
@media (max-width: 768px) {
  .banner .desktop {
    display: none;
  }
  .banner .mobile {
    display: block;
  }
}

.overview {
  padding: 80px 20px;
  text-align: center;
}
.overview .container {
  max-width: 1200px;
  margin: 0 auto;
}
.overview .section-title h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.overview .section-title .underline {
  width: 80px;
  height: 1px;
  background: var(--primary-color);
  margin: 12px auto 30px auto;
  border-radius: 5px;
}
.overview .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--tertiary-color);
  margin-bottom: 40px;
  font-weight: 300;
}
.overview .lead .highlight {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.3rem;
}
.overview .features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.overview .features .feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(234, 174, 53, 0.2);
  padding: 25px 30px;
  border-radius: 12px;
  width: 280px;
  transition: all 0.3s ease;
}
.overview .features .feature-card strong {
  display: block;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: "outfit", serif;
  font-weight: 300;
}
.overview .features .feature-card .muted {
  color: var(--tertiary-color);
  font-size: 0.9rem;
  font-family: "outfit", serif;
}
.overview .features .feature-card:hover {
  background: rgba(234, 174, 53, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}
@media (max-width: 768px) {
  .overview {
    padding: 60px 15px;
  }
  .overview .lead {
    font-size: 1rem;
  }
  .overview .features {
    flex-direction: column;
    align-items: center;
  }
  .overview .features .feature-card {
    width: 100%;
    max-width: 320px;
  }
}

#location {
  background: var(--black-color);
  color: var(--white-color);
  padding: 80px 20px;
}
#location .grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
#location .section-title h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}
#location .section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin-top: 6px;
  border-radius: 2px;
}
#location .adv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
#location .adv-list li {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--tertiary-color);
  padding-left: 18px;
  position: relative;
}
#location .adv-list li strong {
  color: var(--secondary-color);
  font-weight: 600;
}
#location .adv-list li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}
#location .chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
#location .chip-list .chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(234, 174, 53, 0.25);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
#location .chip-list .chip:hover {
  background: rgba(234, 174, 53, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
#location aside {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(234, 174, 53, 0.2);
  border-radius: 12px;
  padding: 25px 20px;
}
#location aside .adv-list li {
  color: var(--white-color);
  font-size: 0.95rem;
}
#location aside .lead {
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--tertiary-color);
  font-family: "outfit", serif;
}
#location aside .lead strong {
  color: var(--primary-color);
}
@media (max-width: 992px) {
  #location .grid {
    grid-template-columns: 1fr;
  }
  #location aside {
    margin-top: 30px;
  }
}

#floorplans {
  background: var(--black-color);
  color: var(--white-color);
  padding: 80px 20px;
}
#floorplans .section-title {
  text-align: center;
  margin-bottom: 25px;
}
#floorplans .section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
#floorplans .section-title h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--primary-color);
  margin: 8px auto 0;
  border-radius: 2px;
}
#floorplans .lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--tertiary-color);
  font-size: 1rem;
  line-height: 1.6;
}
#floorplans .floorplans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
#floorplans .floorplans .fp-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(234, 174, 53, 0.25);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}
#floorplans .floorplans .fp-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(234, 174, 53, 0.15);
}
#floorplans .floorplans .fp-item h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
#floorplans .floorplans .fp-item p.lead {
  color: var(--tertiary-color);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
#floorplans .floorplans .fp-item .fp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
#floorplans .floorplans .fp-item .fp-actions .btn-outline {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
#floorplans .floorplans .fp-item .fp-actions .btn-outline:hover {
  background: var(--primary-color);
  color: var(--black-color);
  transform: translateY(-2px);
}
#floorplans #map {
  max-width: 1200px;
  margin: 40px auto 0;
}
#floorplans #map div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(234, 174, 53, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: var(--tertiary-color);
}
#floorplans #map div iframe {
  width: 100%;
  height: 400px;
}
@media (max-width: 992px) {
  #floorplans .floorplans {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  #floorplans .floorplans {
    grid-template-columns: 1fr;
  }
}

#amenities {
  padding: 60px 20px;
}
#amenities .section-title {
  text-align: center;
  margin-bottom: 40px;
}
#amenities .section-title h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}
#amenities .section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--primary-color);
  margin: 10px auto 0;
}
#amenities .amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
}
@media (max-width: 768px) {
  #amenities .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  #amenities .amenities-grid {
    grid-template-columns: 1fr;
  }
}
#amenities .amenity {
  text-align: center;
  transition: transform 0.3s ease;
}
#amenities .amenity:hover {
  transform: translateY(-8px);
}
#amenities .amenity .amenity-icon {
  width: 90px;
  height: 90px;
  border: 2px solid #5a4500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
#amenities .amenity .amenity-icon img {
  width: 60px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
#amenities .amenity p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--tertiary-color);
}

.faq {
  padding: 60px 20px;
}
.faq .faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 12px;
}
.faq .faq-container .section-title {
  text-align: center;
  margin-bottom: 25px;
}
.faq .faq-container .section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
}
.faq .faq-container .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}
.faq .faq-container .faq-item .q {
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--white-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "outfit", serif;
  margin-bottom: 1rem;
}
.faq .faq-container .faq-item .q::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}
.faq .faq-container .faq-item .a {
  max-height: 0;
  overflow: hidden;
  color: var(--primary-color);
  font-size: 1rem;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-family: "outfit", serif;
}
.faq .faq-container .faq-item.active .q::after {
  content: "-";
  transform: rotate(180deg);
}
.faq .faq-container .faq-item.active .a {
  max-height: 200px;
  padding-top: 10px;
}

#contact {
  padding: 80px 20px;
  color: var(--white-color);
}
#contact .container {
  max-width: 1000px;
  margin: 0 auto;
}
#contact .section-title {
  text-align: center;
  margin-bottom: 50px;
}
#contact .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}
#contact .section-title p {
  color: #bbb;
  margin-top: 10px;
  font-size: 1rem;
}
#contact .contact-grid {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 900px) {
  #contact .contact-grid {
    grid-template-columns: 1fr;
  }
}
#contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact .contact-form .form-group input,
#contact .contact-form .form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
  padding: 12px 4px;
  font-size: 1rem;
  color: var(--white-color);
  outline: none;
  transition: border-color 0.3s ease;
  font-family: "outfit", serif;
}
#contact .contact-form .form-group input::-moz-placeholder, #contact .contact-form .form-group select::-moz-placeholder {
  color: #888;
}
#contact .contact-form .form-group input::placeholder,
#contact .contact-form .form-group select::placeholder {
  color: #888;
}
#contact .contact-form .form-group input:focus,
#contact .contact-form .form-group select:focus {
  border-color: var(--primary-color);
}
#contact .contact-form .btn-enquiry {
  margin-top: 10px;
  background: var(--primary-color);
  color: #111;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#contact .contact-form .btn-enquiry:hover {
  background: #f5c94d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}
#contact .contact-form p {
  color: #333;
  font-size: 0.9rem;
}
#contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#contact .contact-info .info-box {
  padding: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}
#contact .contact-info .info-box strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 6px;
  font-weight: 400;
  font-family: "outfit", serif;
}
#contact .contact-info .info-box p {
  color: #ddd;
  font-size: 0.95rem;
}
#contact .contact-info .info-box:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

footer {
  background: #0c0c0c;
  color: #bbb;
  padding: 10px 0;
  font-size: 0.95rem;
  font-family: "outfit", serif;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
footer a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #f5c94d;
}

#backToTop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
  background: #d4af37;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
#backToTop:hover {
  background: #f5c94d;
  transform: translateY(-3px);
}

/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Modal Box */
.modal-content {
  background: #111;
  color: var(--white-color);
  padding: 30px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--primary-color);
  animation: fadeIn 0.3s ease-in-out;
}
.modal-content h2 {
  margin: 20px 0;
  font-weight: 500;
}

/* Close Button */
.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary-color);
  transition: 0.3s;
}
.close:hover {
  color: var(--secondary-color);
}

/* Form Fields */
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-content form p {
  text-align: left;
  font-size: 0.6rem;
  color: #5b5b5b;
}
.modal-content form input,
.modal-content form select {
  padding: 10px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #222;
  color: #fff;
  font-family: "outfit", serif;
  font-size: 1rem;
}
.modal-content form input:focus,
.modal-content form select:focus {
  border-color: var(--primary-color);
  outline: none;
}
.modal-content form .btn-enquiry {
  background: var(--primary-color);
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.modal-content form .btn-enquiry:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rera-section {
  color: var(--tertiary-color);
  text-align: center;
}
.rera-section h5 {
  font-size: 1.5rem;
  font-weight: 600;
  border-top: 0.5px solid #8c6d30;
  border-bottom: 1px solid #8c6d30;
  padding: 15px 0;
}/*# sourceMappingURL=style.css.map */


.why-section {
  color: var(--tertiary-color);
  text-align: center;
  padding: 2rem 0;
  
}
.why-section ul li {
  color: #8c6d30;
  font-size: 1.3rem;
  padding-bottom: 0.5rem;
  list-style: none;

}

.why-section ul p{
  margin-bottom: 1rem;
}