/* ==========================================================================
   TruePath Abroad Custom Homepage Stylesheet
   ========================================================================== */

/* Theme Variables */
:root {
    --tp-navy: #002147;
    --tp-navy-light: #0a3663;
    --tp-gold: #d5a73e;
    --tp-gold-hover: #bda030;
    --tp-dark: #0f172a;
    --tp-slate-700: #334155;
    --tp-slate-600: #475569;
    --tp-slate-500: #64748b;
    --tp-slate-100: #f1f5f9;
    --tp-slate-50: #f8fafc;
    --tp-white: #ffffff;
    --tp-whatsapp: #25d366;
    --tp-whatsapp-hover: #128c7e;
    --tp-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --tp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --tp-shadow-premium: 0 20px 25px -5px rgba(0, 33, 71, 0.04), 0 8px 10px -6px rgba(0, 33, 71, 0.04);
    --tp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tp-font-family: 'Outfit', 'Inter', sans-serif;
}

/* Reset / Core overrides */
.truepath-home-wrapper {
    font-family: var(--tp-font-family);
    color: var(--tp-slate-700);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--tp-white);
}

.truepath-home-wrapper *, 
.truepath-home-wrapper *::before, 
.truepath-home-wrapper *::after {
    box-sizing: border-box;
}

/* Theme resets for integration - removes WoodMart default page container paddings and margins */
body.page-template-truepath-homepage-template .main-page-wrapper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.page-template-truepath-homepage-template .container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

body.page-template-truepath-homepage-template .site-content {
    margin-bottom: 0 !important;
}

body.page-template-truepath-homepage-template article.page {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Container */
.tp-container {
    max-width: var(--pw-container-width, 1200px);
    padding: var(--pw-container-padding, 0 24px);
    margin: 0 auto;
    width: 100%;
}

/* Typo highlights */
.truepath-home-wrapper h1, 
.truepath-home-wrapper h2, 
.truepath-home-wrapper h3, 
.truepath-home-wrapper h4,
.truepath-home-wrapper h5 {
    color: var(--tp-navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.truepath-home-wrapper .highlight {
    color: var(--tp-gold);
    position: relative;
}

/* Button UI */
.tp-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tp-navy);
    color: var(--tp-white) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--tp-transition);
    gap: 8px;
    border: none;
    cursor: pointer;
}

.tp-btn-primary:hover {
    background-color: var(--tp-navy-light);
    transform: translateY(-2px);
}

.tp-btn-primary i {
    transition: transform 0.2s ease;
}

.tp-btn-primary:hover i {
    transform: translateX(4px);
}

.tp-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tp-gold);
    color: var(--tp-navy) !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--tp-transition);
    gap: 8px;
    border: none;
    cursor: pointer;
}

.tp-btn-gold:hover {
    background-color: var(--tp-gold-hover);
    transform: translateY(-2px);
}

.tp-btn-gold i {
    transition: transform 0.2s ease;
}

.tp-btn-gold:hover i {
    transform: translateX(4px);
}

.tp-btn-outline-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--tp-navy) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1.5px solid var(--tp-navy);
    text-decoration: none;
    transition: var(--tp-transition);
    gap: 6px;
    cursor: pointer;
}

.tp-btn-outline-navy:hover {
    background-color: var(--tp-navy);
    color: var(--tp-white) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   1. HERO & ENQUIRY SECTION
   ========================================================================== */
.tp-hero-section {
    position: relative;
    padding: 60px 0 80px;
    background-color: #fcfdfe;
    /* Map Grid Background */
    background-image: radial-gradient(rgba(0, 33, 71, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

/* Abstract Plane graphic overlay on top of section background */
.tp-hero-section::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 45%;
    width: 250px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='rgba(0, 33, 71, 0.04)'%3E%3Cpath d='M80 50L45 20v22L15 42v16l30 0v22z'/%3E%3C/svg%3E") no-repeat center/contain;
    z-index: 1;
    pointer-events: none;
}

.tp-hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.tp-hero-content {
    flex: 1.1;
    max-width: 580px;
}

.tp-hero-title {
    font-size: 50px;
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--tp-navy);
    letter-spacing: -1px;
}

.tp-hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--tp-slate-600);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tp-hero-subtitle i {
    color: var(--tp-gold);
    font-size: 14px;
}

.tp-hero-checks {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.tp-hero-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--tp-navy);
}

.tp-hero-check-item i {
    color: var(--tp-gold);
    font-size: 12px;
}

.tp-hero-destinations-bar {
    margin-bottom: 40px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
}

.tp-hero-destinations-bar span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--tp-slate-500);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.tp-hero-destinations-bar p {
    font-size: 20px;
    font-weight: 800;
    color: var(--tp-navy);
    margin: 0;
    letter-spacing: 0.5px;
}

.tp-hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tp-hero-badge-card {
    background: var(--tp-white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-hero-badge-icon {
    width: 32px;
    height: 32px;
    background: rgba(213, 167, 62, 0.1);
    color: var(--tp-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.tp-hero-badge-card p {
    font-size: 11px;
    margin: 0;
    line-height: 1.3;
    color: var(--tp-slate-600);
}

.tp-hero-badge-card p strong {
    color: var(--tp-navy);
    display: block;
}

/* Hero Right Side: ENQUIRY CARD */
.tp-hero-form-wrapper {
    flex: 0.9;
    max-width: 440px;
    position: relative;
}

.tp-enquiry-card {
    background: var(--tp-navy);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 33, 71, 0.15);
    color: var(--tp-white);
    position: relative;
    border: 2px solid rgba(213, 167, 62, 0.15);
}

.tp-enquiry-card h3 {
    color: var(--tp-white);
    text-align: center;
    font-size: 22px;
    margin: 0 0 4px;
    letter-spacing: 0.5px;
}

.tp-enquiry-card p.subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0 0 20px;
    line-height: 1.4;
}

/* Form Styles */
.tp-form-field {
    position: relative;
    margin-bottom: 12px;
}

.tp-form-field input,
.tp-form-field select,
.tp-form-field textarea {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--tp-white);
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.tp-form-field textarea {
    height: 60px;
    resize: none;
}

.tp-form-field input::placeholder,
.tp-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.tp-form-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.tp-form-field select option {
    background-color: var(--tp-navy);
    color: var(--tp-white);
}

.tp-form-field i.field-icon {
    position: absolute;
    left: 14px;
    top: 13px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.tp-form-field i.fa-angle-down {
    position: absolute;
    right: 14px;
    top: 13px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.tp-form-field input:focus,
.tp-form-field select:focus,
.tp-form-field textarea:focus {
    outline: none;
    border-color: var(--tp-gold);
    background: rgba(255, 255, 255, 0.08);
}

.tp-submit-btn {
    width: 100%;
    background-color: var(--tp-gold);
    color: var(--tp-navy);
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--tp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.tp-submit-btn:hover {
    background-color: var(--tp-gold-hover);
}

.tp-submit-btn i {
    transition: transform 0.2s ease;
}

.tp-submit-btn:hover i {
    transform: translateX(3px);
}

.tp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tp-form-footer {
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
}

/* AJAX Message Banner */
.tp-form-msg {
    display: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 12px;
}

.tp-form-msg.success {
    display: block;
    background-color: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.tp-form-msg.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive Hero */
@media (max-width: 991px) {
    .tp-hero-grid {
        flex-direction: column;
        gap: 50px;
    }
    .tp-hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tp-hero-subtitle, .tp-hero-checks, .tp-hero-badges {
        justify-content: center;
    }
    .tp-hero-title {
        font-size: 38px;
    }
    .tp-hero-form-wrapper {
        width: 100%;
    }
}

/* ==========================================================================
   2. ABOUT US SECTION
   ========================================================================== */
.tp-about-section {
    padding: 60px 0;
    background-color: var(--tp-white);
}

.tp-about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tp-about-media {
    flex: 0.95;
    position: relative;
}

.tp-about-img-box {
    position: relative;
    border: 2px solid var(--tp-gold);
    border-radius: 12px;
    padding: 10px;
    background: var(--tp-white);
}

.tp-about-img-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Floating Experience Badge */
.tp-experience-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--tp-navy);
    color: var(--tp-white);
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--tp-shadow-md);
    border: 1.5px solid var(--tp-gold);
    z-index: 2;
}

.tp-experience-badge h3 {
    color: var(--tp-gold);
    font-size: 28px;
    margin: 0;
    line-height: 1;
}

.tp-experience-badge span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.tp-about-content {
    flex: 1.05;
}

.tp-section-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--tp-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.tp-about-title {
    font-size: 34px;
    line-height: 1.25;
    margin: 0 0 20px;
}

.tp-about-desc {
    font-size: 15px;
    color: var(--tp-slate-600);
    margin-bottom: 24px;
}

.tp-about-checks {
    margin-bottom: 30px;
}

.tp-about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tp-navy);
    margin-bottom: 10px;
}

.tp-about-check-item i {
    color: var(--tp-gold);
    font-size: 12px;
}

/* Responsive About */
@media (max-width: 991px) {
    .tp-about-grid {
        flex-direction: column;
        gap: 50px;
    }
    .tp-about-media {
        width: 100%;
        max-width: 500px;
    }
    .tp-about-content {
        text-align: center;
    }
    .tp-about-check-item {
        justify-content: center;
    }
}

/* ==========================================================================
   3. CONSULTATION & PROCESSING CHARGES (NEW SECTION)
   ========================================================================== */
.tp-charges-section {
    padding: 60px 0;
    background-color: var(--tp-slate-50);
}

.tp-charges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tp-charge-card {
    background: var(--tp-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--tp-transition);
    position: relative;
    overflow: hidden;
}

.tp-charge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--tp-gold);
    opacity: 0;
    transition: var(--tp-transition);
}

.tp-charge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tp-shadow-lg);
    border-color: #cbd5e1;
}

.tp-charge-card:hover::before {
    opacity: 1;
}

.tp-charge-content h4 {
    font-size: 15px;
    margin: 0 0 10px;
    line-height: 1.4;
    font-weight: 700;
}

.tp-charge-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--tp-gold);
    margin: 12px 0 6px;
}

.tp-charge-sub {
    font-size: 11px;
    color: var(--tp-slate-500);
    font-style: italic;
    min-height: 14px;
    display: block;
    margin-bottom: 20px;
}

.tp-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--tp-whatsapp);
    color: var(--tp-white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 6px;
    transition: var(--tp-transition);
    border: none;
    cursor: pointer;
}

.tp-whatsapp-btn:hover {
    background-color: var(--tp-whatsapp-hover);
    transform: translateY(-1px);
}

.tp-charges-footer {
    text-align: center;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tp-charges-footer p {
    font-size: 12px;
    color: var(--tp-slate-500);
    line-height: 1.6;
}

.tp-charges-footer p strong {
    color: var(--tp-navy);
}

@media (max-width: 991px) {
    .tp-charges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tp-charges-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.tp-services-section {
    padding: 60px 0;
    background-color: var(--tp-white);
}

.tp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tp-service-card {
    background: var(--tp-white);
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--tp-shadow-sm);
    transition: var(--tp-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tp-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tp-shadow-lg);
    border-color: #e2e8f0;
}

.tp-service-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 33, 71, 0.05);
    color: var(--tp-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 16px;
    transition: var(--tp-transition);
}

.tp-service-card:hover .tp-service-icon {
    background: var(--tp-gold);
    color: var(--tp-navy);
}

.tp-service-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

.tp-service-card p {
    font-size: 13px;
    color: var(--tp-slate-500);
    margin: 0;
}

@media (max-width: 991px) {
    .tp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tp-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   5. TOP DESTINATIONS SECTION
   ========================================================================== */
.tp-destinations-section {
    padding: 60px 0;
    background-color: var(--tp-navy);
    color: var(--tp-white);
}

.tp-destinations-section h2, .tp-destinations-section p {
    color: var(--tp-white);
}

.tp-desti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tp-desti-card {
    background: var(--tp-navy-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--tp-shadow-md);
    transition: var(--tp-transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.tp-desti-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(213, 167, 62, 0.3);
}

.tp-desti-media {
    height: 180px;
    position: relative;
}

.tp-desti-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-desti-media::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(0deg, var(--tp-navy-light) 0%, transparent 100%);
}

.tp-desti-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tp-desti-body h3 {
    color: var(--tp-white);
    font-size: 16px;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tp-desti-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.tp-desti-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
}

.tp-desti-list li::before {
    content: '•';
    color: var(--tp-gold);
    position: absolute;
    left: 0;
    top: -1px;
}

.tp-desti-body .tp-btn-outline-navy {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--tp-white) !important;
    text-align: center;
}

.tp-desti-body .tp-btn-outline-navy:hover {
    background-color: var(--tp-gold);
    color: var(--tp-navy) !important;
    border-color: var(--tp-gold);
}

@media (max-width: 991px) {
    .tp-desti-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tp-desti-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   6. WHY CHOOSE, OUR PROCESS, SUCCESS STORIES
   ========================================================================== */
.tp-details-columns-section {
    padding: 60px 0;
    background-color: var(--tp-white);
}

.tp-cols-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 40px;
}

.tp-col h3.col-title {
    font-size: 20px;
    border-bottom: 2px solid var(--tp-slate-100);
    padding-bottom: 12px;
    margin: 0 0 24px;
    position: relative;
}

.tp-col h3.col-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--tp-gold);
}

/* Column 1: Why Choose Us */
.tp-wcu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tp-wcu-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-wcu-icon {
    width: 32px;
    height: 32px;
    background: rgba(213, 167, 62, 0.15);
    color: var(--tp-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.tp-wcu-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--tp-navy);
}

/* Column 2: Our Process */
.tp-process-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

/* Vertical progress line */
.tp-process-list::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: var(--tp-slate-100);
    z-index: 1;
}

.tp-proc-step {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.tp-proc-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--tp-navy);
    color: var(--tp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid var(--tp-white);
}

.tp-proc-step:hover .tp-proc-num {
    background-color: var(--tp-gold);
    color: var(--tp-navy);
}

.tp-proc-text h4 {
    font-size: 14px;
    margin: 0 0 4px;
}

.tp-proc-text p {
    font-size: 12px;
    color: var(--tp-slate-500);
    margin: 0;
}

/* Column 3: Success Stories */
.tp-testimonial-slider {
    position: relative;
    background: var(--tp-slate-50);
    border: 1px solid var(--tp-slate-100);
    border-radius: 12px;
    padding: 24px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tp-testi-stars {
    color: #fbbf24;
    font-size: 11px;
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
}

.tp-testi-quote {
    font-size: 13px;
    font-style: italic;
    color: var(--tp-slate-600);
    line-height: 1.5;
    margin: 0 0 20px;
}

.tp-testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #cbd5e1;
}

.tp-author-info h5 {
    font-size: 13px;
    margin: 0;
}

.tp-author-info span {
    font-size: 10px;
    color: var(--tp-slate-500);
}

.tp-dots-navigation {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.tp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--tp-transition);
}

.tp-dot.active {
    background: var(--tp-gold);
    width: 16px;
    border-radius: 3px;
}

@media (max-width: 991px) {
    .tp-cols-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================================================
   7. ACTION BANNER SECTION
   ========================================================================== */
.tp-action-banner-section {
    padding: 50px 0;
    background-color: var(--tp-navy);
}

.tp-banner-bg {
    background: var(--tp-navy-light);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.tp-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tp-banner-icon {
    width: 56px;
    height: 56px;
    background: rgba(213, 167, 62, 0.15);
    color: var(--tp-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.tp-banner-text h3 {
    color: var(--tp-white);
    font-size: 24px;
    margin: 0 0 6px;
}

.tp-banner-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 767px) {
    .tp-banner-bg {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .tp-banner-left {
        flex-direction: column;
        gap: 15px;
    }
}
