/* ============================================
   BANNER / HERO SECTION - UPDATED
   ============================================ */

/* ---------- HERO WRAPPER ---------- */
.custom-hero-wrapper {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ---------- BACKGROUND IMAGE ---------- */
.custom-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease;
}

.custom-hero-wrapper:hover .custom-hero-bg {
    transform: scale(1.05);
}

/* ---------- NO OVERLAY ---------- */
/* .custom-hero-overlay REMOVED */

/* ---------- HERO CONTENT ---------- */
.custom-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
}

.custom-hero-inner {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.custom-hero-text {
    flex: 1;
    max-width: 650px;
    animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-hero-image {
    flex: 1;
}

/* ---------- TAGLINE ---------- */
.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 174, 239, 0.12);
    padding: 8px 20px 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    animation: heroFadeIn 1.2s ease 0.2s both;
}

.hero-tagline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00aeef;
    border-radius: 50%;
    color: #000000;
    font-size: 11px;
    animation: taglinePulse 2s ease-in-out infinite;
}

@keyframes taglinePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(0, 174, 239, 0.3); }
}

/* ---------- HEADING ---------- */
.hero-heading {
    font-size: 62px;
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin: 0 0 20px 0;
    animation: heroFadeIn 1.2s ease 0.4s both;
}

.hero-heading .hero-rotating-text {
    color: #00aeef;
    position: relative;
    display: inline-block;
}

.hero-rotating-text::after {
    content: '|';
    color: #00aeef;
    animation: cursorBlink 0.8s step-end infinite;
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ---------- DESCRIPTION ---------- */
.hero-description {
    font-size: 18px;
    color: #000000;
    line-height: 1.8;
    max-width: 520px;
    margin: 0 0 35px 0;
    animation: heroFadeIn 1.2s ease 0.6s both;
}

/* ---------- CTA BUTTON ---------- */
.hero-cta {
    animation: heroFadeIn 1.2s ease 0.8s both;
}

.hero-button {
    padding: 1rem 2.5rem !important;
    font-size: 14px !important;
    background-color: #00aeef !important;
    border-color: #00aeef !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 531.28 200'%3E%3Cdefs%3E%3Cstyle%3E .shape %7B fill: %2300aeef %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpolygon class='shape' points='415.81 200 0 200 115.47 0 531.28 0 415.81 200' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A") !important;
    background-color: #0E1822 !important;
}

.hero-button i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-button:hover i {
    transform: translateX(8px) scale(1.1);
}

/* ---------- SCROLL INDICATOR ---------- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: heroFadeIn 1.2s ease 1s both;
}

.scroll-text {
    color: #000000;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, #00aeef, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); opacity: 0; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); opacity: 0; }
}
/* ============================================
   ABOUT US SECTION
   ============================================ */

.custom-about-wrapper {
    padding: 60px 0;
    background: #ffffff;
}

.custom-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* ---- LEFT: IMAGE ---- */
.custom-about-image {
    display: flex;
    align-items: stretch;
}

.about-image-wrap {
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    min-height: 500px;
    overflow: hidden;
    transition: transform 0.6s ease;
}

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

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,174,239,0.05), rgba(0,0,0,0.1));
    border-radius: 16px;
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    padding: 18px 25px;
    border-radius: 12px;
    border: 1px solid rgba(0,174,239,0.2);
    z-index: 2;
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #00aeef;
    border-radius: 50%;
    color: #000;
    font-size: 18px;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.badge-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---- RIGHT: CONTENT ---- */
.custom-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,174,239,0.12);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0,174,239,0.2);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 20px;
}

.about-tag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00aeef;
    border-radius: 50%;
    color: #000;
    font-size: 11px;
}

.about-heading {
    font-size: 44px;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    margin: 0 0 20px;
}

.about-highlight {
    color: #00aeef;
}

.about-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 25px;
}

.about-experience {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    background: rgba(0,174,239,0.05);
    padding: 18px 22px;
    border-radius: 12px;
    border-left: 4px solid #00aeef;
    margin-bottom: 25px;
}

.experience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #00aeef;
    border-radius: 50%;
    color: #000;
    font-size: 18px;
    flex-shrink: 0;
}

.experience-number {
    font-size: 24px;
    font-weight: 800;
    color: #00aeef;
}

.experience-label {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}

.experience-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 180px;
}

.about-commitments {
    margin-bottom: 30px;
}

.commitment-item {
    display: flex;
    gap: 16px;
    padding: 18px 22px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    background: #fff;
    border-color: rgba(0,174,239,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateX(5px);
}

.commitment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0,174,239,0.1);
    border-radius: 10px;
    color: #00aeef;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.commitment-item:hover .commitment-icon {
    background: #00aeef;
    color: #000;
    transform: rotate(-10deg) scale(1.1);
}

.commitment-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px;
}

.commitment-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ---- CTA BUTTON - MATCHES BANNER EXACTLY ---- */
.about-cta {
    margin-top: 5px;
}

/* ============================================
   SERVICES SECTION - PREMIUM DESIGN
   ============================================ */

/* ---------- SERVICES WRAPPER ---------- */
.custom-services-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Faded background pattern */
.custom-services-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 174, 239, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 174, 239, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 174, 239, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.custom-services-inner {
    position: relative;
    z-index: 1;
}

/* ---------- SECTION HEADER ---------- */
.custom-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.custom-services-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 174, 239, 0.12);
    padding: 8px 20px 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00aeef;
    border-radius: 50%;
    color: #000000;
    font-size: 11px;
}

.services-heading {
    font-size: 44px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.services-highlight {
    color: #00aeef;
    position: relative;
}

.services-sub {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    display: block;
    margin-top: 5px;
}

/* ---------- SERVICES GRID ---------- */
.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ---------- SERVICE CARD ---------- */
.service-card {
    perspective: 1000px;
}

.service-card-inner {
    background: #ffffff;
    padding: 35px 25px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Card hover effect */
.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00aeef, #0088cc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-inner::before {
    transform: scaleX(1);
}

.service-card:hover .service-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.1);
    border-color: rgba(0, 174, 239, 0.15);
}

/* ---------- SERVICE ICON ---------- */
.service-icon-wrapper {
    margin-bottom: 20px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 14px;
    color: #00aeef;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    background: #00aeef;
    color: #000000;
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.3);
}

/* ---------- SERVICE TITLE ---------- */
.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

/* ---------- SERVICE DESCRIPTION ---------- */
.service-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex: 1;
}

/* ---------- SERVICE READ MORE LINK ---------- */
.service-link {
    margin-top: auto;
}

.service-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00aeef;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-readmore i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.service-readmore:hover {
    color: #000000;
}

.service-readmore:hover i {
    transform: translateX(6px);
}
/* ============================================
   WHY CHOOSE US SECTION - IMAGE LEFT | CONTENT RIGHT
   ============================================ */

.custom-why-wrapper {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.custom-why-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 40%, rgba(0, 174, 239, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 60%, rgba(0, 174, 239, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.custom-why-inner {
    position: relative;
    z-index: 1;
}

/* ---------- GRID ---------- */
.custom-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    
}

/* ---------- LEFT: IMAGE ---------- */
.custom-why-image {
    display: flex;
    align-items: stretch;
}

.why-image-wrap {
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    min-height: 500px;
    overflow: hidden;
    transition: transform 0.6s ease;
}

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

.why-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,174,239,0.05), rgba(0,0,0,0.1));
    border-radius: 16px;
}

.why-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    padding: 18px 25px;
    border-radius: 12px;
    border: 1px solid rgba(0,174,239,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.2); }
    50% { box-shadow: 0 0 30px rgba(0, 174, 239, 0.1); }
}

.badge-number {
    font-size: 28px;
    font-weight: 800;
    color: #00aeef;
    line-height: 1;
}

.badge-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ---------- RIGHT: CONTENT ---------- */
.custom-why-content {
    display: flex;
    flex-direction: column;
}

/* ---------- TAG (ABOVE HEADING) ---------- */
.custom-why-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 174, 239, 0.12);
    padding: 8px 20px 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    width: fit-content;
}

.why-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00aeef;
    border-radius: 50%;
    color: #000000;
    font-size: 11px;
}

/* ---------- HEADING (NO UNDERLINE ON BLUE TEXT) ---------- */
.why-heading {
    font-size: 44px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.why-highlight {
    color: #00aeef;
}

/* ---------- DESCRIPTION ---------- */
.why-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 30px 0;
}

/* ---------- FEATURES ---------- */
.why-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.why-feature:hover {
    background: #ffffff;
    border-color: rgba(0,174,239,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateX(8px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0,174,239,0.1);
    border-radius: 10px;
    color: #00aeef;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-feature:hover .feature-icon {
    background: #00aeef;
    color: #000000;
    transform: rotate(-10deg) scale(1.1);
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 4px 0;
}

.feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ---------- CTA ---------- */
.why-cta .hero-button {
    padding: 1rem 2.5rem !important;
    font-size: 14px !important;
}

.why-cta .hero-button i {
    transition: transform 0.4s ease;
}

.why-cta .hero-button:hover i {
    transform: translateX(8px) scale(1.1);
}
/* ============================================
   HOW IT WORKS SECTION - DOTTED LINE & BADGES
   ============================================ */

.custom-how-wrapper {
    padding: 60px 0;
    background: #00aeef17;
    position: relative;
    overflow: hidden;
}

/* Faded background pattern */
.custom-how-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 174, 239, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 174, 239, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.custom-how-inner {
    position: relative;
    z-index: 1;
}

/* ---------- SECTION HEADER ---------- */
.custom-how-header {
    text-align: center;
    margin-bottom: 60px;
}

.custom-how-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 174, 239, 0.12);
    padding: 8px 20px 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.how-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00aeef;
    border-radius: 50%;
    color: #000000;
    font-size: 11px;
}

.how-heading {
    font-size: 44px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.how-highlight {
    color: #00aeef;
}

.how-description {
    font-size: 18px;
    color: #555;
    margin: 0;
}

/* ============================================
   STEPS WITH DOTTED LINE
   ============================================ */
.custom-how-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 20px 0 40px;
}

/* Dotted Line Behind Steps */
.custom-how-steps::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: transparent;
    border-top: 3px dotted rgba(0, 174, 239, 0.25);
    z-index: 0;
}

/* ---------- STEP WRAPPER ---------- */
.how-step-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

/* ---------- STEP ---------- */
.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 340px;
    width: 100%;
}

/* ---------- NUMBER BADGE ---------- */
.how-step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #00aeef;
    color: #000000;
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 174, 239, 0.25);
}

/* Outer ring on badge */
.how-step-badge::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 174, 239, 0.2);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.how-step:hover .how-step-badge {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(0, 174, 239, 0.35);
}

.how-step:hover .how-step-badge::before {
    border-color: rgba(0, 174, 239, 0.4);
}

/* ---------- STEP CONTENT ---------- */
.how-step-content {
    background: #f8f9fa;
    padding: 30px 20px 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
}

.how-step:hover .how-step-content {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.15);
}

/* Top accent bar */
.how-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #00aeef, #0088cc);
    border-radius: 0 0 4px 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-step:hover .how-step-content::before {
    width: 60%;
}

/* ---------- STEP ICON ---------- */
.how-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 12px;
    color: #00aeef;
    font-size: 24px;
    margin: 0 auto 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-step:hover .how-step-icon {
    background: #00aeef;
    color: #000000;
    transform: rotate(-8deg) scale(1.05);
}

/* ---------- STEP TITLE ---------- */
.how-step-title {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

/* ---------- STEP DESCRIPTION ---------- */
.how-step-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ---------- CTA WRAPPER ---------- */
.how-cta-wrapper {
    text-align: center;
    margin-top: 20px;
}

.how-cta-wrapper .button-borders {
    margin: 0 auto;
}
/* ============================================
   PACKAGES SECTION - ELEGANT DESIGN
   ============================================ */

.custom-packages-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.custom-packages-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 174, 239, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 174, 239, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.custom-packages-inner {
    position: relative;
    z-index: 1;
}

/* ---------- SECTION HEADER ---------- */
.custom-packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.custom-packages-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 174, 239, 0.12);
    padding: 8px 20px 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.packages-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00aeef;
    border-radius: 50%;
    color: #000000;
    font-size: 11px;
}

.packages-heading {
    font-size: 44px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.packages-highlight {
    color: #00aeef;
}

.packages-description {
    font-size: 18px;
    color: #555;
    margin: 0;
}

/* ---------- PACKAGES GRID ---------- */
.custom-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    
    margin: 0 auto;
}

/* ---------- PACKAGE CARD ---------- */
.package-card {
    perspective: 1000px;
}

.package-card-inner {
    background: #ffffff;
    padding: 35px 25px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
}

.package-card:hover .package-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.15);
}

/* ---------- FEATURED CARD ---------- */
.package-card-featured .package-card-inner {
    border-color: #00aeef;
    box-shadow: 0 8px 40px rgba(0, 174, 239, 0.1);
    position: relative;
}

.package-card-featured .package-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00aeef, #0088cc);
    border-radius: 16px 16px 0 0;
}

/* ---------- BADGE ---------- */
.package-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    color: #666;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    align-self: center;
}

.package-badge-featured {
    background: #00aeef;
    color: #000000;
}

/* ---------- ICON ---------- */
.package-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 50%;
    color: #00aeef;
    font-size: 22px;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}

.package-card:hover .package-icon {
    background: #00aeef;
    color: #000000;
    transform: rotate(-8deg) scale(1.05);
}

.package-icon-featured {
    background: #00aeef;
    color: #000000;
}

/* ---------- TITLE ---------- */
.package-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
}

/* ---------- PRICE ---------- */
.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: #00aeef;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-left: 4px;
}

.package-price-featured .price-currency,
.package-price-featured .price-amount {
    color: #00aeef;
}

/* ---------- FEATURES ---------- */
.package-features {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    justify-content: center;
}

.package-features li i {
    color: #00aeef;
    font-size: 16px;
    flex-shrink: 0;
}

/* ---------- NOTE ---------- */
.package-note {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    margin: 0 0 20px 0;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
}

/* ---------- CTA ---------- */
.package-cta {
    margin-top: auto;
}

.package-btn {
    width: 100%;
    justify-content: center !important;
    padding: 0.8rem 1.5rem !important;
    font-size: 13px !important;
}
/* ============================================
   CTA SECTION - SPEEDOMETER BACKGROUND
   ============================================ */

.custom-cta-wrapper {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

/* ---------- BACKGROUND IMAGE ---------- */
.custom-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1);
    transition: transform 10s ease;
}

.custom-cta-wrapper:hover .custom-cta-bg {
    transform: scale(1.05);
}

/* ---------- OVERLAY ---------- */
.custom-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

/* ---------- CONTENT ---------- */
.custom-cta-inner {
    position: relative;
    z-index: 2;
}

.custom-cta-content {
    max-width: 600px;
}

/* ---------- HEADING ---------- */
.cta-heading {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 12px 0;
}

.cta-highlight {
    color: #00aeef;
    position: relative;
}

/* Subtle glow on highlight */
.cta-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 174, 239, 0.3);
    border-radius: 2px;
}

/* ---------- DESCRIPTION ---------- */
.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 35px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ---------- CTA BUTTON ---------- */
.cta-button-wrapper .hero-button {
    padding: 1rem 2.8rem !important;
    font-size: 15px !important;
}

.cta-button-wrapper .hero-button i {
    transition: transform 0.4s ease;
}

.cta-button-wrapper .hero-button:hover i {
    transform: translateX(8px) scale(1.1);
}
/* ============================================
   TESTIMONIALS SECTION - SWIPER SLIDER
   ============================================ */

.custom-testimonials-wrapper {
    padding: 60px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.custom-testimonials-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 174, 239, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 174, 239, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.custom-testimonials-inner {
    position: relative;
    z-index: 1;
}

/* ---------- SECTION HEADER ---------- */
.custom-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.custom-testimonials-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 174, 239, 0.12);
    padding: 8px 20px 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.testimonials-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00aeef;
    border-radius: 50%;
    color: #000000;
    font-size: 11px;
}

.testimonials-heading {
    font-size: 44px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.testimonials-highlight {
    color: #00aeef;
}

.testimonials-description {
    font-size: 18px;
    color: #555;
    margin: 0;
}

/* ---------- SLIDER WRAPPER ---------- */
.testimonials-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

/* ---------- TESTIMONIAL CARD ---------- */
.testimonial-card {
    background: #f8f9fa;
    padding: 35px 30px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.15);
    background: #ffffff;
}

/* ---------- QUOTE ICON ---------- */
.testimonial-quote-icon {
    font-size: 32px;
    color: #00aeef;
    opacity: 0.2;
    margin-bottom: 15px;
    line-height: 1;
}

/* ---------- TEXT ---------- */
.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 25px 0;
    flex: 1;
    font-style: italic;
}

/* ---------- AUTHOR ---------- */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #00aeef;
    border-radius: 50%;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.testimonial-role {
    font-size: 13px;
    color: #888;
}

/* ---------- STARS ---------- */
.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #FFB800;
    font-size: 14px;
}

/* ============================================
   SWIPER NAVIGATION - OUTSIDE CARDS
   ============================================ */

/* Navigation Buttons - Positioned outside */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-next {
    right: -10px;
}

.swiper-button-prev {
    left: -10px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #00aeef;
    border-color: #00aeef;
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.25);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: #000000;
    font-weight: 700;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #ffffff;
}

/* ---------- PAGINATION - Outside Cards ---------- */
.swiper-pagination {
    position: relative;
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 174, 239, 0.2);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #00aeef;
    width: 32px;
    border-radius: 5px;
}
/* ============================================
   CONTACT US SECTION - FORM LEFT | IMAGE RIGHT
   ============================================ */

.custom-contact-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.custom-contact-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 174, 239, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 174, 239, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.custom-contact-inner {
    position: relative;
    z-index: 1;
}

/* ---------- SECTION HEADER ---------- */
.custom-contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.custom-contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 174, 239, 0.12);
    padding: 8px 20px 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00aeef;
    border-radius: 50%;
    color: #000000;
    font-size: 11px;
}

.contact-heading {
    font-size: 44px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.contact-highlight {
    color: #00aeef;
}

.contact-description {
    font-size: 18px;
    color: #555;
    margin: 0;
}

/* ---------- GRID ---------- */
.custom-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* ============================================
   LEFT: CONTACT FORM
   ============================================ */
.custom-contact-form {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

/* ---------- FORM GROUP ---------- */
.form-group p {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group br {
    display: none;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
	width:100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00aeef;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

/* ---------- FORM ROW ---------- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ---------- SUBMIT BUTTON ---------- */
.form-submit {
    margin-top: 5px;
}

.contact-submit-btn {
    width: 100%;
    justify-content: center !important;
    padding: 1rem !important;
    font-size: 15px !important;
    background-color: #0E1822 !important;
    border-color: #0E1822 !important;
}

.contact-submit-btn i {
    transition: transform 0.4s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(8px) scale(1.1);
}

/* ============================================
   RIGHT: IMAGE COLUMN
   ============================================ */
.custom-contact-image {
    display: flex;
    align-items: stretch;
}

.contact-image-wrap {
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    min-height: 500px;
    overflow: hidden;
    transition: transform 0.6s ease;
}

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

.contact-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 174, 239, 0.1) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    border-radius: 16px;
}

/* ---------- FLOATING INFO CARD ---------- */
.contact-info-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 22px 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 174, 239, 0.15);
    z-index: 2;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.contact-info-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 174, 239, 0.15);
    border-radius: 50%;
    color: #00aeef;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-info-item div {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}
/* ============================================
   DEPARTMENT OF TRANSPORT - BOXED SECTION
   ============================================ */

.custom-dot-wrapper {
    padding: 0px 0px 60px;
    background: #f8f9fa;
    position: relative;
}

.custom-dot-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 174, 239, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 174, 239, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ---------- BOXED CONTAINER ---------- */
.custom-dot-box {
    position: relative;
    z-index: 1;
    
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s ease;
}

.custom-dot-box:hover {
    box-shadow: 0 20px 60px rgba(0, 174, 239, 0.06);
    border-color: rgba(0, 174, 239, 0.08);
}

/* ---------- ICON ---------- */
.custom-dot-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 50%;
    color: #00aeef;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.custom-dot-box:hover .custom-dot-icon {
    background: #00aeef;
    color: #000000;
    transform: rotate(-8deg) scale(1.05);
}

/* ---------- SECTION TAG ---------- */
.custom-dot-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 174, 239, 0.12);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.dot-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #00aeef;
    border-radius: 50%;
    color: #000000;
    font-size: 9px;
}

/* ---------- HEADING ---------- */
.dot-heading {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 18px 0;
}

.dot-highlight {
    color: #00aeef;
}

/* ---------- DESCRIPTION ---------- */
.dot-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 25px 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- LOCATION INFO ---------- */
.dot-location {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dot-location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.dot-location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 50%;
    color: #00aeef;
    font-size: 13px;
    flex-shrink: 0;
}

/* ---------- CTA ---------- */
.dot-cta .hero-button {
    padding: 0.9rem 2.5rem !important;
    font-size: 14px !important;
}

.dot-cta .hero-button i {
    transition: transform 0.4s ease;
}

.dot-cta .hero-button:hover i {
    transform: translateX(8px) scale(1.1);
}