@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Montserrat", serif;
}

::selection {
  background-color: #ff6e4e;
  color: black;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  overflow: hidden;
}

html {
  font-size: 62.5%;
  position: relative;
  scroll-behavior: smooth;
}

/* font-family: "Montserrat", serif; */

/* font-family: "Cormorant Garamond", serif; */

/* header start */

header {
  width: 100%;
  height: 70vh;
  background-image: url(contact-image/asset\ 2\ \(1\).webp) !important;
  background-size: cover;
  background-position: center;
  position: relative;
  font-family: "Montserrat", serif;
  z-index: 1000;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  opacity: 0.6;
  background-color: #180000;
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.hover-underline {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 5px 0;
  z-index: 2;
}

.hover-underline:hover {
  color: #0ff;
  transition: all 0.3s;
}

.hover-underline::before,
.hover-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #00ffff);
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.hover-underline::before {
  top: 0;
  transform-origin: left;
}

.hover-underline::after {
  bottom: 0;
  transform-origin: right;
}

.hover-underline:hover::before,
.hover-underline:hover::after {
  transform: scaleX(1);
}

.hover-underline:hover::before {
  transform-origin: right;
}

.hover-underline:hover::after {
  transform-origin: left;
}

.borderYtoX {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  z-index: 2;
}

nav.borderYtoX ul {
  display: flex;
  gap: 30px;
}

nav.borderYtoX a {
  padding: 7px 10px;
  color: #ffffff;
  position: relative;
  font-size: 1.6rem;
}

.borderYtoX a:hover {
  color: #0ff;
  transition: all 0.3s;
}

nav.borderYtoX a:before,
nav.borderYtoX a:after {
  position: absolute;
  opacity: 0.5;
  height: 100%;
  width: 2px;
  content: "";
  background: #fff;
  transition: all 0.3s;
}

nav.borderYtoX a:before {
  left: 0px;
  top: 0px;
}

nav.borderYtoX a:after {
  right: 0px;
  bottom: 0px;
}

nav.borderYtoX a:hover:before,
nav.borderYtoX a:hover:after {
  opacity: 1;
  height: 2px;
  width: 100%;
}

.nav-icon {
  color: #ff6e4e;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav-icon::after {
  content: "0";
  font-size: 15px;
  color: black;
  background-color: #ff6e4e;
  position: absolute;
  right: 20;
  bottom: 25px;
  z-index: 2;
  padding: 1px 5px;
  border-radius: 50%;
}

.nav-icon:hover {
  color: white;
  transition: all 0.3s;
  transform: scale(1.1);
}

.nav-icon:hover::after {
  background-color: white;
  color: black;
  transition: all 0.3s;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 3;
}

.header-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.header-text p {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.header-text p span {
  font-family: "Cormorant Garamond", serif;
  font-weight: bolder;
  font-size: 6.8rem;
}

/* button start */

.header-text button {
  --offset: 10px;
  --border-size: 2px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  position: relative;
  padding: 1em 1.5em;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--border-size) currentcolor;
  transition: background 0.8s ease;
  margin-top: 30px;
}

.header-text button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-text button .button__horizontal,
.header-text button .button__vertical {
  position: absolute;
  top: var(--horizontal-offset, 0);
  right: var(--vertical-offset, 0);
  bottom: var(--horizontal-offset, 0);
  left: var(--vertical-offset, 0);
  transition: transform 0.8s ease;
  will-change: transform;
}

.header-text button .button__horizontal::before,
.header-text button .button__vertical::before {
  content: "";
  position: absolute;
  border: inherit;
}

.header-text button .button__horizontal {
  --vertical-offset: calc(var(--offset) * -1);
  border-top: var(--border-size) solid currentcolor;
  border-bottom: var(--border-size) solid currentcolor;
}

.header-text button .button__horizontal::before {
  top: calc(var(--vertical-offset) - var(--border-size));
  bottom: calc(var(--vertical-offset) - var(--border-size));
  left: calc(var(--vertical-offset) * -1);
  right: calc(var(--vertical-offset) * -1);
}
.header-text button:hover .button__horizontal {
  transform: scaleX(0);
}

.header-text button .button__vertical {
  --horizontal-offset: calc(var(--offset) * -1);
  border-left: var(--border-size) solid currentcolor;
  border-right: var(--border-size) solid currentcolor;
}
.header-text button .button__vertical::before {
  top: calc(var(--horizontal-offset) * -1);
  bottom: calc(var(--horizontal-offset) * -1);
  left: calc(var(--horizontal-offset) - var(--border-size));
  right: calc(var(--horizontal-offset) - var(--border-size));
}

.header-text button:hover .button__vertical {
  transform: scaleY(0);
}

/* button end */

:root {
  --bg: #000000;
  --clr-1: #00c2ff;
  --clr-2: #33ff8c;
  --clr-3: #ffc640;
  --clr-4: #e54cff;

  --fs: clamp(3rem, 8vw, 7rem);
  --ls: clamp(-1.75px, -0.25vw, -3.5px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: inherit;
}

.content {
  text-align: center;
}

.title {
  font-size: var(--fs);
  font-weight: 800;
  letter-spacing: var(--ls);
  margin: 0;
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--clr-1),
    var(--clr-2),
    var(--clr-3),
    var(--clr-4),
    var(--clr-1)
  );
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: aurora-multi 8s infinite alternate;
}

@keyframes aurora-multi {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 25% 50%;
  }
  50% {
    background-position: 50% 50%;
  }
  75% {
    background-position: 75% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* header end */
/* form start */
.form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.contact-info {
  
  max-width: 550px;
  opacity: 1;
  transform: translateY(-8px);
  transition: opacity 1s ease, transform 1s ease;
}
.contact-info.animate {
  opacity: 1;
  transform: translateY(0);
}
.contact-info h2 {
  font-size: 42px;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 18px;
  color: #777;
  margin-bottom: 30px;
  line-height: 1.6;
}
.info-item {
  margin-bottom: 20px;
}
.info-item strong {
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}
.info-item span {
  font-size: 18px;
  color: #555;
}
.divider-line {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 20px 0;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.social-icons {
  margin-top: 20px;
}
.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
  font-size: 20px;
}
.social-icons a:hover {
  color: #ff6f61;
}
.contact-form {
  flex: 1 1 300px;
  max-width: 550px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}
.contact-form.animate {
  opacity: 1;
  transform: translateY(0);
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 18px;
  color: #333;
}
.name-fields {
  display: flex;
  gap: 10px;
}
.name-fields input {
  flex: 1;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 18px;
  outline: none;
  color: #333;
  transition: border-color 0.3s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #f96c3f;
}
textarea {
  min-height: 100px;
  resize: vertical;
}

.form-button{
  width: 100px;
}
button {
  
  padding: 12px 3px;
  background-color: #f96c3f;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #e65a2f;
}
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
.contact-info{
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

  .info-row {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .contact-info h2 {
    font-size: 32px;
  }
  .contact-info p {
    font-size: 17px;
  }
  .info-row {
    gap: 20px;
  }
}
@media (max-width: 425px) {
  .contact-info h2 {
    font-size: 24px;
  }
  .contact-info p {
    font-size: 12px;
  }
  .info-row {
    flex-direction: column;
  }

  .info-item span {
    font-size: 14px;
  }

  label {
    font-size: 14px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 14px;
  }

  button {
    width: 80px;
    padding: 8px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .contact-info h2 {
    font-size: 22px;
  }
  .contact-info p {
    font-size: 13px;
  }
}
@media (max-width: 375px) {
  .contact-info h2 {
    font-size: 20px;
  }
  .contact-info p {
    font-size: 12px;
  }
}
/* form end */

/* faq start */

.faq {
  width: 100%;
  background-color: #fef7f5;
}

.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  gap: 40px;
}

.faq-left {
  flex: 0 0 35%;
}
.faq-left h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.faq-left p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #555;
}

.faq-right {
  flex: 0 0 65%;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-item:not(:last-child) {
  margin-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  color: #333;
  position: relative;
}

.faq-question::after {
  content: "\276F";
  font-size: 2rem;
  transition: transform 0.3s ease;

  transform: rotate(90deg);
}

.faq-answer {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.5;
  transition: max-height 0.4s ease;

  max-height: 300px;
  overflow: hidden;
}
.faq-answer p {
  padding: 10px 0;
}

.faq-item.closed .faq-answer {
  max-height: 0;
}
.faq-item.closed .faq-question::after {
  transform: rotate(0deg);
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 40px 20px;
    gap: 30px;
  }
  .faq-left h2 {
    font-size: 3.8rem;
  }
  .faq-left p {
    font-size: 1.8rem;
  }
  .faq-question {
    font-size: 2rem;
  }
  .faq-answer {
    font-size: 1.7rem;
  }
}

@media (max-width: 992px) {
  .faq-section {
    flex-direction: column;
    gap: 30px;
  }
  .faq-left {
    flex: 1;
    text-align: center;
  }
  .faq-right {
    flex: 1;
  }
  .faq-left h2 {
    font-size: 4rem;
  }
  .faq-left p {
    font-size: 2.5rem;
  }
  .faq-question {
    font-size: 2.2rem;
  }
  .faq-answer {
    font-size: 1.8rem;
  }
}

@media (max-width: 425px) {
  .faq-left h2 {
    font-size: 3rem;
  }
  .faq-left p {
    font-size: 1.8rem;
  }
  .faq-question {
    font-size: 2rem;
  }
  .faq-answer {
    font-size: 1.8rem;
  }
}

@media (max-width: 400px) {
  .faq-left h2 {
    font-size: 3rem;
  }
  .faq-left p {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 2rem;
  }
  .faq-answer {
    font-size: 1.8rem;
  }
}

@media (max-width: 375px) {
  .faq-left h2 {
    font-size: 2.8rem;
  }
  .faq-left p {
    font-size: 1.8rem;
  }
  .faq-question {
    font-size: 1.9rem;
  }
  .faq-answer {
    font-size: 1.9rem;
  }
}

/* faq end */


/* Special Offer Section */
.special-offer {
  width: 100%;
  padding-top: 70px;
  background-color: #180000;
  overflow: hidden; /* Ensure no overflow issues */
}

.special-offer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.special-offer-image {
  width: 45%;
  overflow: hidden; /* Ensure image doesn't overflow */
  border-radius: 350px 350px 0px 0px;
  transform-origin: center bottom;
  position: relative;
  z-index: 1; /* Ensure it's above other elements */
}

.special-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 350px 350px 0px 0px;
  animation: scaleUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.2s;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth transition */
}

.special-offer-image:hover img {
  transform: scale(1.03);
}

.special-offer-text-alignment {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.special-offer-text p:nth-child(1) {
  font-family: "Montserrat", serif;
  font-size: 20px;
  color: #ff6e4e;
  animation: fadeInUp 0.8s forwards 0.2s;
  opacity: 0;
}

.special-offer-text p:nth-child(2),
.special-offer-text p:nth-child(3),
.special-offer-text p:nth-child(4) {
  font-size: 50px;
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  opacity: 0;
}

.special-offer-text p:nth-child(2) {
  animation: fadeInUp 0.8s forwards 0.4s;
}
.special-offer-text p:nth-child(3) {
  animation: fadeInUp 0.8s forwards 0.6s;
}
.special-offer-text p:nth-child(4) {
  animation: fadeInUp 0.8s forwards 0.8s;
}

/* Button Styles */
.special-offer-text button {
  --offset: 10px;
  --border-size: 2px;
  left: 2.5%;
  display: block;
  position: relative;
  padding: 1em 1.5em;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--border-size) currentcolor;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1), background 0.8s ease;
  margin-top: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s forwards 1s;
}

.special-offer-text button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 110, 78, 0.2);
}

.special-offer-text button .button__horizontal,
.special-offer-text button .button__vertical {
  position: absolute;
  top: var(--horizontal-offset, 0);
  right: var(--vertical-offset, 0);
  bottom: var(--horizontal-offset, 0);
  left: var(--vertical-offset, 0);
  transition: transform 0.8s ease;
  will-change: transform;
}

.special-offer-text button .button__horizontal::before,
.special-offer-text button .button__vertical::before {
  content: "";
  position: absolute;
  border: inherit;
}

.special-offer-text button .button__horizontal {
  --vertical-offset: calc(var(--offset) * -1);
  border-top: var(--border-size) solid currentcolor;
  border-bottom: var(--border-size) solid currentcolor;
}

.special-offer-text button .button__horizontal::before {
  top: calc(var(--vertical-offset) - var(--border-size));
  bottom: calc(var(--vertical-offset) - var(--border-size));
  left: calc(var(--vertical-offset) * -1);
  right: calc(var(--vertical-offset) * -1);
}

.special-offer-text button:hover .button__horizontal {
  transform: scaleX(0);
}

.special-offer-text button .button__vertical {
  --horizontal-offset: calc(var(--offset) * -1);
  border-left: var(--border-size) solid currentcolor;
  border-right: var(--border-size) solid currentcolor;
}

.special-offer-text button .button__vertical::before {
  top: calc(var(--horizontal-offset) * -1);
  bottom: calc(var(--horizontal-offset) * -1);
  left: calc(var(--horizontal-offset) - var(--border-size));
  right: calc(var(--horizontal-offset) - var(--border-size));
}

.special-offer-text button:hover .button__vertical {
  transform: scaleY(0);
}

/* Pulse Glow Effect */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 110, 78, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 110, 78, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 110, 78, 0);
  }
}

.special-offer-text button:after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  border-radius: inherit;
  animation: pulseGlow 2s infinite;
  opacity: 0;
  z-index: -1;
}

.special-offer-text button:hover:after {
  opacity: 1;
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* special-offer end */

/* footer start */
footer {
  width: 100%;
  background-color: #fff5f0;
  padding: 60px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-section {
  gap: 30px;
}

.footer-section-1 {
  padding-bottom: 60px;
}

.footer-section h3 {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-section p {
  line-height: 1.6;
  color: #666;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.links {
  list-style: none;
}
.links li {
  margin-bottom: 10px;
}
.links a {
  text-decoration: none;
  color: #666;
  font-size: 18px;
}
.links a:focus {
  outline: 2px solid #ff6f61;
  outline-offset: 4px;
}
.contact-info p {
  margin: 5px 0;
  font-size: 14px;
}
.social-icons {
  margin-top: 20px;
}
.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
  font-size: 20px;
}

.social-icons a:hover {
  color: #ff6f61;
}

.copyright {
  text-align: center;
  font-size: 20px;
  color: #999;
}

.copyright-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-1 {
  border-top: 2px solid #eee;
  background-color: #fff5f0;
  padding: 20px;
}

/* footer end */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px; 
  right: 30px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color: red; 
  color: white; 
  cursor: pointer; 
  padding: 8px;
  border-radius: 5px; 
  font-size: 18px; 
}

#myBtn:hover {
  background-color: #555; 
}
































/* ==================== Contact Page Media Queries ==================== */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-info,
  .contact-form {
    max-width: 100%;
    width: 100%;
  }
  
  .name-fields {
    flex-direction: column;
  }
  
  .info-row {
    flex-direction: column;
    gap: 15px;
  }


  .faq-section {
    padding: 30px 15px;
  }
  
  .faq-question {
    font-size: 18px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }

  .special-offer-main {
    flex-direction: column;
  }
  
  .special-offer-image,
  .special-offer-text-alignment {
    width: 100%;
  }
  
  .special-offer-text p {
    font-size: 24px;
  }
}



/* ==================== FAQ Section Media Queries ==================== */




/* ==================== Special Offer Fixes ==================== */

/* ==================== Accessibility Fixes ==================== */
@media (prefers-reduced-motion: reduce) {
  .contact-info,
  .contact-form {
    transition: none !important;
    animation: none !important;
  }
}

/* ==================== Mobile Input Fix ==================== */
