/* ==========================================================================
   RAJ DHOL DELHI — Design Tokens
   ========================================================================== */
:root {
  /* Primary */
  --primary: #F28C28;
  --primary-dark: #D96A13;
  --primary-light: #FFF4EA;

  /* Dark */
  --dark: #1A1A1A;
  --dark-light: #2B211D;

  /* Background */
  --white: #FFFFFF;
  --section: #FAF8F6;

  /* Text */
  --heading: #1A1A1A;
  --text: #666666;
  --text-light: #999999;

  /* Border */
  --border: #ECECEC;

  /* Success */
  --success: #2E8B57;

  /* Radius */
  --radius: 18px;

  /* Shadow */
  --shadow: 0 12px 35px rgba(0, 0, 0, .08);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-highlight: 'Playfair Display', serif;

  --header-h: 84px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.25;
  font-weight: 700;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.text-dark {
  color: var(--dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: all .25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(245, 130, 32, .35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn-outline {
  background: #fff;
  color: var(--heading);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-block {
  width: 100%;
}

.btn-header {
  padding: 12px 20px;
  font-size: 12.5px;
  letter-spacing: .3px;
  box-shadow: none;
}

/* Eyebrow labels */
.eyebrow {
  display: inline-block;
  font-family: var(--font-highlight);
  font-style: italic;
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: .3px;
}

.eyebrow-dark {
  color: var(--primary);
}

.eyebrow-center {
  display: block;
  text-align: center;
  font-size: 34px;
  margin-bottom: 18px;
}

.services .section-head {
  max-width: 900px;
}

.services .section-head p {
  max-width: 900px;
  line-height: 1.7;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-size: 34px;
  margin-bottom: 14px;
  font-weight: 800;
}

.section-head p {
  color: var(--text);
  font-size: 15.5px;
}

.section-head .btn {
  margin-top: 12px;
}

.heading-rule {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto 18px;
  border-radius: 2px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* background: var(--dark); */
  background: #000;
  border-bottom: 1px solid var(--border);
  height: var(--header-h);

}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--dark);
  background: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--heading);
  letter-spacing: .3px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--primary);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: color .2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-inline-icon {
  color: var(--primary);
  font-size: 15px;
}

.phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
  text-align: right;
}

.phone-text strong {
  font-size: 15px;
  font-weight: 700;
  color:white;
  letter-spacing: .3px;
}

.phone-text small {
  font-size: 11px;
  color: var(--text-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dark);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, .97) 0%, rgba(10, 10, 10, .88) 30%, rgba(10, 10, 10, .55) 55%, rgba(10, 10, 10, .15) 78%, rgba(10, 10, 10, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 24px;
}

.hero-content {
  max-width: 560px;
}

.hero .eyebrow {
  color: var(--primary);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 18px;
}

.hero-content h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.22;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -.3px;
}

.hero-content p {
  color: rgba(255, 255, 255, .75);
  font-size: 15.5px;
  margin-bottom: 30px;
  max-width: 440px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btns .btn {
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: .3px;
  padding: 15px 26px;
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.about-media-side {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.about-media-side img {
  width: 50%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 15.5px;
}

.read-more-link {
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}

.about-bottom {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about-call {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-call-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.about-call small {
  display: block;
  color: var(--text-light);
  font-size: 12px;
}

.about-call strong {
  display: block;
  color: var(--heading);
  font-size: 15.5px;
}

/* ==========================================================================
   Services preview
   ========================================================================== */
.services {
  padding: 70px 0 90px;
  background: var(--section);
}

.services .section-head p {
  max-width: 820px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
  height: 230px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card-tag {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  padding: 24px 12px 12px;
  font-size: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
}

/* ==========================================================================
   Why choose
   ========================================================================== */
.why-choose {
  padding: 60px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  padding: 38px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
  text-align: center;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.why-card h3 {
  font-size: 18.5px;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 14px;
  display: inline-block;
}

.why-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--primary);
}

.why-card p {
  font-size: 14.5px;
  margin-top: 12px;
  line-height: 1.7;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  padding: 0;
}


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

.cta-inner{
    width:100%;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.cta-inner img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}

/* Large Screens */
@media (min-width:1200px){
    .cta-inner img{
        min-height:180px;
    }
}

/* Laptop */
@media (max-width:992px){
    .cta-banner{
        padding:40px 0;
    }

    .cta-inner{
        border-radius:18px;
    }
}

/* Tablet */
@media (max-width:768px){
    .cta-banner{
        padding:30px 0;
    }

    .cta-inner{
        border-radius:15px;
    }
}

/* Mobile */
@media (max-width:576px){
    .cta-banner{
        padding:20px 0;
    }

    .container{
        padding:0 10px;
    }

    .cta-inner{
        border-radius:12px;
    }

    .cta-inner img{
        width:100%;
        height:auto;
    }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  padding: 60px 0;
  background: var(--section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 16px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-cta {
  text-align: center;
  margin-top: 44px;
}

.video-note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   Video gallery
   ========================================================================== */
.video-gallery {
  padding: 60px 0;
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  border: 4px solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
 
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all .25s;
}

.video-card:hover .play-btn {
 
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 12px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
  color: #fff;
}

.video-info span {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.video-info small {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .75);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}



/* neww */

   .video-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
}

.video-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    cursor:pointer;
    background:#000;
    transition:.35s;
}

.video-card:hover{
    transform:translateY(-8px);
}

.video-card video{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.video-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:16px;
    background:linear-gradient(transparent,rgba(0,0,0,.95));
    color:#fff;
}

.video-overlay h4{
    margin:0 0 8px;
    font-size:16px;
}

.video-overlay span{
    font-size:12px;
    background:rgba(255,255,255,.15);
    padding:4px 8px;
    border-radius:20px;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:64px;
    height:64px;
    border-radius:50%;
    border:3px solid #fff;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(6px);
    color:#fff;
    font-size:22px;
    transition:.3s;
}

.video-card:hover .play-btn{
    transform:translate(-50%,-50%) scale(1.12);
    background:#ff6b00;
    border-color:#ff6b00;
}

@media(max-width:1200px){
    .video-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .video-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .video-card video{
        height:300px;
    }
}

@media(max-width:480px){
    .video-grid{
        grid-template-columns:1fr;
    }
}
/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 40px 0;
  background: var(--section);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--heading);
}

.faq-question span {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.faq-question i {
  margin-left: auto;
  color: var(--primary);
  font-size: 13px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 14.5px;
  padding-left: 28px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

/* ==========================================================================
   Booking
   ========================================================================== */
.booking {
  padding: 80px 0;
  background: var(--white);
}

.booking-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.booking-left {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-light) 100%);
  color: #fff;
  padding: 50px 44px;
  position: relative;
  overflow: hidden;
}

.booking-left-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 130, 32, .15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}

.booking-left h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 14px;
}

.booking-left p {
  color: rgba(255, 255, 255, .7);
  font-size: 14.5px;
  margin-bottom: 28px;
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.booking-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-contact-item small {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.booking-contact-item strong {
  display: block;
  color: #fff;
  font-size: 14.5px;
}

.booking-left-photo {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 180px;
  opacity: .9;
  pointer-events: none;
}

.booking-right {
  background: #fff;
  padding: 50px 44px;
}

.booking-right .eyebrow {
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--primary);
}

.booking-sub {
  font-size: 14.5px;
  margin-bottom: 26px;
}


/* new additions */
.booking-left{
    position: relative;
    min-height: 650px;
    border-radius: 20px;
    overflow: hidden;

    /* Background Image */
    background: url("newimg/bg-img.jpg") center center/cover no-repeat;
}

/* Dark Overlay */
.booking-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(12,12,12,.90) 0%,
        rgba(12,12,12,.65) 45%,
        rgba(12,12,12,.10) 100%
    );
}

/* Content */
.booking-content{
    position:relative;
    z-index:2;
   
    color:#fff;
    
}

.booking-left-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff8c1a;
    font-size:28px;
    margin-bottom:25px;
}

.booking-content h2{
    font-size:36px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:700;
}


.booking-contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:22px;
}

.booking-contact-icon{
    width:48px;
    height:52px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff8c1a;
    font-size:18px;
}

.booking-contact-item small{
    display:block;
    color:#bdbdbd;
    margin-bottom:4px;
}

.booking-contact-item strong{
    color:#ff8c1a;
    font-size:17px;
}
/*  new end */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 16px;
  background: var(--section);
}

.form-field i {
  color: var(--text-light);
  font-size: 14px;
  margin-right: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--heading);
}

.form-field select {
  appearance: none;
  cursor: pointer;
}

.form-field-textarea {
  align-items: flex-start;
  padding-top: 14px;
  margin-bottom: 20px;
}

.form-field-textarea i {
  margin-top: 4px;
}

.form-trust {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.form-trust span {
  font-size: 12px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-trust i {
  color: var(--primary);
  font-size: 15px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   Service area
   ========================================================================== */
.service-area {
  padding: 80px 0;
  background: var(--section);
}

.area-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.area-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}

.area-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.area-list {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.area-list h3 {
  font-size: 19px;
  margin-bottom: 22px;
}

.area-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--heading);
  font-weight: 500;
}

.area-list i {
  color: var(--primary);
}

/* ==========================================================================
   Footer CTA
   ========================================================================== */
.footer-cta {
  background: var(--dark);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-cta-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-cta-icon {
  width: 60px;
  flex-shrink: 0;
}

.footer-cta-text h3 {
  color: #fff;
  font-size: 21px;
  margin-bottom: 6px;
}

.footer-cta-text p {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: black;
  color: rgba(255, 255, 255, .65);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo .logo-title {
  color: #fff;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-col h4 {
  color: #fff;
  font-size: 16.5px;
  margin-bottom: 22px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
}

.footer-contact-list i {
  color: var(--primary);
  margin-top: 3px;
}

.footer-contact-list small {
  color: rgba(255, 255, 255, .45);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  margin-top: 10px;
}

.footer-whatsapp i {
  color: #25D366;
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 24px;
  text-align: center;
  font-size: 13px;
}

/* ==========================================================================
   WhatsApp float
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   AOS-lite reveal
   ========================================================================== */
[data-aos] {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(.96);
}

[data-aos].aos-in {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:last-child {
    grid-column: span 2;
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-inner {
    grid-template-columns: 1fr;
  }

  .booking-left-photo {
    display: none;
  }

  .area-inner {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #000000;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 0;
    box-shadow: 0 12px 20px rgba(0, 0, 0, .08);
    transform: translateY(-150%);
    opacity: 0;
    transition: all .3s ease;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .hamburger {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-inner {
    padding: 60px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: span 1;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-action {
    align-items: flex-start;
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .area-list ul {
    grid-template-columns: 1fr;
  }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 27px;
  }

  .section-head h2 {
    font-size: 27px;
  }

  .btn {
    padding: 13px 22px;
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-media-side {
    flex-direction: column;
  }

  .about-media-side img {
    width: 100%;
  }

  .booking-left,
  .booking-right {
    padding: 34px 24px;
  }

  .logo-title {
    font-size: 13.5px;
  }

  .logo-sub {
    font-size: 8.5px;
  }

  .logo img {
    height: 38px;
  }
}