
    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', Arial, sans-serif;
      line-height: 1.6;
      color: #2c2c2c;
      background-color: #ffffff;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    /* Layout components */
    .container {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 16px;
    }
    
    .hero-section {
      background-image: url('../images/img_.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 700px;
      position: relative;
    }
    
    .hero-overlay {
      background: linear-gradient(180deg, #0000004c 0%, #0000007f 100%);
      min-height: 700px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
    }
    
    /* Header */
    .header {
    background-color: #ffffff;
    padding: 14px 16px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 10;
}
    
    .logo {
      width: 120px;
      height: auto;
    }
    
    .nav-menu {
      display: none;
      gap: 28px;
      align-items: center;
    }
    
    .nav-menu a {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      line-height: 20px;
      color: #0f1823;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .nav-menu a:hover {
      color: #d4af37;
    }
    
    .cta-button {
      background-color: #d4af37;
      color: #2c2c2c;
      padding: 8px 22px;
      border-radius: 2px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .cta-button:hover {
      background-color: #b8941f;
      transform: translateY(-2px);
    }
    
    .hamburger {
      display: block;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }
    
    /* Hero content */
    .hero-content {
      text-align: center;
      padding: 140px 16px 0 16px;
      max-width: 92%;
      margin: 0 auto;
    }
    
    .hero-title {
      font-size: 32px;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 32px;
    }
    
    .hero-title .brand-name {
      color: #ce0059;
      font-weight: 500;
    }
    
    .hero-subtitle {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 28px;
      color: #ffffffe5;
      margin-bottom: 54px;
      max-width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }
    
    .btn-primary {
      background-color: #d4af37;
      color: #2c2c2c;
      padding: 18px 32px;
      border-radius: 32px;
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-secondary {
      background: transparent;
      color: #ffffff;
      padding: 18px 32px;
      border: 2px solid #ffffff;
      border-radius: 32px;
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    /* Welcome section */
    .welcome-section {
      background-color: #e7bfd7cc;
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 36px;
    }
    
    .welcome-images {
      width: 100%;
      max-width: 506px;
      position: relative;
      height: 300px;
    }
    
    .welcome-image {
      position: absolute;
      border-radius: 20px;
    }
    
    .welcome-image:nth-child(1) {
      width: 260px;
      height: 306px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    .welcome-image:nth-child(2) {
      width: 176px;
      height: 220px;
      top: 0;
      left: 0;
    }
    
    .welcome-image:nth-child(3) {
      width: 148px;
      height: 186px;
      bottom: 0;
      right: 0;
    }
    
    .welcome-content {
      width: 100%;
      text-align: center;
    }
    
    .section-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 48px;
      color: #2c2c2c;
      margin-bottom: 16px;
    }
    
    .section-line {
      width: 78px;
      height: 2px;
      background-color: #d4af37;
      margin: 0 auto 28px;
    }
    
    .welcome-text {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 32px;
      color: #374151;
      text-align: justify;
      margin-bottom: 28px;
    }
    
    .welcome-quote {
      background-color: rgba(255, 255, 255, 0.8);
      padding: 22px;
      border-radius: 8px;
      margin-top: 16px;
    }
    
    .welcome-quote p {
      font-size: 16px;
      font-family: 'Calistoga', serif;
      font-weight: 400;
      line-height: 24px;
      color: #374151;
      text-align: justify;
      margin-bottom: 0 !important;
    }
    
    /* Featured destinations */
    .featured-section {
      background-color: #f9fafb;
      padding: 56px 16px;
    }
    
    .featured-header {
      text-align: center;
      margin-bottom: 56px;
    }
    
    .featured-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 48px;
      color: #2c2c2c;
      margin-bottom: 8px;
    }
    
    .featured-subtitle {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 28px;
      color: #4b5563;
      max-width: 80%;
      margin: 0 auto;
    }
    
    .featured-content {
      display: flex;
      flex-direction: column;
      gap: 44px;
      margin-bottom: 44px;
    }
    
    .featured-main {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 320px;
    }
    
    .featured-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .featured-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(0deg, #00000099 0%, #00000000 100%);
      padding: 24px;
      color: white;
    }
    
    .featured-overlay h3 {
      font-size: 20px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 36px;
      margin-bottom: 4px;
    }
    
    .featured-overlay p {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 24px;
      margin-bottom: 12px;
    }
    
    .featured-overlay .btn {
      background-color: #ffffff;
      color: #1f2937;
      padding: 8px 22px;
      border-radius: 20px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      display: inline-block;
    }
    
    .featured-text {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 35px;
      color: #4b5563;
      text-align: justify;
      margin-bottom: 28px;
    }
    
    .destination-cards {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    
    .destination-card {
      background-color: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0px 1px 2px #0000000c;
      transition: transform 0.3s ease;
    }
    
    .destination-card:hover {
      transform: translateY(-4px);
    }
    
    .destination-card img {
      width: 100%;
      height: 192px;
      object-fit: cover;
    }
    
    .card-content {
      padding: 16px;
    }
    
    .card-title {
      font-size: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      line-height: 24px;
      color: #000000;
      margin-bottom: 4px;
    }
    
    .card-location {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 21px;
      color: #4b5563;
      margin-bottom: 8px;
    }
    
    .card-link {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      line-height: 21px;
      color: #00bfa5;
      text-decoration: none;
    }
    
    /* CTA Section */
    .cta-section {
      background-image: url('../images/untaam-wedding-planner.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 146px 28px;
      text-align: center;
      position: relative;
    }
    
    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, #0000007a 0%, #0000007a 100%);
    }
    
    .cta-content {
      position: relative;
      z-index: 1;
    }
    
    .cta-title {
      font-size: 28px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 30px;
    }
    
    .cta-brand {
      font-size: 40px;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      line-height: 1.2;
      color: #ff8d28;
    }
    
    /* Multi-purpose section */
    .multipurpose-section {
      background-color: #f8f6f0cc;
      padding: 42px 16px;
    }
    
    .multipurpose-header {
      text-align: center;
      margin-bottom: 46px;
    }
    
    .multipurpose-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 48px;
      color: #2c2c2c;
      margin-bottom: 14px;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 58px;
    }
    
    .service-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
    }
    
    .service-icon {
      width: 64px;
      height: 64px;
      border-radius: 32px;
      background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    
    .service-icon img {
      width: 32px;
      height: 32px;
    }
    
    .service-title {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      line-height: 24px;
      color: #3d3a3a;
    }
    
    .service-circles {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0px;
      /* padding: 0px 48px; */
    }
    
    .service-circle {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
          padding: 6px 6px 22px 6px;
      border: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
      /* border-image: linear-gradient(90deg, #c40b6d 0%, #333030 100%); */
      border-image-slice: 1;
      border-radius: 100px;
      width: 100%;
      max-width: 150px;
      margin: 0px 19%;
      border: 3.3px solid #c40b6d;
      /* text-align: center; */
      justify-content: center;
    }
    
    .service-circle img {
      width: 130px;
      height: 130px;
      border-radius: 100px;
      object-fit: cover;
    }
    
    .service-circle h3 {
      font-size: 18px;
      font-family: 'Voltaire', sans-serif;
      font-weight: 400;
      line-height: 24px;
      color: #030202;
    }
    
    /* Dream destinations */
    .dream-section {
      padding: 52px 16px;
      position: relative;
    }
    
    .dream-content {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    
    .dream-left {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    
    .dream-left img {
      width: 100%;
      border-radius: 8px;
    }
    
    .dream-title {
      font-size: 32px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1;
      background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
      /* margin-bottom: 28px; */
    }
    
    .dream-text {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 30px;
      color: #374151;
      text-align: justify;
      /* margin-bottom: 36px; */
    }
    
    .dream-right {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    
    .dream-right img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 24px;
    }
    
    .dream-subtitle {
      font-size: 40px;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      line-height: 1.2;
      background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
      /* margin-bottom: 174px; */
    }
    
    .dream-description {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 30px;
      color: #374151;
      text-align: justify;
      /* margin-bottom: 130px; */
    }
    
    /* Team section */
    .team-section {
      background-color: #f8f6f0;
      padding: 46px 16px;
    }
    
    .team-header {
      text-align: center;
      margin-bottom: 82px;
    }
    
    .team-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 48px;
      color: #1f2937;
      margin-bottom: 14px;
    }
    
    .team-subtitle {
      font-size: 18px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 25px;
      color: #4b5563;
    }
    
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 46px;
    }
    
    .team-member {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 34px;
    }
    
    .team-image-container {
      border: 1px solid #d4af37;
      border-radius: 60px 60px 10px 10px;
      box-shadow: 4px 7px 4px #0000003f;
      overflow: hidden;
    }
    
    .team-image {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 60px 60px 10px 10px;
    }
    
    .team-role {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      line-height: 24px;
      color: #1f2937;
      text-align: center;
    }
    
    /* Services showcase */
    .services-showcase {
      /* background-image: url('../images/img_rectangle_2.png'); */
      background-size: cover;
      background-position: center;
      /* padding: 50px 16px; */
      position: relative;
    }
    
    .services-showcase::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* background: #65004C; */
    }
    
    .services-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 90px;
    }
    
    .services-left {
      display: flex;
      flex-direction: column;
      gap: 90px;
      width: 50%;
      background: #6d004f; /* your pink color */
      color: #fff;
      padding: 60px 40px;
      clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    }
    
    .services-row {
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
    }
    
    .service-showcase-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
    }
    
    .service-showcase-icon {
      width: 70px;
      height: 70px;
    }
    
    .service-showcase-title {
      font-size: 18px;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
      line-height: 27px;
      color: #ffffff;
    }
    
    .services-right {
      text-align: center;
      width: 50%;
      background: #ffffff;
      padding: 60px 40px;
      color: #333;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .services-main-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.5;
      color: #000000;
      margin-bottom: 20px;
    }
    
    .services-description {
      font-size: 18px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 25px;
      color: #000000;
      margin-bottom: 40px;
    }
    
    .services-cta {
      background-color: #f4ba00;
      color: #2c2c2c;
      padding: 12px 34px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 19px;
      font-weight: 500;
      box-shadow: 1px 6px 8px #0000003f;
      display: inline-block;
      transition: all 0.3s ease;
      width: 188px;
    }
    
    .services-cta:hover {
      transform: translateY(-2px);
      box-shadow: 2px 8px 12px #0000004f;
    }
    
    /* Why choose section */
    .why-choose-section {
      background-image: url('../images/img_image_1.png');
      background-size: cover;
      background-position: center;
      padding: 56px 16px;
      position: relative;
    }
    
    .why-choose-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, #000000a5 0%, #00000000 100%);
    }
    
    .why-choose-content {
      position: relative;
      z-index: 1;
    }
    
    .why-choose-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .why-choose-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 48px;
      color: #ffffff;
      margin-bottom: 8px;
    }
    
    .why-choose-subtitle {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 28px;
      color: #ffffff;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    
    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 18px;
    }
    
    .feature-icon {
      width: 48px;
      height: 48px;
      background-color: #4a9b8e;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    
    .feature-icon img {
      width: 24px;
      height: 24px;
    }
    
    .feature-title {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      line-height: 22px;
      color: #ffffff;
    }
    
    .feature-description {
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 22px;
      color: #f2f2f2;
    }
    
    /* Resort gallery */
    .resort-section {
      background-color: #f8f6f0;
      padding: 78px 16px;
    }
    
    .resort-header {
      text-align: center;
      margin-bottom: 64px;
    }
    
    .resort-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 48px;
      color: #2c2c2c;
      margin-bottom: 8px;
    }
    
    .resort-subtitle {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 28px;
      color: #4b5563;
    }
    
    .resort-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 58px;
    }
    
    .resort-gallery img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
    }
    
    .view-more-btn {
      background-color: #d4af37;
      color: #2c2c2c;
      padding: 12px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      display: inline-block;
      margin: 0 auto;
      transition: all 0.3s ease;
    }
    
    .view-more-btn:hover {
      background-color: #b8941f;
      transform: translateY(-2px);
    }
    

    .left-side {
    width: 50%;
    background: #6d004f; /* your pink color */
    color: #fff;
    padding: 60px 40px;
    clip-path: polygon(0 0, 85% 0, 75% 100%, 0 100%);
}

.right-side {
    width: 50%;
    background: #ffffff;
    padding: 60px 40px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
    /* CTA final */
    .cta-final {
      background-image: url('../images/img_img_404x1440.png');
      background-size: cover;
      background-position: center;
      padding: 56px 16px 42px;
      text-align: center;
      position: relative;
    }
    
    .cta-final::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
    }
    
    .cta-final-content {
      position: relative;
      z-index: 1;
    }
    
    .cta-final-title {
      font-size: 28px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.3;
      color: #ffffff;
      margin-bottom: 8px;
    }
    
    .cta-final-subtitle {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 28px;
      color: #d1d5db;
      margin-bottom: 32px;
      max-width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-final-btn {
      background-color: #d4af37;
      color: #2c2c2c;
      padding: 16px 34px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      display: inline-block;
      transition: all 0.3s ease;
    }
    
    .cta-final-btn:hover {
      background-color: #b8941f;
      transform: translateY(-2px);
    }
    
    /* Footer */
    .footer {
      background-color: #ffffff;
      padding: 46px 16px 15px;
    }
    
    .footer-content {
      display: flex;
      flex-direction: column;
      gap: 80px;
      margin-bottom: 32px;
    }
    
    .footer-main {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    
    .footer-logo {
      width: 150px;
      height: auto;
    }
    
    .footer-description {
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 24px;
      color: #242931;
    }
    
    .social-links {
      display: flex;
      gap: 16px;
      align-items: center;
    }
    
    .social-links img {
      width: 24px;
      height: 32px;
    }
    
    .footer-sections {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    
    .footer-section h3 {
      font-size: 20px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 32px;
      color: #93026f;
      margin-bottom: 24px;
    }
    
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .footer-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 20px;
      color: #242931;
      text-decoration: none;
    }
    
    .footer-link img {
      width: 16px;
      height: 16px;
    }
    
    .footer-link:hover {
      color: #d4af37;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 32px;
      border-top: 1px solid #e5e7eb;
    }
    
    .footer-bottom p {
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 20px;
      color: #242931;
    }
    
    /* Typography */
    .playfair {
      font-family: 'Playfair Display', serif;
    }
    
    .inter {
      font-family: 'Inter', sans-serif;
    }
    
    .poppins {
      font-family: 'Poppins', sans-serif;
    }
    
    .voltaire {
      font-family: 'Voltaire', sans-serif;
    }
    
    .cormorant {
      font-family: 'Cormorant Garamond', serif;
    }
    
    .calistoga {
      font-family: 'Calistoga', serif;
    }
    
    /* Interactive states */
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    
    /* Responsive media queries */
    @media (min-width: 640px) {
      .container {
        /* padding: 0 24px; */
      }
      
      .hero-title {
        font-size: 48px;
      }
      
      .hero-subtitle {
        font-size: 18px;
        max-width: 70%;
      }
      
      .hero-buttons {
        flex-direction: row;
        justify-content: center;
      }
      
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .service-circles {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .team-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
      }
      
      .resort-gallery {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .destination-cards {
        flex-direction: row;
        gap: 24px;
      }
      
      .destination-card {
        flex: 1;
      }
    }
    
    @media (min-width: 768px) {
      .container {
        /* padding: 0 32px; */
      }
      
      .hamburger {
        display: none;
      }
      
      .nav-menu {
        display: flex;
      }
      
      .header {
        padding: 14px 88px;
      }
      
      .hero-title {
        font-size: 60px;
      }
      
      .hero-subtitle {
        font-size: 20px;
        max-width: 54%;
      }
      
      .welcome-section {
        flex-direction: row;
        align-items: center;
        padding: 65px 56px;
      }
      
      .welcome-images {
        width: 36%;
        height: 444px;
      }
      
      .welcome-content {
        width: 54%;
        text-align: left;
        margin-left: 36px;
      }
      
      .section-title {
        font-size: 36px;
      }
      
      .featured-content {
        flex-direction: row;
        gap: 44px;
      }
      
      .featured-main {
        width: 50%;
      }
      
      .featured-text-content {
        width: 46%;
      }
      
      .services-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
      }
      
      .service-circles {
        grid-template-columns: repeat(5, 1fr);
      }
      
      .dream-content {
        flex-direction: row;
        gap: 72px;
      }
      
      .dream-left {
        width: 46%;
      }
      
      .dream-right {
        width: 48%;
      }
      
      .team-grid {
        grid-template-columns: repeat(5, 1fr);
      }
      
      .services-content {
        flex-direction: row;
        gap: 48px;
      }
      
      .services-left {
        width: 60%;
      }
      
      .services-right {
        width: 40%;
        text-align: left;
      }
      
      .services-row {
        flex-direction: row;
        justify-content: space-evenly;
      }
      
      .features-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      
      .resort-gallery {
        grid-template-columns: repeat(4, 1fr);
      }
      
      .footer-main {
        flex-direction: row;
        justify-content: space-between;
      }
      
      .footer-brand {
        width: 32%;
      }
      
      .footer-sections {
        flex-direction: row;
        width: 58%;
        gap: 80px;
      }
    }
    
    @media (min-width: 1024px) {
      .hero-title {
        font-size: 60px;
      }
      
      .section-title {
        font-size: 36px;
      }
      
      .featured-title {
        font-size: 36px;
      }
      
      .multipurpose-title {
        font-size: 36px;
      }
      
      .cta-title {
        font-size: 50px;
      }
      
      .cta-brand {
        font-size: 80px;
      }
      
      .dream-title {
        font-size: 60px;
      }
      
      .dream-subtitle {
        font-size: 80px;
      }
      
      .team-title {
        font-size: 36px;
      }
      
      .services-main-title {
        font-size: 36px;
      }
      
      .why-choose-title {
        font-size: 36px;
      }
      
      .resort-title {
        font-size: 36px;
      }
      
      .cta-final-title {
        font-size: 48px;
      }
    }
    
    @media (min-width: 1280px) {
      .container {
        max-width: 1288px;
      }
    }
    
    @media (min-width: 1536px) {
      .container {
        max-width: 1440px;
      }
    }
@media (max-width:768px) {
    .services-cta {
    background-color: #f4ba00;
    color: #2c2c2c;
    padding: 12px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 500;
    box-shadow: 1px 6px 8px #0000003f;
    display: inline-block;
    transition: all 0.3s 
ease;
    width: 188px;
    /* margin-left: 25%; */
    margin: auto;
}
.services-right {
    text-align: center;
    width: 100%;
    background: #ffffff;
    padding: 60px 40px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services-left {
    display: flex;
    flex-direction: column;
    gap: 90px;
    width: 100%;
    background: #6d004f;
    color: #fff;
    padding: 60px 40px;
    clip-path: none;
}
.team-grid {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 46px;
}
.service-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 34px;
    padding: 16px 14px;
    border: 4px solid transparent;
    border-image: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
    border-image-slice: 1;
    border-radius: 114px;
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
    margin-bottom: 10px;
}
.service-circles {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    padding: 0 16px;
    /* margin-bottom: 27px; */
}
.welcome-section {
    background-color: #e7bfd7cc;
    padding: 80px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.welcome-image:nth-child(2) {
    width: 130px;
    height: 163px;
    top: -63px;
    left: -10px;
}
.welcome-image:nth-child(1) {
    width: 220px;
    height: 264px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.welcome-image:nth-child(3) {
    width: 113px;
    height: 140px;
    bottom: -41px;
    right: 0;
}
.dream-description {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 30px;
    color: #374151;
    text-align: justify;
    margin-bottom: 0px;
}
.dream-subtitle {
    font-size: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 0px;
}
.dream-right img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
}
.dream-title {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 0px;
}
.services-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.hero-content {
    text-align: center;
    padding: 80px 16px 0 16px;
    max-width: 92%;
    margin: 0 auto;
}
.hero-title {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 23px;
}
.hero-subtitle {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 28px;
    color: #ffffffe5;
    margin-bottom: 21px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

}

.service-circle:hover img {
    width: 130px;
    height: 130px;
    border-radius: 100px;
    object-fit: cover;
    position: relative;
    top: 82px;
}
.service-circle:hover h3 {
    font-size: 18px;
    font-family: 'Voltaire', sans-serif;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    position: relative;
    /* top: -108px; */
    bottom: 118px;
}
.service-circle:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 6px 6px 22px 6px;
    border: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
    /* border-image: linear-gradient(90deg, #c40b6d 0%, #333030 100%); */
    border-image-slice: 1;
    border-radius: 100px;
    width: 100%;
    max-width: 150px;
    margin: 0px 19%;
    border: 3.3px solid #c40b6d;
    /* text-align: center; */
    justify-content: center;
    /* background-color: #c30b6d; */
    /* color: #fff; */
    background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
}

/* ---------------------- */
/* MOBILE MENU */
/* ---------------------- */

.mobile-menu {
    position: fixed;
    top: 0;
    /* right: -260px; */
    width: 100%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    /* gap: 22px; */
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-menu a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #0000003d;
    align-items: center;
    padding: 12px 0;
}

.mobile-menu .close-btn {
    font-size: 32px;
    margin-bottom: 20px;
    cursor: pointer;
    background: none;
    border: none;
    text-align: right;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 900;
}

/* ---------------------- */
/* MOBILE VIEW */
/* ---------------------- */

@media (max-width: 768px) {
    .nav-menu,
    .cta-button {
        display: none;
    }

    .hamburger {
        display: block;
    }
}
@media(min-width:991px){
  .mobile-menu {
    position: fixed;
    top: 0;
    /* right: -260px; */
    width: 100%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
    padding: 30px 20px;
    display: none;
    flex-direction: column;
    /* gap: 22px; */
    transition: all 0.4s 
ease;
    z-index: 999;
}
}

