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

body {
    font-family: "Lato", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header (Shared) */
.header {
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav {
    display: flex;
    list-style: none;
    gap: 60px;
}

.nav-active {
    color: #124282 !important;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    font-family: "Lato", sans-serif;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.phone {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    font-family: "Lato", sans-serif;
}

.login-btn {
    background-color: #1E8128;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.voucher-section {
    background-color: #062A5E;
    padding: 15px 0;
    text-align: center;
    margin-top: 100px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

}

.voucher-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.voucher-image {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.voucher-container h1 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    font-family: "Inter", sans-serif;
}

.claim-btn {
    background-color: #062A5E;
    color: white;
    padding: 10px 30px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: "Inter", sans-serif;
}


/* Hero Section (index.html) */
.hero {
    background: linear-gradient(180deg, #124282 0%, #040E1C 100%);
    color: white;
    padding: 30px 0 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1.1fr;
    gap: 50px;
    align-items: center;
    margin-top: 170px;

}

.hero-text h1 {
    font-size: 2.5rem;
    max-width: 600px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text .highlight {
    color: #7CA942;
    font-weight: 700;
}

.hero-text .tagline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 7px 60px;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    font-family: "Inter", sans-serif;
}

.btn-primary {
    background-color: #7CA944;
    color: white;
}

.btn-primary:hover {
    background-color: #1E8128;
}

.btn-secondary {
    background-color: white;
    color: black;
    border: 2px solid white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: 360px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    /* transition: transform 0.3s ease; */
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Split Banner Section (Services Page) */
.split-banner {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 170px;
}

.banner-text-section {
    width: 50%;
    background: linear-gradient(180deg, #124282 0%, #040E1C 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-image-section {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.banner-text-section h1 {
    font-size: 2.5rem;
    max-width: 600px;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-text-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Services Section (Services Page) */
.allservices {
    padding: 40px 0;
}

.nav-tabs {
    display: flex;
    /* justify-content: center; */
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.nav-tabs button {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    color: black;
    cursor: pointer;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
}

.nav-tabs button:hover {
    background-color: #7CA942;
    color: white;
}

.nav-tabs .active {
    background-color: #7CA942;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #D9D9D9;
}

.service-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.service-icon {
    background-color: #d1e1bd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon:hover {
    background-color: #e1e7ef;
}

.service-card h3 {
    margin: 10px 0;
    color: #333;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
}

.learn-more-btn {
    margin-top: 20px;
    width: 90%;
    padding: 10px;
    background-color: #7CA942;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.learn-more-btn:hover {
    background-color: #45a049;
}

/* Floating Chat Icon (Services Page) */
.floating-chat {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1E8128;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
}

/* Reviews Section (index.html) */
.reviews {
    padding: 30px 0;
    background: #eef4e6;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-family: "Inter", sans-serif;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: #7CA944 1px solid;
    cursor: pointer;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #7cb342;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.review-card p {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

/* Process Section (index.html) */
.process {
    padding: 30px 0;
    background-color: #fafafa;
}

.process-title {
    text-align: center;
    font-size: 25px;
    margin-bottom: 10px;
    font-family: "Lato", sans-serif;
}

.process-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #7CA942;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.process-step h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
}

.process-step-subtext {
    font-size: 14px;
    color: #555;
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.step-border {
    width: 100%;
    height: 1px;
    background-color: #7CA942;
    margin: 10px auto 20px;
}

.cta-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #e4ecdb;
    width: 50%;
    margin: 30px auto;
    border-radius: 10px;
    padding: 15px 20px;
}

.cta-section h4 {
    font-size: 1rem;
    color: #000;
    margin-bottom: 10px;
    font-family: "Lato", sans-serif;
}

/* Pricing Section (index.html) */
.pricing {
    padding: 60px 0;
    background: linear-gradient(170deg, #266FCE 5%, #A9BAD0 94%);
}

.pricing-image {
    width: 60px;
    height: 60px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-cards-bottom-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.pricing-cards-last-row {
    background: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.popular-badge {
    background: #7cb342;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
}

.price-old {
    text-decoration: line-through;
    color: #c6d1e0;
    font-size: 28px;
    font-weight: bold;
}

.price-new {
    color: #CFA455;
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
}

.price-btn {
    background: #7cb342;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
}

.price-btn:hover {
    background-color: #1E8128;
}

/* Contact Form (index.html) */
.contact-form {
    padding: 40px;
    border: 2px solid #d4e4c8;
    border-radius: 10px;
    margin: 20px;
}

.contact-form h2 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form p {
    font-size: 0.9rem;
    color: black;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form p strong {
    color: #2c5aa0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.9rem;
    width: 100%;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.custom-textarea {
    width: 100%;
    min-height: 100px;
    max-height: 120px;
    /* 5 lines approximately */
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    font-family: Arial, sans-serif;
    resize: vertical;
    overflow-y: auto;
    box-sizing: border-box;

    /* Key properties for your requirements */
    white-space: pre-wrap;
    /* Preserves line breaks and wraps text */
    word-wrap: break-word;
    /* Breaks long words */
    vertical-align: top;
    /* Text starts from top */
    text-align: left;
}

.contact-form button {
    padding: 10px;
    background-color: #2c5aa0;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background-color: #1e406e;
}

/* Social Links (index.html) */
.social-link {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    border-radius: 60px;
    border: 1px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link:hover {
    background-color: white;
}

.social-link p {
    margin: 0;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 400;
    color: white;
}

.social-link:hover p {
    color: #124282;
}


/* Main Content */
.main-content {
    padding: 40px 20px 0 0;
    margin-top: 20px;
    background-color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: #A9BAD0 1px solid;

}

.back-nav {
    display: flex;
    align-items: center;
    /* margin-top: 30px; */
    gap: 15px;
    margin-bottom: 30px;
    cursor: pointer;
    color: #000;
    font-weight: 600;

}

.back-nav i {
    font-size: 18px;
    color: #000;
}

.page-header {
    text-align: center;
    margin-bottom: 10px;
    align-self: center;
    flex: 1;
}

.page-title {
    color: #124282;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.page-subtitle {
    color: #666;
    font-size: 16px;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background-color: #dbe8cc;
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar::-webkit-progress-bar {
    background-color: #dbe8cc;
    border-radius: 4px;
}

.progress-bar::-webkit-progress-value {
    background-color: #1E8128;
    border-radius: 4px;
}

.progress-bar::-moz-progress-bar {
    background-color: #1E8128;
    border-radius: 4px;
}

/* Packages Section - Full Width Background */
.packages-section {
    background-color: #F2FFF4;
    width: 100%;
    padding: 40px 0;
    margin-top: 240px;
}

/* Package Cards */
.packages-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 5px;
    align-items: stretch;
}

.package-card {
    width: 320px;
    background: white;
    border: 1.5px solid #A9BAD0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.package-card:hover {
    border-color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
}

.package-card.selected {
    background-color: #124282;
    /* border-color: #28a745;
    background: #f8fff9; */
}

.package-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-header {
    margin-bottom: 20px;
}

.package-name {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.package-card.selected .package-name,
.package-card.selected .feature-text,
.package-card.selected .feature-highlight,
.package-card.selected .rating-text,
.package-card.selected .original-price,
.package-card.selected .package-stars {
    color: white;
}

.current-price {
    color: #FF0000;
    font-size: 20px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.price-unit {
    color: #FF0000;
    font-size: 14px;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-stars {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.rating-text {
    color: #000;
    font-size: 14px;

}


/* Features List */
.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.feature-icon {
    color: #28a745;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    color: #555;
}

.feature-highlight {
    font-weight: 600;
    color: #333;
}

/* Select Button */
.select-btn {
    width: 100%;
    padding: 12px 24px;
    border: 1.5px solid #7CA942;
    background: white;
    color: #7CA942;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .select-btn:hover, */
.package-card.selected .select-btn {
    border: 1px solid white;
    background-color: #124282;
    color: white;
}

/* Next Button */
.next-container {
    display: flex;
    justify-content: flex-end;

}

.next-btn {
    background: #1E8128;
    color: white;
    border: none;
    padding: 13px 60px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-btn:hover {
    background: #218838;
}

.next-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.frequency-section {
    background-color: #F2FFF4;
    width: 100%;
    padding: 40px 0;
    height: 100%;
    margin-top: 240px;
    /* border: #A9BAD0 1px solid; */
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 20px;
}

.frequency-options {
    background: white;
    border-radius: 16px;
    padding: 0;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
    border: 1px solid #124282;
    overflow: hidden;
}

.frequency-option {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: background-color 0.2s;

}

.frequency-option:last-child {
    border-bottom: none;
}

.frequency-option:hover {
    background-color: #f8fafc;
}

.frequency-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 20px;
    cursor: pointer;
    accent-color: #124282;
}

.frequency-option.selected .frequency-info h3 {
    font-weight: 700 !important;
    color: #000 !important;
}


.frequency-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frequency-info h3 {
    font-size: 18px;
    font-weight: 400;
    color: #1a202c;
    margin-bottom: 4px;
    text-align: center;
    font-family: "Inter", sans-serif;
}


.frequency-info .blue-text {
    color: #124282;
    font-family: "Inter", sans-serif;
}

.price-info {
    text-align: right;
}

.price {
    font-size: 20px;
    font-weight: 400;
    color: #1a202c;
    font-family: "Inter", sans-serif;
}

.frequency-option.selected .price {
    font-weight: 600 !important;
    color: #000 !important;
}

.save-badge {
    background-color: #ACE465;
    color: #22543d;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    display: inline-block;
}

.includes-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #124282;
    margin-bottom: 40px;
    margin-top: -20px;
}

.includes-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.includes-icon {

    margin-right: 20px;

}

.includes-icon i {
    font-size: 20px;
    color: #4a5568;
}

.includes-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.includes-content p {
    color: #718096;
    font-size: 14px;
    line-height: 1.5;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;

}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: white;
    border-radius: 18px;
    padding: 1.5rem 1.5rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    border: 3px solid #1E8128;
}



@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;

}

.modal-close:hover {
    width: 30px;
    height: 30px;
    background: #f8f8f8;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    /* background: #f0f0f0; */
}

.modal-title {
    color: #124282;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-right: 2rem;
    font-family: "Inter", sans-serif;
}

.modal-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.modal-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.20rem;
    font-size: 0.9rem;
    color: #000;
    font-family: "Inter", sans-serif;
    font-weight: 600
}

.modal-benefits li:before {
    /* i want to give image here differet differennt image how to do */
    content: url('/images/check-circle.png');
    margin-right: 1.1rem;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-bottom: 6px;
}

.modal-buttons {
    align-self: center;
    width: 100%;

}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    font-family: "Inter", sans-serif;
}

.modal-btn-primary {
    background: #1E8128;
    color: white;
    order: 1;
}

.modal-btn-primary:hover {
    background: #218838;
    transform: translateY(-1px);
}

.modal-btn-secondary {
    background: transparent;
    color: #999;
    border: none;
    font-weight: 400;
    order: 2;
    text-decoration: underline;
    padding: 0.75rem;
}

.modal-btn-secondary:hover {
    color: #666;
    background: transparent;
}

.flex-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: "Inter", sans-serif;
}

.card-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.space-type {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.space-card {
    flex: 1;
    border: 4px solid #969393;
    border-radius: 14px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.space-card.active {
    border-color: #124282;
    background-color: #ffff;
}

.space-card:hover {
    border-color: #124282;
}

.icon {
    font-size: 22px;
    color: #333;
}

.space-title {
    font-weight: bold;
    margin: 5px 0;
    font-family: "Inter", sans-serif;
}

.space-title.active {
    color: #124282;
}

.space-desc {
    font-size: 12px;
    color: #666;
}

.section-label {
    font-size: 18px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin: 15px 0 10px;
}

.property-type {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-type {
    padding: 8px 15px;
    border: 1px solid #124282;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
    color: #124282;
    font-family: "Inter", sans-serif;
}

.btn-type.active {
    background-color: #124282;
    border-color: #124282;
    color: white;
}

.btn-type:hover {
    border-color: #124282;
}

.pet-options {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.pet-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.pet-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #124282;
}

.pet-options input[type="checkbox"]:checked {
    background-color: #124282;
}

.pet-textarea {
    width: 100%;
    min-height: 60px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 13px;
    resize: none;
    margin-top: 8px;
    font-family: "Inter", sans-serif;
}

.room-item {
    margin-bottom: 15px;
}

.room-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.room-options {
    display: flex;
    gap: 8px;
}

.btn-room {
    width: 35px;
    height: 35px;
    border: 1px solid #124282;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    color: #333;
}

.btn-room.active {
    background-color: #124282;
    border-color: #124282;
    color: white;
}

.btn-room:hover {
    border-color: #124282;
}

.next-btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    padding: 0 40px;
}

.btn-next {
    background-color: #1E8128;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-next:hover {
    background: #218838;
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 70px;
    }

    .flex-container {
        flex-direction: column;
    }

    .space-type {
        flex-direction: column;
    }

    .packages-section {
        padding: 70px 0;
    }
    .frequency-section {
        padding: 70px 0;
    }
}



@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-title {
        font-size: 26px;
    }

    .frequency-option {
        padding: 20px 24px;
    }

    .next-button {
        right: 20px;
        bottom: 20px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card {
        padding: 20px;
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .voucher-section {
        margin-top: 180px;
        
        
    }

    .voucher-container {
        /* flex-direction: column; */
        gap: 15px;
        display: flex;
        padding: 10px;
        margin-top: 5px;
    }

    .voucher-container h1 {
        font-size: 0.9rem;
    }

    .claim-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .hero {
        margin-top: 150px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 400px;
        height: auto;
    }

    .split-banner {
        flex-direction: column;
        margin-top: 150px;
        height: auto;
    }

    .banner-text-section {
        width: 100%;
        padding: 30px 20px;
        text-align: center;
    }

    .banner-image-section {
        width: 100%;
        height: 300px;
    }

    .banner-text-section h1 {
        font-size: 2rem;
    }

    .banner-text-section p {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .review-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .pricing-cards-bottom-row {
        flex-direction: column;
        align-items: center;
    }

    .pricing-cards-last-row {
        width: 100%;
        max-width: 300px;
    }

    .contact-form {
        padding: 20px;
        margin: 15px;
    }

    .floating-chat {
        width: 50px;
        height: 50px;
    }

    .floating-chat img {
        width: 30px;
        height: 30px;
    }
    .frequency-section {
       padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .frequency-section {
        padding: 80px 0;
    }
    .header {
        padding: 8px 0;
    }

    .nav a {
        font-size: 14px;
    }

    .phone {
        font-size: 14px;
    }

    .login-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .voucher-section {
        margin-top: 180px;
    }

    .voucher-container h1 {
        font-size: 0.85rem;
    }

    .claim-btn {
        padding: 6px 15px;
        font-size: 0.75rem;
    }

    .hero {
        margin-top: 120px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-image {
        max-width: 300px;
    }

    .split-banner {
        margin-top: 120px;
    }

    .banner-text-section h1 {
        font-size: 1.8rem;
    }

    .banner-text-section p {
        font-size: 0.85rem;
    }

    .banner-image-section {
        height: 250px;
    }

    .btn {
        padding: 6px 40px;
        font-size: 0.8rem;
        min-width: 120px;
    }

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

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .learn-more-btn {
        font-size: 0.8rem;
        padding: 8px;
    }

    .nav-tabs {
        flex-direction: column;
        align-items: center;
    }

    .nav-tabs button {
        width: 100%;
        max-width: 200px;
        font-size: 14px;
        padding: 8px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-title {
        font-size: 20px;
    }

    .process-subtitle {
        font-size: 14px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .process-step-subtext {
        font-size: 12px;
    }

    .pricing-card {
        padding: 20px;
    }

    .price-old {
        font-size: 24px;
    }

    .price-new {
        font-size: 28px;
    }

    .price-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    .contact-form h2 {
        font-size: 1rem;
    }

    .contact-form p {
        font-size: 0.8rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.8rem;
    }

    .contact-form button {
        font-size: 0.9rem;
    }
}

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

    .header {
        padding: 5px 0;
    }

    .nav a {
        font-size: 12px;
    }

    .phone {
        font-size: 12px;
    }

    .login-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .voucher-section {
        margin-top: 180px;
    }

    .voucher-container h1 {
        font-size: 0.8rem;
    }

    .claim-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .hero {
        margin-top: 100px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-image {
        max-width: 250px;
    }

    .split-banner {
        margin-top: 100px;
    }

    .banner-text-section {
        padding: 20px 10px;
    }

    .banner-text-section h1 {
        font-size: 1.5rem;
    }

    .banner-text-section p {
        font-size: 0.8rem;
    }

    .banner-image-section {
        height: 200px;
    }

    .btn {
        padding: 5px 30px;
        font-size: 0.7rem;
    }

    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .learn-more-btn {
        font-size: 0.7rem;
        padding: 6px;
    }

    .nav-tabs button {
        font-size: 12px;
        padding: 6px;
    }

    .floating-chat {
        width: 40px;
        height: 40px;
    }

    .floating-chat img {
        width: 25px;
        height: 25px;
    }

    .review-card {
        padding: 15px;
    }

    .review-card p {
        font-size: 12px;
    }

    .contact-form {
        padding: 15px;
        margin: 10px;
    }

    .packages-section {
        padding: 120px 0;
    }
    .frequency-section {
        padding: 80px 20px;
    }
}