@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* Contact Page Styles */
body {
  font-family: 'Cormorant Garamond', serif;
  color: #111;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* NAVBAR */
.navbar {
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  background-color: transparent;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: #0d0d0d;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.navbar-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo img {
  height: 85px;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex: 1;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  padding: 8px;
  text-align: center;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  transform: scaleX(0);
  opacity: 0.75;
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:not(.active):hover {
  opacity: 0.75;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  background-color: white;
}

.nav-links a.active {
  font-weight: 700;
}

.nav-links a.active:hover {
  opacity: 0.75;
}

.nav-icons a {
  color: white;
  margin-left: 1.2rem;
  font-size: 1.3rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-icons a:hover {
  opacity: 0.75;
}

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

  .contact-info {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
}

.nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
}

.quote-btn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: white;
  padding: 0.5rem 1.5rem;
  border: 2px solid white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background-color: white;
  color: #111;
  cursor: pointer;
}

/* Hero Text */
.typewriter-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 30vh;
  font-family: 'Cormorant Garamond', serif;
}

.typewriter-line1 {
  font-weight: 500;
  font-size: 75px;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto;
  border-right: 2px solid white;
  animation: blink-caret 0.75s step-end infinite;
}

.typewriter-line2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease 0.3s, transform 1.5s ease 0.3s;
}

.typewriter-line2.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: white; }
}

/* Hero Video */
.video-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  padding-top: 30vh;
  font-family: 'Cormorant Garamond', serif;
}

/* Services Section */
.services-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
  color: #111;
}

.intro-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.8;
  color: #444;
}

/* Luxury Card Section */
.luxury-card {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  align-items: stretch;
}

.luxury-card:nth-child(even) {
  flex-direction: row-reverse;
}

.luxury-text,
.luxury-image {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.luxury-text {
  background: #f9f9f9;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 50px rgba(0, 0, 0, 0.12);
}

.luxury-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.luxury-text p {
  font-size: 1rem;
  line-height: 1.7;
}

.luxury-image {
  padding: 0;
  margin: 0;
}

.luxury-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2rem;
}

.slide .luxury-image {
  display: flex;
  align-items: stretch;
}

.slide .luxury-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  color: #111;
  transition: all 0.3s ease;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
  background: #cba135;
  color: white;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.slider-arrow.left {
  left: 0;
}
.slider-arrow.right {
  right: 0;
}

.luxury-image {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

}


.luxury-image.hover-overlay {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.luxury-image.hover-overlay img {
  transition: transform 0.6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.luxury-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  font-family: 'Cormorant Garamond', serif;
}

.price-range {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.get-service-btn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  background: transparent;
  color: white;
  border: 2px solid white;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem; /* spacing from price */
  display: inline-block;
}

.get-service-btn:hover {
  background: white;
  color: black;
}

@media (max-width: 768px) {
  .luxury-card {
    flex-direction: column !important;
  }

  .luxury-text img {
    max-height: none;
    height: auto;
  }
}

.read-more-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #cba135;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s;
}
.read-more-link:hover {
  color: #111;
}

.full-text {
  display: none;
  margin-top: 0.5rem;
  color: #444;
  transition: all 0.3s ease;
}


.comparison-section {
  text-align: center;
  background-color: #f9f9f9;
  margin: 1rem auto; /* smaller vertical spacing */
  max-width: 1200px;
  padding-top: 0;
}


.comparison-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: #111;
}

.comparison-tagline {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 1rem auto 4rem auto;
  line-height: 1.8;
  color: #444;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}


.comparison-container {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comparison-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  cursor: ew-resize;
}

.comparison-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.after-img {
  clip-path: inset(0 0 0 50%);
  z-index: 2;
}

.before-img {
  z-index: 1;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  background: #f9f9f9;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.slider-handle:hover {
  background: #cba135;
  color: white;
}

.slider-handle .chevron {
  font-size: 1.2rem;
  font-weight: bold;
  color: #111;
}

.comparison-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.comparison-wrapper {
  position: relative;
  max-width: 48%;
  flex: 1 1 45%;
  overflow: hidden;
  border-radius: 1px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 900px) {
  .comparison-wrapper {
    max-width: 100%;
  }
}
 /* faq */

 .faq-section {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.faq-question {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.75rem 0;
  position: relative;
  color: #111;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0.75rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  transition: max-height 0.4s ease;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + .faq-question::after {
  content: '–';
}

input[type="checkbox"]:checked + .faq-question + .faq-answer {
  max-height: 500px;
  margin-top: 0.5rem;
}


/* cta */
.cta-video {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.background-video-cta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.video-overlay-cta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* optional overlay */
  z-index: 2;
}

.cta-text {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  font-family: 'Cormorant Garamond', serif;
}

.cta-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-text .btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-text .btn:hover {
  background: white;
  color: black;
}

.cta-text p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.cta-text p.show {
  opacity: 1;
  transform: translateY(0);
}







/* Footer */
.contact-footer {
  background-color: #111111;
  color: white;
  padding: 2rem;
  position: relative;
  margin-bottom: 9px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-contact p {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0.3rem 0;
}

.footer-contact a {
  color: white;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.footer-address p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0.2rem 0;
}

.footer-logo {
  height: 150px;
  opacity: 0.1;
  position: absolute;
  right: 5rem;
  bottom: 1.7rem;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.4;
}

/* Fade-in */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
