/* customize.css */

/* --- HERO SECTION --- */
.cust-hero {
    background: linear-gradient(to right, rgba(11, 28, 51, 0.9) 0%, rgba(11, 28, 51, 0.4) 100%), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1920&auto=format&fit=crop') center/cover;
    height: 95vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    padding-bottom: 50px;
    color: #fff;
    position: relative;
}

.cust-hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cust-hero-text {
    max-width: 600px;
}

.cust-script-title {
    font-family: 'Brush Script MT', 'Dancing Script', cursive;
    color: #fcd34d;
    font-size: 32px;
    margin-bottom: 10px;
}

.cust-hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cust-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 450px;
    line-height: 1.6;
}

.cust-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cust-hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
}

.cust-hero-badge svg {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
}

.cust-hero-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    color: var(--text-dark);
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cust-hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.cust-hero-card-header svg {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
}

.cust-hero-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.cust-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.cust-form-group {
    margin-bottom: 15px;
}

.cust-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.cust-form-group input,
.cust-form-group select,
.cust-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-dark);
    background: #fff;
    transition: all 0.3s;
}

.cust-form-group input:focus,
.cust-form-group select:focus,
.cust-form-group textarea:focus {
    border-color: var(--accent-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(114, 194, 77, 0.1);
}

.cust-form-group .select-wrapper {
    position: relative;
}

.cust-form-group .select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.cust-form-group .select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

.cust-free-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

.cust-free-note svg {
    width: 14px;
    height: 14px;
    color: var(--accent-green);
}


/* --- HOW IT WORKS (NEW LAYOUT) --- */
.cust-hiw {
    padding: 80px 0 60px;
    background: #fff;
    overflow: hidden;
}

.cust-hiw-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 15px;
}

.cust-hiw-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.cust-hiw-line {
    height: 1px;
    width: 60px;
    background: var(--accent-green);
}

.cust-hiw-plane {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
    transform: rotate(90deg);
    /* Adjust based on icon orientation */
}

.cust-hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cust-hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    text-align: left;
}

/* Dotted line connecting steps */
.cust-hiw-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 14px;
    /* Center with the big green number */
    left: 100px;
    /* Start after the number */
    right: -25px;
    /* End before the next icon */
    border-top: 2px dotted #cbd5e1;
    z-index: 1;
}

.cust-hiw-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #f1f5f9;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    z-index: 2;
    position: relative;
}

.cust-hiw-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-green);
}

.cust-hiw-content {
    padding-top: 0;
    z-index: 2;
    position: relative;
}

.cust-hiw-step-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-green);
    margin-bottom: 2px;
    line-height: 1;
}

.cust-hiw-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.cust-hiw-content p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* --- BUILD YOUR OWN FORM --- */
.cust-builder {
    padding: 60px 0 20px;
    background: #f8fafc;
}

.cust-builder .container {
    max-width: 1250px;
    width: 95%;
}

.cust-builder-wrapper {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px;
}

.cust-builder-header {
    text-align: center;
    margin-bottom: 50px;
}

.cust-builder-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.cust-builder-header p {
    color: var(--text-muted);
    font-size: 15px;
}

.cust-builder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cust-builder-col {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    align-self: stretch;
}

.cust-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e2e8f0;
}

.cust-col-header svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
}

.cust-col-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}


/* Form specific elements */
.cust-radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.cust-form-group .cust-radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    margin-bottom: 0;
}

.cust-radio-label input {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    box-sizing: border-box;
    border: 1.5px solid #cbd5e1;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    transition: all 0.2s;
    background-color: #fff;
    display: inline-block;
}

.cust-radio-label input:checked {
    border-color: var(--accent-green);
    background-color: #fff;
    background-image: radial-gradient(circle at center, var(--accent-green) 45%, transparent 45%);
}


.cust-dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.cust-dest-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.cust-dest-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.cust-dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

.cust-dest-card-overlay span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.cust-dest-card input[type="checkbox"] {
    position: absolute;
    top: 8px;
    right: 8px;
    appearance: none;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    cursor: pointer;
    z-index: 2;
}

.cust-dest-card input[type="checkbox"]:checked {
    background: #fff;
    border: 1px solid var(--accent-green);
}

.cust-dest-card input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-green);
    font-size: 12px;
}


.cust-exp-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.cust-exp-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cust-exp-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.cust-exp-item-left svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.cust-checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    position: relative;
    outline: none;
    cursor: pointer;
}

.cust-checkbox:checked {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.cust-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}


.cust-add-link {
    color: var(--accent-green);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}


.cust-alert-box {
    background: #f0fdf4;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.cust-alert-box svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.cust-alert-box p {
    font-size: 12px;
    color: #166534;
    margin: 0;
    line-height: 1.5;
}


/* --- SUMMARY SECTION --- */
.cust-summary-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: stretch;
}

.cust-why {
    background: #f7fdf7;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cust-why-left {
    flex: 1;
}

.cust-why h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 25px;
}

.cust-why-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cust-why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.cust-why-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.cust-why-img {
    width: 150px;
    height: auto;
    margin-left: 20px;
}


.cust-summary-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 15px;
    gap: 15px;
    display: flex;
}

.cust-summary-details {
    padding: 10px;
    flex: 1;
}

.cust-summary-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.cust-summary-details h3 span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.cust-sum-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px 20px;
    margin-bottom: 5px;
}

.cust-sum-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.cust-sum-item svg {
    width: 16px;
    height: 16px;
}

.cust-sum-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

font-weight: 700;
color: var(--primary);
}

.cust-est-val span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-align: left;
    margin-top: 2px;
}

.cust-cta-box {
    background: #0b1c33;
    padding: 25px;
    border-radius: 12px;
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.cust-expert {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.cust-expert img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.cust-expert h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.cust-cta-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cust-trust {
    padding: 0 0 80px 0;
    background: #f8fafc;
    position: relative;
    border-top: none;
}

.cust-trust .container {
    max-width: 1250px;
    width: 95%;
}

.cust-trust-wrapper {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.cust-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.cust-trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 35px;
}

.cust-trust-item:not(:last-child) {
    border-right: 1px dashed #e2e8f0;
}

.cust-trust-icon {
    width: 64px;
    height: 64px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    flex-shrink: 0;
}

.cust-trust-icon svg {
    width: 28px;
    height: 28px;
}

.cust-trust-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.cust-trust-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .cust-builder-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cust-summary-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .cust-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cust-hero-badges {
        justify-content: center;
    }

    .cust-hiw-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .cust-hiw-grid::before {
        display: none;
    }

    .cust-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cust-hiw-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 15px !important;
    }

    .cust-hiw-step {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
    }

    .cust-hiw-step::after {
        display: none !important;
    }

    .cust-hiw-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 5px !important;
    }

    .cust-hiw-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .cust-hiw-step-num {
        font-size: 20px !important;
        margin-bottom: 4px !important;
    }

    .cust-hiw-content h4 {
        font-size: 13px !important;
        margin-bottom: 4px !important;
    }

    .cust-hiw-content p {
        font-size: 10.5px !important;
        line-height: 1.35 !important;
    }

    .cust-builder-grid {
        grid-template-columns: 1fr;
        gap: 15px !important;
    }

    .cust-hero {
        padding: 80px 0 80px !important;
    }

    .cust-hiw {
        padding: 35px 0 !important;
    }

    .cust-builder {
        padding: 30px 0 10px !important;
    }

    .cust-builder-wrapper {
        padding: 20px 15px !important;
    }

    .cust-builder-header {
        margin-bottom: 25px !important;
    }

    .cust-builder-header h2 {
        font-size: 22px !important;
    }

    .cust-builder-header p {
        font-size: 11px !important;
    }

    .cust-builder-col {
        padding: 15px !important;
    }

    .cust-col-header {
        margin-bottom: 15px !important;
        padding-bottom: 8px !important;
    }

    .cust-col-header h3 {
        font-size: 14px !important;
    }

    .cust-form-group {
        margin-bottom: 10px !important;
        margin-top: 0 !important;
    }

    .cust-form-group label {
        margin-bottom: 4px !important;
    }

    .cust-form-group input,
    .cust-form-group select,
    .cust-form-group textarea {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }

    .cust-builder-col p[style*="margin-bottom: 15px"] {
        margin-bottom: 8px !important;
    }

    .cust-alert-box {
        padding: 12px !important;
        margin-top: 15px !important;
    }

    .cust-alert-box p {
        font-size: 11px !important;
    }

    .cust-summary-card {
        flex-direction: column;
    }

    .cust-cta-box {
        width: 100%;
    }

    .cust-why {
        flex-direction: column;
        text-align: center;
    }

    .cust-why-img {
        margin: 30px 0 0 0;
    }

    .cust-trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 15px !important;
        padding: 0 15px !important;
    }

    .cust-trust-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 10px 0 !important;
        gap: 8px !important;
        border-right: none !important;
    }

    .cust-trust-icon {
        width: 48px !important;
        height: 48px !important;
        margin-top: 0 !important;
    }

    .cust-trust-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .cust-trust-text h4 {
        font-size: 0.9rem !important;
        margin-bottom: 2px !important;
        line-height: 1.25 !important;
    }

    .cust-trust-text p {
        font-size: 0.75rem !important;
        line-height: 1.35 !important;
    }

    .cust-hero {
        background: linear-gradient(to bottom, rgba(11, 28, 51, 0.5) 0%, rgba(11, 28, 51, 0.95) 100%), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1920&auto=format&fit=crop') 60% center/cover !important;
        height: auto;
        min-height: 0;
        padding: 100px 0 90px 0 !important;
        text-align: center;
    }

    .cust-script-title {
        font-size: 26px !important;
        margin-bottom: 5px !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }

    .cust-hero-title {
        font-size: 34px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    }

    .cust-hero-subtitle {
        font-size: 15px !important;
        margin-bottom: 25px !important;
        padding: 0 10px !important;
        text-shadow: 0 1px 5px rgba(0,0,0,0.6);
    }

    .cust-hero-badges {
        gap: 12px !important;
        margin-bottom: 10px !important;
    }

    .cust-hero-badge {
        font-size: 11px !important;
    }

    .cust-hero-badge svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* --- PREMIUM ENHANCEMENTS --- */
/* Hero Card Glassmorphism */
.cust-hero-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.cust-hero-card-header h3 {
    color: #fff !important;
}

.cust-hero-card .cust-form-group label {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Glassmorphism inputs */
.cust-hero-card .cust-form-group input,
.cust-hero-card .cust-form-group select {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

.cust-hero-card .cust-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.cust-hero-card .select-icon {
    color: rgba(255, 255, 255, 0.7) !important;
}

.cust-hero-card .cust-form-group input:focus,
.cust-hero-card .cust-form-group select:focus {
    border-color: var(--accent-green) !important;
    box-shadow: 0 0 15px rgba(114, 194, 77, 0.4) !important;
}

.cust-hero-card .cust-free-note {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Button enhancements */
.cust-hero-card .btn-green {
    background: linear-gradient(135deg, var(--accent-green) 0%, #5cb036 100%) !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(114, 194, 77, 0.4) !important;
    position: relative;
    overflow: hidden;
}

.cust-hero-card .btn-green::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg) scale(0);
    transition: transform 0.5s;
}

.cust-hero-card .btn-green:hover::after {
    transform: rotate(45deg) scale(1);
}

/* How It Works Micro-animations */
.cust-hiw-step {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cust-hiw-step:hover {
    transform: translateY(-15px);
}

.cust-hiw-icon {
    transition: all 0.4s ease;
}

.cust-hiw-step:hover .cust-hiw-icon {
    background: var(--accent-green) !important;
    color: #fff !important;
    box-shadow: 0 15px 30px rgba(114, 194, 77, 0.3);
    transform: scale(1.1);
}

.cust-hiw-step:hover .cust-hiw-icon svg {
    color: #fff !important;
}

.cust-hiw-step:hover .cust-hiw-step-num {
    color: var(--primary) !important;
}

/* Builder Form Enhancements */
.cust-builder-col {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.cust-builder-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(114, 194, 77, 0.3);
}

/* Destinations Grid Hover */
.cust-dest-card {
    transition: all 0.3s;
}

.cust-dest-card img {
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cust-dest-card:hover img {
    transform: scale(1.1);
}

.cust-dest-card-overlay {
    transition: background 0.3s;
}

.cust-dest-card:hover .cust-dest-card-overlay {
    background: linear-gradient(to top, rgba(114, 194, 77, 0.9), transparent);
}

/* Experiences list hover */
.cust-exp-item {
    transition: background 0.3s, transform 0.3s;
    padding: 8px 12px;
    border-radius: 8px;
    margin: -8px -12px;
}

.cust-exp-item:hover {
    background: #f1f8e9;
    transform: translateX(5px);
}

/* Trust section hover */
.cust-trust-item {
    transition: all 0.3s;
}

.cust-trust-item:hover .cust-trust-icon {
    background: var(--accent-green) !important;
    color: #fff !important;
    transform: rotateY(180deg);
    transition: transform 0.6s, background 0.3s, color 0.3s;
}