
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Hero Section */
.hero {
    background-image: url('../images/Hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ff6f00);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    width: 100%;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
}

.relax-text {
    background-color: #0047ab;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    padding: 0.5rem 2rem;
    margin-bottom: 0.5rem;
}

.recharge-text {
    background-color: white;
    position:relative;
    color: #0047ab;
    font-size: 3rem;
    left: 50%;
    font-weight: bold;
    padding: 0.5rem 2rem;
}

.location-tag-wrapper {
    position: relative;
    margin-left: auto;
    margin-top: -25px; 
}

.location-tag-border {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    clip-path: polygon(15% 20%, 93% 8%, 91% 81%, 15% 70%);
    z-index: 1;
}

.location-tag {
    background-color: #ff6f00;
    color: white;
    font-size: 2.5rem;
    text-align: center;
    font-weight: bold;
    padding: 3rem 6rem;
    padding-bottom: 4rem;
    margin-top: -0.5rem;
    position: relative;
    align-items: center;
    justify-content: center;
    clip-path: polygon(16.8% 23.69%, 91.62% 11.74%, 89.38% 79.63%, 16.8% 69.25%);
    z-index: 2;
}

/* CTA Button */
.cta-container {
    text-align: center;
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: -5%;
    left: 0;
}

.cta-button {
    display: flex;
    align-items: center;
    background-color: #0047ab;
    color: white;
    border: none;
    padding: 0;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffef0b;
    padding: 1rem;
    height: 100%;
}

.button-text {
    padding: 1rem 2rem;
}

.cta-button:hover {
    background-color: #003380;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.destinations {
    display: flex;
    justify-content: space-evenly; 
    flex-wrap: wrap;
    padding: 7rem 1rem 4rem;
    background-color: #ff6f00; 
}

.destination-circle {
    width: 300px;
    margin: 1rem;
    text-align: center;
    position: relative;
}

.destination-circle img {
    width: 130%;
    height: 400px;
    border-radius: 50%;
    margin-left: -15%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.destination-name {
    color: #ff6f00;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -2%;
    left: 0;
    right: 0;
    padding: 5px 0;
    border-radius: 5px;
}

.destination-desc {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 0.5rem;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.features-section {
    background-color: #fff;
    padding: 3rem 0;
}

.features-title {
    text-align: center;
    color: #0047ab;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    margin: 1rem;
    padding: 1.5rem;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #ff6f00;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #0047ab;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-box p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.hidden {   
    display: none !important;
}
.sms-consent {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sms-consent input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
    min-width: 18px;
    min-height: 18px;
}

.sms-consent label {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ffffff;
    font-weight: normal;
    display: inline;
}

.verification-container {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.verification-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 2px;
}

.send-code-btn {
    background-color: #ffeb3b;
    color: #333;
    border: none;
    border-radius: 5px;
    padding: 0 15px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.send-code-btn:hover {
    background-color: #ffd700;
}

.send-code-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.verification-message {
    font-size: 0.8rem;
    margin-top: 5px;
    padding: 5px;
    border-radius: 4px;
}

.verification-message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.verification-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.verification-message.info {
    color: #0c5460;
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
}

@media (max-width: 768px) {
    .feature-box {
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box {
        width: 100%;
        max-width: 350px;
    }
}

/* Modal Form Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #5CE1E6;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #333;
}

.modal-content h2 {
    color: #ff6f00;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0047ab;
    box-shadow: 0 0 5px rgba(0, 71, 171, 0.3);
}

.select-wrapper {
    position: relative;
}

/* .select-wrapper::after {
    content: '\25BC';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
} */

.error-message {
    color: #ff3333;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.hidden-field {
    display: none;
}

.RM-button {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s ease;
}

.RM-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.site-footer {
    background-color: #ffffff;
    color: #000000;
    padding: 50px 0 0;
    font-family: "Poppins", sans-serif;
    padding-bottom: 0px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    width: 75%;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: space-between;
  }
  
  /* Left column */
  .footer-left {
    flex: 1;
    min-width: 250px;
    padding-right: 20px;
  }
  
  .footer-logo-container {
    margin-bottom: 20px;
  }
  
  .main-logo {
    width: 180px;
    margin-bottom: 5px;
  }
  
  .tagline {
    font-size: 14px;
    font-style: italic;
    margin: 0;
    color: #000000;
  }
  
  .contact-info p {
    margin: 20px 0;
    font-size: 12px;
  }
  
  .social-icons {
    display: flex;
    margin: 60px 0;
  }
  
  .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    color: #000000;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: #ffcc00;
    color: #000000;
  }
  
  .flag-container {
    display: flex;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  
  .footer-flag {
    width: 40px;
    height: auto;
    margin-right: 10px;
    border: 1px solid #fff;
  }
  
  /* Middle column */
  .footer-middle {
    flex: 1;
    min-width: 200px;
    padding: 0 20px;
  }
  
  /* Right column */
  .footer-right {
    flex: 1;
    min-width: 250px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .footer-column h3 {
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: #ffcc00;
  }
  
  .footer-brand {
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .powered-by {
    color: #000000;
    font-size: 14px;
    margin-right: 20px;
    margin-bottom: 20px;
    font-style: italic;
  }
  
  .footer-brand-logo {
    width: 120px;
    margin-bottom: 10px;
  }
  
  .brand-tagline {
    font-size: 12px;
    color: #ffcc00;
    text-align: right;
  }

/* Responsive Breakpoints */

/* 1250px */
@media (max-width: 1250px) {
    .container {
        max-width: 1250px;
    }
    
    .destination-circle {
        width: 280px;
    }
    
    .destination-circle img {
        height: 280px;
    }
}

/* 1100px */
@media (max-width: 1100px) {
    .container {
        max-width: 1100px;
    }
    
    .relax-text, .recharge-text {
        font-size: 2.5rem;
    }
    
    .location-tag {
        font-size: 2rem;
    }
    
    .destination-circle {
        width: 250px;
    }
    
    .destination-circle img {
        height: 250px;
    }
}

/* 1000px */
@media (max-width: 1000px) {
    .container {
        max-width: 1000px;
    }
    
    .hero {
        height: 50vh;
    }
    
    .destination-circle {
        width: 220px;
    }
    
    .destination-circle img {
        height: 220px;
    }
}

/* 960px */
@media (max-width: 960px) {
    .container {
        max-width: 960px;
    }
    
    .destinations {
        padding: 1rem 0.5rem 3rem;
    }
    
    .destination-circle {
        width: 200px;
    }
    
    .destination-circle img {
        height: 200px;
    }
    
    .destination-name {
        font-size: 1.2rem;
    }
    
    .destination-desc {
        font-size: 0.8rem;
        max-width: 200px;
    }
}

/* 900px */
@media (max-width: 900px) {
    .container {
        max-width: 900px;
    }
    
    .relax-text, .recharge-text {
        font-size: 2.2rem;
        padding: 0.4rem 1.5rem;
    }
    
    .location-tag {
        font-size: 1.8rem;
        padding: 2rem 2rem;
        text-align: center;
    }
}

/* 760px */
@media (max-width: 760px) {
    .container {
        max-width: 760px;
    }
    
    .hero {
        height: 45vh;
        min-height: 350px;
    }
    
    .destinations {
        flex-direction: column;
        align-items: center;
    }
    
    .destination-circle {
        width: 280px;
        margin: 1.5rem 0;
    }
    
    .destination-circle img {
        height: 280px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
}

/* 700px */
@media (max-width: 700px) {
    .container {
        max-width: 700px;
    }
    
    .relax-text, .recharge-text {
        font-size: 2rem;
        padding: 0.3rem 1.2rem;
    }
    
    .location-tag {
        font-size: 1.6rem;
        padding: 0.3rem 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* 639px */
@media (max-width: 639px) {
    .container {
        max-width: 639px;
    }
    
    .hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
}

/* 575px */
@media (max-width: 575px) {
    .container {
        max-width: 575px;
    }
    
    .relax-text, .recharge-text {
        font-size: 1.8rem;
        padding: 0.3rem 1rem;
    }
    
    .location-tag {
        font-size: 1.4rem;
        padding: 0.3rem 1rem;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .RM-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* 500px */
@media (max-width: 500px) {
    .container {
        max-width: 500px;
    }
    
    .hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .destination-circle {
        width: 250px;
    }
    
    .destination-circle img {
        height: 250px;
    }
}

/* 450px */
@media (max-width: 450px) {
    .container {
        max-width: 450px; 
    }
    
    .relax-text, .recharge-text {
        font-size: 1.5rem;
        padding: 0.2rem 0.8rem;
    }
    
    .location-tag {
        font-size: 1.2rem;
        padding: 1.5rem 1.5rem;
    }
    .location-tag-border {
        margin-top: -0.7rem; 
    }

    .features-container {
        padding: 0; 
    }  
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
    
    .destination-circle {
        width: 220px;
    }
    
    .destination-circle img {
        height: 220px;
    }
}

/* 400px */
@media (max-width: 400px) {
    .container {
        max-width: 400px;
    }
    
    .hero {
        min-height: 220px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
}

/* 320px */
@media (max-width: 320px) {
    .relax-text, .recharge-text {
        font-size: 1.3rem;
        padding: 0.2rem 0.6rem;
    }
    
    .location-tag {
        font-size: 1rem;
        padding: 0.2rem 0.6rem;
        margin-top: 0;
    }
    
    .destination-circle {
        width: 200px;
    }
    
    .destination-circle img {
        height: 200px;
    }
    
    .destination-name {
        font-size: 1.1rem;
    }
    
    .destination-desc {
        font-size: 0.7rem;
    }
}