/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #2c3345;
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mobile-br {
    display: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #081d3a;

    padding: 10px 0;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

.nav-logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff9500;
}

.nav-book-now-mobile {
    display: none;
}

.nav-cta {
    background: #ff9500;
    color: #fff !important;
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta i {
    font-size: 14px;
}

.nav-cta:hover {
    background: #e88504;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
    background: #f5f0e8;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 30px 50px;
    align-items: start;
}

.hero-content {
    grid-column: 1;
    grid-row: 1;
}

.hero-container .hero-form {
    grid-column: 1;
    grid-row: 2;
}

.hero-images {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 22px;
}

.hero h1 .bold-italic {
    font-weight: 900;
}

.hero h1 strong {
    font-weight: 900;
}

.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-offer {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ff9500;
    margin-bottom: 14px;
}

/* Hero Images */

.hero-img-grid {
    position: relative;
    display: flex;
    gap: -20px;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.hero-photo {
    width: 48%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
    object-fit: cover;
    aspect-ratio: 3/4;
    border: none;
    background: none;
}

.hero-photo.hero-single {
    width: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.hero-photo-1 {
    margin-right: -15px;
}

.hero-photo-2 {
    margin-top: 40px;
    margin-left: -15px;
}

.circle-deco {
    position: absolute;
    border-radius: 50%;
    border: 20px solid #a8c4e0;
    opacity: 0.4;
    z-index: 1;
}

.circle-top {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -30px;
}

.circle-bottom {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -20px;
}

/* ===== HERO FORM ===== */
.hero-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 550px;
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-form-group input,
.hero-form-group select,
.hero-form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #d4d4d4;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.hero-form-group input:focus,
.hero-form-group select:focus,
.hero-form-group textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.hero-form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
    color: #888;
}

.hero-form-group select:valid {
    color: #333;
}

.hero-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.hero-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.hero-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4caf50;
}

.hero-form-checkbox label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.hero-form-btn {
    background: #1565C0;
    color: #fff;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
}

.hero-form-btn:hover {
    background: #0D47A1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 48, 135, 0.4);
}

.hero-form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
    grid-column: 1;
    grid-row: 2;
}

.hero-form-success i {
    font-size: 56px;
    color: #4caf50;
}

.hero-form-success h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}

.hero-form-success p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.hero-form-group .iti {
    width: 100%;
}

.hero-form-group .iti .iti__tel-input {
    padding: 16px 18px;
    border: 2px solid #d4d4d4;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.hero-form-group .iti .iti__tel-input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* ===== BOOKING FORM SECTION ===== */
.book-section {
    background: #fff;
    padding: 24px 40px;
}

.book-wrapper {
    max-width: 650px;
    margin: 0 auto;
    border: 2px solid #b2dfdb;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    overflow: visible;
}

.book-line {
    width: 60px;
    height: 4px;
    background: #ff9500;
    border-radius: 4px;
    margin: 0 auto 28px;
}

.book-title {
    font-size: 32px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 36px;
    font-style: italic;
}

.book-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: left;
}

.book-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.book-form .form-group label {
    font-size: 15px;
    font-weight: 700;
    color: #ff9500;
}

.book-form .form-group input,
.book-form .form-group select,
.book-form .form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    color: #1e293b;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.book-form .form-group input:focus,
.book-form .form-group select:focus,
.book-form .form-group textarea:focus {
    outline: none;
    border-color: #ff9500;
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.book-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.book-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.book-form .form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

/* intl-tel-input overrides */
.iti {
    width: 100%;
}

.iti .iti__tel-input {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    color: #1e293b;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.iti .iti__tel-input:focus {
    outline: none;
    border-color: #ff9500;
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.iti__dropdown-content {
    max-height: 200px !important;
    overflow-y: auto !important;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.iti__country-list {
    max-height: 200px !important;
    overflow-y: auto !important;
}

.book-submit-btn {
    background: #1565C0;
    color: #fff;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 8px;
}

.book-submit-btn:hover {
    transform: translateY(-2px);
    background: #0D47A1;
    box-shadow: 0 8px 25px rgba(0, 48, 135, 0.5);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: #ff9500;
    color: #fff;
    padding: 14px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    font-family: 'Open Sans', sans-serif;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.btn-primary:hover {
    background: #e88504;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
}



.btn-outline {
    display: inline-block;
    border: 2px solid #ff9500;
    color: #ff9500;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #ff9500;
    color: #fff;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #081d3a;
    color: #fff;
    padding: 14px 36px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
}

.btn-call:hover {
    background: #0a2a52;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* ===== STATS ===== */
.stats {
    background: #ff9500;
    padding: 40px 20px;

}

.stats-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-item h2 {
    font-size: 58px;
    font-weight: 900;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.stat-item p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 5px;
}

/* ===== CALL US ===== */
.call-us {
    background: #f5f5f5;
    padding: 30px 20px;
    text-align: center;

}

/* ===== SECTIONS COMMON ===== */
.section-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #ff9500;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #081d3a;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-title strong {
    font-weight: 900;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
}

.section-desc {
    font-size: 16px;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 600;
}

/* ===== SERVICES ===== */
.services {
    background: #f5f5f5;
    padding: 50px 20px;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    border: 3px solid #ff9500;
    padding: 24px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 149, 0, 0.15);
}

.service-img {
    width: 100%;
    max-width: 180px;
    margin: 0 auto 16px;
}

.service-img img {
    width: 100%;
    border-radius: 12px;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 900;
    color: #081d3a;
    margin-bottom: 8px;
}

.service-card .service-sub {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.service-card ul {
    text-align: left;
    margin-bottom: 16px;
    width: 100%;
}

.service-card ul li {
    font-size: 13px;
    color: #444;
    padding: 3px 0;
    padding-left: 28px;
    position: relative;
}

.service-card ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ff9500;
    font-size: 16px;
}

.service-card .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ff9500;
    color: #fff;
    border: 2px solid #ff9500;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.service-card .btn-outline:hover {
    background: #e88504;
    border-color: #e88504;
    color: #fff;
}

.service-card-buttons {
    margin-top: auto;
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.service-card .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1b3a5c;
    color: #fff;
    border: 2px solid #1b3a5c;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.service-card .btn-call:hover {
    background: #142d49;
    border-color: #142d49;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: transparent;
    padding: 40px 20px;
    text-align: center;
    border: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

.cta-banner p {
    color: #555;
    font-size: 16px;
    margin-bottom: 8px;
}

.cta-price {
    color: #ff9500 !important;
    font-size: 20px !important;
    font-weight: 700;
    margin-bottom: 24px !important;
}

.cta-banner .btn-primary {
    margin-top: 10px;
}

/* ===== QUALITY / CERTIFICATES ===== */
.quality {
    background: #f5f5f5;
    padding: 50px 20px;

}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.quality .section-desc {
    color: #1a1a1a;
    font-weight: 500;
}

.cert-card {
    border-radius: 12px;
    overflow: hidden;
}

.cert-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cert-dots {
    display: none;
}

/* ===== FULL WIDTH IMAGE ===== */
.fullwidth-image {
    width: 100%;
    background: #f5f5f5;
    padding: 0;
    line-height: 0;
}

.fullwidth-image img {
    width: 100%;
    display: block;
}



/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #081d3a;
    padding: 60px 20px;
}

.testimonials .section-label {
    color: #ff9500;
}

.testimonials .section-title {
    color: #fff;
}

.testimonials .section-title strong {
    font-weight: 900;
}

.testimonials .section-desc {
    color: #ccc;
}

.testimonials-slider-wrapper {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: #ff9500;
    width: 24px;
    border-radius: 5px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 40px;
    font-weight: 900;
    color: #1a8fc4;
    line-height: 1;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 14px;
}

.testimonial-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ff9500;
    font-style: italic;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    padding: 50px 40px;
    background: #fff;
}

.why-choose-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.why-choose-title {
    font-size: 40px;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.why-choose-title b {
    font-weight: 900;
}

.why-choose-desc {
    font-size: 16px;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.why-choose-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 790px;
    margin: 0 auto;
}

.why-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.why-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 4px solid transparent;
}

.why-choose-grid .why-card:nth-child(1) .why-card-img {
    border-bottom-color: #f59e0b;
}

.why-choose-grid .why-card:nth-child(2) .why-card-img {
    border-bottom-color: #0d9488;
}

.why-choose-grid .why-card:nth-child(3) .why-card-img {
    border-bottom-color: #2563eb;
}

.why-choose-grid-bottom .why-card:nth-child(1) .why-card-img {
    border-bottom-color: #f59e0b;
}

.why-choose-grid-bottom .why-card:nth-child(2) .why-card-img {
    border-bottom-color: #0d9488;
}

.why-card-body {
    padding: 24px 20px 28px;
}

.why-card-body h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card-body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ===== JOURNEY ===== */
.journey {
    background: #f5f5f5;
    padding: 50px 20px;

}

.journey .section-desc {
    color: #1a1a1a;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.journey-step {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.journey-step:hover {
    transform: translateY(-5px);
}

.journey-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-icon i {
    font-size: 42px;
    color: #ff9500;
}

.journey-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: #081d3a;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.journey-step p {
    font-size: 14px;
    color: #555;
}

/* ===== BEFORE / AFTER ===== */
.before-after {
    background: #f5f5f5;
    padding: 50px 20px;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ba-card {
    overflow: hidden;
    background: transparent;
}

.ba-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.ba-labels {
    display: flex;
    justify-content: space-around;
    padding: 0 10px 10px;
}

.ba-before,
.ba-after {
    font-size: 15px;
    font-weight: 700;
    color: #081d3a;
}

/* ===== FAQ ===== */
.faq {
    background: #f5f5f5;
    padding: 50px 20px;
}

.faq-layout {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.faq-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.faq-title {
    font-size: 28px;
    font-weight: 900;
    color: #081d3a;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #ff9500;
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.3s;
}

.faq-item.open {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

.faq-item.open .faq-question {
    color: #081d3a;
}

.faq-arrow {
    transition: transform 0.3s;
    color: #fff;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: #081d3a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 16px;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: url('https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/kVvQ0OWHPfA6M5KnBTZm/media/6926de3bf394db5e747d994a.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 20px;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: inherit;
}

.final-cta .section-container {
    position: relative;
    z-index: 1;
}

.final-cta .section-title {
    color: #fff;
    font-style: normal;
    font-weight: 700;
}

.final-cta .section-desc {
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 30px;
}

.final-cta .btn-primary {
    background: #ff9500;
    border: 2px solid #ff9500;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 8px;
    max-width: 100%;
    box-sizing: border-box;
}

.final-cta .btn-primary:hover {
    background: #e88504;
    border-color: #e88504;
}

.today-only {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    padding: 60px 20px 30px;
    color: #ccc;
}

.footer-container {
    max-width: 1170px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

.footer-contact h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact a {
    color: #ccc;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    color: #ff9500;
}

.footer-contact i {
    color: #ff9500;
    width: 16px;
    flex-shrink: 0;
}

.footer-map img {
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid #ffffff20;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.footer-bottom a {
    color: #ff9500;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===== WHATSAPP FLOAT (LEFT) ===== */
.whatsapp-float-wrapper {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    z-index: 999;
}

.wa-chat-bubble-link {
    text-decoration: none;
    color: inherit;
}

.wa-chat-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 16px;
    padding: 10px 14px 10px 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    position: relative;
    animation: waBubblePop 0.4s cubic-bezier(.34,1.56,.64,1) both;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wa-chat-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}

.wa-chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 22px;
    border-left: 9px solid transparent;
    border-right: 0px solid transparent;
    border-top: 10px solid #fff;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.07));
}

.wa-bubble-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.wa-bubble-online {
    position: absolute;
    bottom: 10px;
    left: 40px;
    width: 11px;
    height: 11px;
    background: #25d366;
    border-radius: 50%;
    border: 2px solid #fff;
}

.wa-bubble-text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.wa-bubble-text span {
    font-size: 13.5px;
    font-weight: 600;
    color: #222;
    font-family: 'Inter', sans-serif;
}

.wa-bubble-text span:last-child {
    font-weight: 400;
    color: #555;
    font-size: 13px;
}

@keyframes waBubblePop {
    from { opacity: 0; transform: translateY(10px) scale(0.92); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 32px;
    color: #fff;
}

/* ===== BOOK NOW FLOAT (RIGHT) ===== */
.book-now-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #1565C0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 48, 135, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border: none;
    cursor: pointer;
}

.book-now-float:hover {
    transform: scale(1.05);
    background: #0D47A1;
    box-shadow: 0 6px 25px rgba(0, 48, 135, 0.6);
}

.book-now-float i {
    font-size: 18px;
}

/* ===== BOOK NOW MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    z-index: 2;
}

.modal-close:hover {
    color: #ccc;
}

.modal-header {
    background: #081d3a;
    padding: 40px 40px 30px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.modal-header p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

.modal-body {
    padding: 36px 40px 40px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.modal-form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
    color: #888;
}

.modal-form-group select:valid {
    color: #333;
}

.modal-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-form-group .iti {
    width: 100%;
}

.iti--container {
    z-index: 99999;
}

.modal-form-group .iti .iti__tel-input {
    padding: 16px 18px;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.modal-form-group .iti .iti__tel-input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.modal-form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
}

.modal-form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #4caf50;
    flex-shrink: 0;
}

.modal-form-checkbox label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.modal-submit-btn {
    background: #1565C0;
    color: #fff;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.modal-submit-btn:hover {
    background: #0D47A1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 48, 135, 0.5);
}

.modal-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 30px;
    gap: 16px;
}

.modal-success i {
    font-size: 64px;
    color: #4caf50;
}

.modal-success h3 {
    font-size: 24px;
    color: #081d3a;
    font-weight: 700;
}

.modal-success p {
    font-size: 16px;
    color: #555;
    max-width: 350px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* LARGE DESKTOP - 1200px */
@media screen and (max-width: 1200px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero-container {
        gap: 30px;
    }

    .why-card-img {
        height: 250px;
    }

    .footer-top {
        gap: 30px;
    }
}

/* TABLET LANDSCAPE - 1024px */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-choose-grid-bottom {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .why-choose-title {
        font-size: 34px;
    }

    .why-card-img {
        height: 220px;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top .footer-map {
        grid-column: span 2;
    }

    .section-title {
        font-size: 30px;
    }

    .faq-layout {
        gap: 30px;
    }

    .faq-title {
        font-size: 24px;
    }

    .stats-container {
        gap: 60px;
    }

    .stat-item h2 {
        font-size: 46px;
    }
}

/* TABLET PORTRAIT - 768px */
@media screen and (max-width: 768px) {

    /* Navbar */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #081d3a;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-top: 1px solid #ffffff20;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-book-now-mobile {
        display: list-item;
    }

    .nav-book-now-btn {
        display: inline-block;
        background: #1565C0;
        color: #fff !important;
        padding: 12px 32px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        transition: background 0.3s, transform 0.2s;
    }

    .nav-book-now-btn:hover {
        background: #0D47A1;
        transform: translateY(-1px);
    }

    .nav-cta {
        font-size: 14px;
        padding: 8px 16px;
        width: auto;
        order: 4;
        margin: 8px auto 0;
    }

    /* Hero */
    .hero {
        padding: 120px 20px 50px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-images {
        order: 2;
    }

    .hero-container .hero-form {
        order: 3;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-offer {
        font-size: 14px;
        margin-top: 10px;
    }

    .hero-images {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        overflow: hidden;
    }

    .hero-img-grid {
        overflow: hidden;
        padding: 0;
    }

    .circle-deco {
        display: none;
    }

    .hero-form {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-form-row {
        grid-template-columns: 1fr;
    }

    .hero-form-btn {
        font-size: 16px;
        padding: 16px;
    }

    /* Stats */
    .stats-container {
        gap: 30px;
    }

    .mobile-br {
        display: block;
    }

    .stat-item h2 {
        font-size: 36px;
    }

    /* Section titles */
    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CTA */
    .cta-banner h2 {
        font-size: 26px;
    }

    .cta-price {
        font-size: 18px !important;
    }

    /* Certificates - Mobile Slider */
    .cert-slider-wrapper {
        overflow: hidden;
        position: relative;
    }

    .certificates-grid {
        display: flex;
        flex-direction: row;
        gap: 0;
        transition: transform 0.5s ease;
        will-change: transform;
    }

    .cert-card {
        min-width: 100%;
        flex: 0 0 100%;
        padding: 0 20px;
        border-radius: 12px;
        overflow: hidden;
    }

    .cert-card img {
        height: 320px;
        width: 100%;
        object-fit: contain;
        border-radius: 10px;
    }

    .cert-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 18px;
    }

    .cert-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: background 0.3s;
    }

    .cert-dot.active {
        background: #ff9500;
    }

    /* Testimonials */
    .testimonials-slider-wrapper {
        overflow: hidden;
        max-width: 100%;
    }

    .testimonials-grid {
        display: flex;
        grid-template-columns: none;
        gap: 20px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        transition: transform 0.5s ease;
        padding-bottom: 20px;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: center;
    }

    .testimonial-dots {
        display: flex;
    }

    /* Why Choose */
    .why-choose-section {
        padding: 50px 20px;
    }

    .why-choose-title {
        font-size: 28px;
    }

    .why-choose-desc {
        font-size: 15px;
    }

    .why-choose-grid,
    .why-choose-grid-bottom {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose-grid {
        margin-bottom: 28px;
    }

    .why-card-img {
        height: 300px;
    }

    /* Journey */
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Before/After */
    .ba-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    /* FAQ */
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-image {
        display: none;
    }

    .faq-title {
        font-size: 24px;
        text-align: center;
    }

    /* Booking Form */
    .book-section {
        padding: 24px 16px;
    }

    .book-wrapper {
        max-width: 100%;
        padding: 40px 24px;
    }

    .book-title {
        font-size: 28px;
    }

    .book-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Final CTA */
    .final-cta {
        padding: 60px 20px;
    }

    .final-cta .section-title {
        font-size: 26px;
    }

    .today-only {
        font-size: 18px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top .footer-map {
        grid-column: auto;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }

    .footer-contact p {
        justify-content: flex-start;
    }

    .footer-map img {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Modal */
    .modal-form-row {
        grid-template-columns: 1fr;
    }

    .modal-header {
        padding: 30px 20px 24px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .modal-body {
        padding: 24px 20px 28px;
    }

    /* Float buttons */
    .book-now-float {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* LARGE MOBILE - 600px */
@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-offer {
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
    }

    .why-choose-title {
        font-size: 26px;
    }

    .why-choose-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-step {
        padding: 24px 16px;
    }

    .stats {
        padding: 30px 15px;
    }

    .stats-container {
        gap: 24px;
    }

    .stat-item h2 {
        font-size: 34px;
    }

    .stat-item p {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 30px 20px 24px;
    }

    .cta-banner h2 {
        font-size: 24px;
    }

    .cta-price {
        font-size: 17px !important;
    }

    .services {
        padding: 40px 15px;
    }

    .quality {
        padding: 40px 15px;
    }

    .testimonials {
        padding: 40px 15px;
    }

    .journey {
        padding: 40px 15px;
    }

    .before-after {
        padding: 40px 15px;
    }

    .faq {
        padding: 40px 15px;
    }

    .book-now-float i {
        display: none;
    }

    .book-now-float {
        padding: 12px 20px;
        border-radius: 50px;
    }

    .book-now-float span {
        display: inline;
    }
}

/* MOBILE - 480px */
@media screen and (max-width: 480px) {
    .hero {
        padding: 110px 15px 40px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-sub {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .hero-offer {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hero-photo {
        border-radius: 12px;
    }

    .circle-top {
        width: 120px;
        height: 120px;
    }

    .circle-bottom {
        width: 140px;
        height: 140px;
    }

    .hero-form-group input,
    .hero-form-group select,
    .hero-form-group textarea {
        padding: 14px 14px;
        font-size: 14px;
    }

    .hero-form-btn {
        font-size: 15px;
        padding: 14px;
    }

    /* Stats */
    .stats-container {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .stat-item h2 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 12px;
    }

    /* Sections */
    .section-title {
        font-size: 22px;
    }

    .section-desc {
        font-size: 14px;
    }

    .section-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    /* Services */
    .service-card {
        padding: 20px 16px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    /* CTA */
    .cta-banner {
        padding: 30px 15px;
    }

    .cta-banner h2 {
        font-size: 22px;
    }

    .cta-price {
        font-size: 16px !important;
    }

    /* Why Choose */
    .why-choose-section {
        padding: 40px 15px;
    }

    .why-choose-title {
        font-size: 24px;
    }

    .why-choose-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .why-card-img {
        height: 260px;
    }

    .why-card-body {
        padding: 20px 16px 24px;
    }

    .why-card-body h4 {
        font-size: 16px;
    }

    .why-card-body p {
        font-size: 13px;
    }

    /* Journey */
    .journey-step h4 {
        font-size: 15px;
    }

    .journey-icon {
        width: 60px;
        height: 60px;
    }

    .journey-icon i {
        font-size: 34px;
    }

    /* FAQ */
    .faq-question {
        font-size: 14px;
        padding: 14px 18px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .faq-image {
        max-width: 250px;
    }

    /* Booking Form */
    .book-wrapper {
        padding: 30px 16px;
        border-width: 1px;
    }

    .book-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .book-form .form-group input,
    .book-form .form-group select,
    .book-form .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .book-form .form-group label {
        font-size: 14px;
    }

    .book-submit-btn {
        font-size: 16px;
        padding: 14px;
    }

    /* Final CTA */
    .final-cta {
        padding: 50px 15px;
    }

    .final-cta .section-title {
        font-size: 22px;
    }

    .final-cta .section-desc {
        font-size: 14px;
    }

    .today-only {
        font-size: 16px;
    }

    /* Buttons */
    .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
        white-space: normal;
    }

    .btn-lg {
        padding: 14px 20px;
        font-size: 14px;
    }

    .btn-call {
        font-size: 16px;
        padding: 12px 28px;
    }

    /* Footer */
    .footer {
        padding: 40px 15px 20px;
    }

    .footer-contact h3 {
        font-size: 16px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    /* Float buttons */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        left: 16px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }

    .book-now-float {
        bottom: 16px;
        right: 16px;
    }

    .book-now-float i {
        font-size: 16px;
    }

    /* Modal */
    .modal-overlay {
        padding: 10px;
    }

    .modal-box {
        max-width: 100%;
        border-radius: 12px;
    }

    .modal-header {
        padding: 24px 16px 20px;
        border-radius: 12px 12px 0 0;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-header p {
        font-size: 13px;
    }

    .modal-body {
        padding: 20px 16px 24px;
    }

    .modal-form-group input,
    .modal-form-group select,
    .modal-form-group textarea {
        padding: 14px;
        font-size: 14px;
    }

    .modal-submit-btn {
        font-size: 16px;
        padding: 16px;
    }

    /* Before/After */
    .ba-labels {
        padding: 0 5px 8px;
    }

    .ba-before,
    .ba-after {
        font-size: 13px;
    }

    /* Testimonials */
    .quote-icon {
        font-size: 48px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-card h4 {
        font-size: 14px;
    }
}

/* SMALL MOBILE - 360px */
@media screen and (max-width: 360px) {
    .hero {
        padding: 105px 12px 30px;
    }

    .hero h1 {
        font-size: 21px;
    }

    .hero-sub {
        font-size: 12px;
    }

    .hero-offer {
        font-size: 11px;
    }

    .hero-form-group input,
    .hero-form-group select,
    .hero-form-group textarea {
        padding: 12px;
        font-size: 13px;
    }

    .hero-form-btn {
        font-size: 14px;
        padding: 13px;
    }

    .nav-logo img {
        height: 35px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-desc {
        font-size: 13px;
    }

    .section-label {
        font-size: 11px;
    }

    .stats {
        padding: 24px 10px;
    }

    .stats-container {
        gap: 10px;
    }

    .stat-item h2 {
        font-size: 26px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .cta-banner h2 {
        font-size: 20px;
    }

    .cta-price {
        font-size: 15px !important;
    }

    .why-choose-title {
        font-size: 22px;
    }

    .why-choose-desc {
        font-size: 13px;
    }

    .why-card-img {
        height: 240px;
    }

    .why-card-body h4 {
        font-size: 15px;
    }

    .why-card-body p {
        font-size: 12px;
    }

    .journey-step {
        padding: 20px 12px;
    }

    .journey-step h4 {
        font-size: 14px;
    }

    .journey-step p {
        font-size: 12px;
    }

    .journey-icon {
        width: 50px;
        height: 50px;
    }

    .journey-icon i {
        font-size: 28px;
    }

    .faq-question {
        font-size: 13px;
        padding: 12px 14px;
    }

    .faq-answer p {
        font-size: 12px;
    }

    .faq-image {
        max-width: 200px;
    }

    .book-section {
        padding: 20px 10px;
    }

    .book-wrapper {
        padding: 24px 14px;
    }

    .book-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .book-form .form-group input,
    .book-form .form-group select,
    .book-form .form-group textarea {
        padding: 11px 12px;
        font-size: 13px;
    }

    .book-form .form-group label {
        font-size: 13px;
    }

    .book-submit-btn {
        font-size: 15px;
        padding: 13px;
    }

    .final-cta {
        padding: 40px 12px;
    }

    .final-cta .section-title {
        font-size: 20px;
    }

    .final-cta .section-desc {
        font-size: 13px;
    }

    .today-only {
        font-size: 15px;
    }

    .btn-primary {
        padding: 11px 16px;
        font-size: 13px;
        white-space: normal;
    }

    .btn-lg {
        padding: 13px 16px;
        font-size: 13px;
    }

    .service-card {
        padding: 16px 14px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card .service-sub {
        font-size: 12px;
    }

    .service-card ul li {
        font-size: 12px;
    }

    .service-card .btn-outline {
        font-size: 12px;
        padding: 7px 16px;
    }

    .testimonial-card {
        padding: 24px 16px 20px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .footer {
        padding: 30px 12px 16px;
    }

    .footer-contact h3 {
        font-size: 15px;
    }

    .footer-contact p {
        font-size: 12px;
    }

    .footer-brand p {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
        bottom: 14px;
        left: 14px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }

    .book-now-float {
        bottom: 14px;
        right: 14px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .book-now-float i {
        font-size: 15px;
    }

    .modal-overlay {
        padding: 6px;
    }

    .modal-box {
        border-radius: 10px;
    }

    .modal-header {
        padding: 20px 14px 16px;
        border-radius: 10px 10px 0 0;
    }

    .modal-header h2 {
        font-size: 18px;
    }

    .modal-header p {
        font-size: 12px;
    }

    .modal-body {
        padding: 16px 12px 20px;
    }

    .modal-form-group input,
    .modal-form-group select,
    .modal-form-group textarea {
        padding: 12px;
        font-size: 13px;
    }

    .modal-submit-btn {
        font-size: 15px;
        padding: 14px;
    }

    .modal-close {
        font-size: 22px;
    }
}

/* EXTRA SMALL - 320px */
@media screen and (max-width: 320px) {
    .hero h1 {
        font-size: 19px;
    }

    .hero-sub {
        font-size: 11px;
    }

    .nav-logo img {
        height: 30px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-desc {
        font-size: 12px;
    }

    .why-choose-title {
        font-size: 20px;
    }

    .stats-container {
        gap: 8px;
    }

    .stat-item h2 {
        font-size: 24px;
    }

    .stat-item p {
        font-size: 10px;
    }

    .cta-banner h2 {
        font-size: 18px;
    }

    .book-title {
        font-size: 20px;
    }

    .final-cta .section-title {
        font-size: 18px;
    }

    .btn-primary {
        padding: 10px 14px;
        font-size: 12px;
    }

    .btn-lg {
        padding: 12px 14px;
        font-size: 12px;
    }

    .hero-form-group input,
    .hero-form-group select,
    .hero-form-group textarea {
        padding: 11px;
        font-size: 12px;
    }

    .hero-form-btn {
        font-size: 13px;
        padding: 12px;
    }

    .modal-header h2 {
        font-size: 16px;
    }

    .modal-header p {
        font-size: 11px;
    }
}

/* ===== CERTIFICATE BOTTOM TEXT ===== */
.cert-bottom-text {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
    max-width: 900px;
    margin: 40px auto 0;
    text-align: justify;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    background: #fff;
    border-left: 4px solid #ff9500;
    padding: 24px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .cert-bottom-text {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 30px;
        padding: 20px 22px;
    }
}

@media (max-width: 480px) {
    .cert-bottom-text {
        font-size: 13px;
        line-height: 1.7;
        margin-top: 24px;
        padding: 16px 18px;
    }
}
