/* ================================================
   SERENDIB HOMEPAGE 3D - PAGE SPECIFIC STYLES
   ================================================ */

/* ================================================
   3D CANVAS & PARTICLES
   ================================================ */
.three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}


/* ================================================
   HERO SECTION - SIMPLIFIED (SAFARI-STYLE)
   Full height design with clean structure
   ================================================ */


.hero-3d {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: calc(var(--header-height) * -1);
    padding-top: var(--header-height);
    background: linear-gradient(180deg, #a8c5b8 0%, #7a9d8f 100%);
}

/* Hero Image Container (Simplified - No Extra Wrapper) */
.hero-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Light Overlay for Text Readability */
.hero-main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Content */
.hero-content-3d {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-wrapper {
    position: relative;
}

.hero-title-3d {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: var(--font-weight-black);
    line-height: 1;
    margin-bottom: 20px;
    color: var(--white);
}

.title-line {
    display: block;
    overflow: hidden;
    margin: 10px 0;
}

.title-word {
    display: inline-block;
    animation: slide-up 0.8s var(--ease-bounce) backwards;
    transform-style: preserve-3d;
    position: relative;
}

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--ocean-teal);
    z-index: -1;
    transform: translate(2px, 2px);
    opacity: 0.3;
}

.title-line:nth-child(2) .title-word {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) .title-word {
    animation-delay: 0.4s;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle-3d {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    animation: fade-in 1s ease 0.6s backwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-3d {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.scroll-indicator-3d {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fade-in 1s ease 1s backwards;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   RESPONSIVE - OPTIMIZED IMAGE POSITIONING
   ================================================ */

/* Desktop Large */
@media (min-width: 1200px) {
    .hero-main-image img {
        object-position: center 45%;
    }
}

/* Laptop */
@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-main-image img {
        object-position: center 40%;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    .hero-3d {
        min-height: 85vh;
    }

    .hero-main-image img {
        object-position: center 35%;
    }

    .hero-content-3d {
        padding: 0 40px;
    }

    .hero-title-3d {
        font-size: clamp(2rem, 6vw, 4rem);
    }
}

/* Mobile Portrait */
@media (max-width: 767px) {
    .hero-3d {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-main-image img {
        object-position: center 30%;
    }

    .hero-content-3d {
        padding: 0 20px;
    }

    .hero-title-3d {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 16px;
    }

    .hero-subtitle-3d {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-cta-3d {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .btn-3d-float.primary,
    .btn-3d-glass {
        width: 100%;
        padding: 14px 30px;
    }
}

/* Mobile Landscape */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-3d {
        min-height: 100vh;
    }

    .hero-main-image img {
        object-fit: cover;
        object-position: center center;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title-3d {
        font-size: 1.75rem;
    }

    .hero-subtitle-3d {
        font-size: 0.9rem;
    }
}

/* ================================================
   LEGACY CLASS SUPPORT
   Keep for backwards compatibility if needed
   ================================================ */
.hero-layers {
    /* This class is deprecated but kept for compatibility */
    /* Remove after updating HTML to use .hero-main-image directly */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}


.hero-content-3d {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 var(--container-padding);
}

.hero-title-3d {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: var(--font-weight-black);
    line-height: 1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    overflow: hidden;
    margin: 10px 0;
}

.title-word {
    display: inline-block;
    animation: slide-up 0.8s var(--ease-bounce) backwards;
    transform-style: preserve-3d;
    position: relative;
}

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--ocean-teal);
    z-index: -1;
    transform: translate(2px, 2px);
    opacity: 0.3;
}

.title-line:nth-child(2) .title-word {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) .title-word {
    animation-delay: 0.4s;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle-3d {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--slate-medium);
    margin-bottom: 40px;
    animation: fade-in 1s ease 0.6s backwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-cta-3d {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in 1s ease 0.8s backwards;
}

.btn-3d-float.primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 40px;
    font-size: 18px;
}

.btn-3d-float.primary:hover {
    transform: translateY(-5px) rotateX(-10deg);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.4);
}

.scroll-indicator-3d {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--slate-medium);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--slate-medium);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 2s infinite;
}

@keyframes wheel {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-text {
    font-size: 12px;
    color: var(--slate-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   QUOTE WIDGET 3D
   ================================================ */
.quote-3d {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--sand) 0%, var(--white) 100%);
    position: relative;
}

.section-header-3d {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-3d {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--slate-dark);
}

.title-3d {
    display: inline-block;
    position: relative;
    transform-style: preserve-3d;
}

.quote-widget-3d {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    position: relative;
}

.quote-form-3d {
    position: relative;
}

.form-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.form-field-3d {
    position: relative;
}

.field-label {
    display: block;
    margin-bottom: 12px;
    font-weight: var(--font-weight-medium);
    color: var(--slate-dark);
}

.field-input-3d {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.field-input-3d input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: var(--transition-base);
}

.field-input-3d input:focus {
    outline: none;
    border-color: var(--ocean-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.field-separator {
    color: var(--slate-medium);
    font-weight: var(--font-weight-medium);
}

.field-glow {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition-base);
}

.form-field-3d:focus-within .field-glow {
    transform: scaleX(1);
}

.traveler-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.traveler-btn {
    width: 50px;
    height: 48px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--jungle-green);
    cursor: pointer;
    transition: var(--transition-base);
}

.traveler-btn:hover {
    background: var(--sand);
}

#travelersCount {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    padding: 0 20px;
}

.budget-slider {
    position: relative;
}

#budgetRange {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--ocean-teal) 0%, var(--ocean-teal) 50%, #E2E8F0 50%, #E2E8F0 100%);
    outline: none;
    transition: var(--transition-base);
}

#budgetRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

#budgetRange::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: var(--glow-primary);
}

.budget-display {
    margin-top: 10px;
    text-align: center;
    font-weight: var(--font-weight-medium);
    color: var(--jungle-green);
}

.services-3d {
    margin-bottom: 40px;
}

.services-label {
    display: block;
    margin-bottom: 20px;
    font-weight: var(--font-weight-medium);
    color: var(--slate-dark);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.service-card-3d {
    position: relative;
}

.service-card-3d input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.service-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    transform-style: preserve-3d;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.service-card-3d input:checked~.service-label {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-5px) rotateX(-5deg);
    box-shadow: var(--glow-primary);
}

.btn-3d-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-3d-submit:active .btn-ripple {
    width: 300px;
    height: 300px;
}

.quote-result-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.quote-result-3d.active {
    opacity: 1;
    visibility: visible;
}

.result-card-3d {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: var(--transition-base);
}

.quote-result-3d.active .result-card-3d {
    transform: scale(1);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.result-label {
    font-weight: var(--font-weight-medium);
    color: var(--slate-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--sand);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-base);
}

.result-close:hover {
    background: var(--ocean-teal);
    color: var(--white);
    transform: rotate(90deg);
}

.result-amount {
    font-size: 48px;
    font-weight: var(--font-weight-black);
    color: var(--jungle-green);
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.result-amount .currency {
    font-size: 24px;
    opacity: 0.7;
}

.result-breakdown {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--sand);
    border-radius: var(--radius-md);
}

.full-width {
    width: 100%;
}

/* ================================================
   DESTINATION CARDS 3D
   ================================================ */
.destinations-3d {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.destinations-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.destination-card-3d {
    position: relative;
    cursor: pointer;
}

.card-3d-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    height: 250px;
}

.card-3d-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.destination-card-3d:hover .card-3d-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.destination-card-3d:hover .image-overlay {
    opacity: 1;
}

.card-3d-content {
    padding: 30px;
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.destination-card-3d:hover .card-3d-content {
    transform: translateY(-10px);
}

.card-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--slate-dark);
    margin-bottom: 8px;
}

.card-description {
    color: var(--slate-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 14px;
    color: var(--slate-medium);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--jungle-green);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-base);
}

.link-arrow {
    transition: var(--transition-base);
}


.card-link:hover .link-arrow {
    transform: translateX(5px);
}

/* ================================================
   Package styles are handled by packages.css
   ================================================ */

/* ================================================
   EXPERIENCE PARALLAX
   ================================================ */
.experience-3d {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.experience-parallax {
    position: relative;
}

.parallax-layer {
    position: relative;
    will-change: transform;
}

.parallax-image {
    position: absolute;
    width: 110%;
    height: 120%;
    top: -10%;
    left: -5%;
    object-fit: cover;
    opacity: 0.1;
}

.experience-content-3d {
    position: relative;
    z-index: 2;
}

.experience-grid-3d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-title-3d {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--slate-dark);
}

.experience-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--slate-medium);
    margin-bottom: 40px;
}

.experience-features-3d {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-3d {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon-3d {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.feature-3d:hover .feature-icon-3d {
    transform: translateY(-5px) rotateZ(5deg);
    box-shadow: var(--glow-primary);
}

.icon-3d {
    font-size: 28px;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--slate-dark);
}

.feature-content p {
    color: var(--slate-medium);
    line-height: 1.6;
}

.experience-stats-3d {
    display: flex;
    gap: 40px;
}

.stat-3d {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: var(--font-weight-black);
    color: var(--jungle-green);
    display: inline-flex;
    align-items: baseline;
}

.stat-suffix {
    font-size: 32px;
    margin-left: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--slate-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-visual-3d {
    position: relative;
}

.visual-frame-3d {
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition-base);
}

.visual-frame-3d:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.frame-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-3d);
}

.frame-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: -1;
}

.floating-badge-3d {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.badge-text {
    font-weight: var(--font-weight-bold);
    color: var(--jungle-green);
}

.badge-year {
    font-size: 24px;
    font-weight: var(--font-weight-black);
    color: var(--slate-dark);
}

/* ================================================
   TESTIMONIALS 3D
   ================================================ */
.testimonials-3d {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-carousel-3d {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card-3d {
    background: linear-gradient(135deg, var(--sand) 0%, var(--white) 100%);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: none;
    position: relative;
    overflow: hidden;
}

.testimonial-card-3d.active {
    display: block;
    animation: slide-in 0.5s ease;
}

@keyframes slide-in {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.testimonial-content-3d {
    position: relative;
    z-index: 2;
}

.stars-3d {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--slate-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ocean-teal);
}

.author-info strong {
    display: block;
    color: var(--slate-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--slate-medium);
}

.testimonial-3d-effect {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--ocean-teal) 0%, transparent 50%);
    opacity: 0.05;
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border: none;
    background: #E2E8F0;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.indicator.active {
    background: var(--jungle-green);
    width: 32px;
    border-radius: 6px;
}

/* ================================================
   CTA 3D SECTION
   ================================================ */
.cta-3d {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 50%, #0D9488 100%);
    z-index: 0;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
}

@keyframes drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 50px);
    }
}

.cta-content-3d {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title-3d {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
}

.word-3d {
    display: inline-block;
    animation: word-float 3s ease-in-out infinite;
}

.word-3d:nth-child(2) {
    animation-delay: 0.2s;
}

.word-3d:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes word-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.word-3d.gradient {
    background: linear-gradient(45deg, var(--white), var(--cinnamon-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons-3d {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-3d-hero {
    position: relative;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--jungle-green);
    background: var(--white);
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: var(--transition-base);
}

.btn-3d-hero.secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-3d-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--ocean-teal);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn-3d-hero:hover .btn-bg {
    width: 300px;
    height: 300px;
}

.btn-3d-hero .btn-text {
    position: relative;
    z-index: 2;
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.cta-features .feature {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* ================================================
   BACK TO TOP 3D
   ================================================ */
.back-to-top-3d {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 999;
}

.back-to-top-3d.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-3d:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

.top-icon {
    position: relative;
    z-index: 2;
}

.top-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
    .destinations-grid-3d {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-carousel-3d {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .experience-grid-3d {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visual-frame-3d {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-title-3d {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .quote-widget-3d {
        padding: 30px 20px;
    }

    .form-grid-3d {
        grid-template-columns: 1fr;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid-3d {
        grid-template-columns: 1fr;
    }

    .experience-stats-3d {
        justify-content: space-around;
    }

    .stat-number {
        font-size: 32px;
    }

    .floating-badge-3d {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }

    .testimonial-card-3d {
        padding: 30px;
    }

    .cta-buttons-3d {
        flex-direction: column;
        align-items: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 12px;
    }

    .back-to-top-3d {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

/* ================================================
   EXPERIENCE THE HEART OF SRI LANKA SECTION - NEW
   ================================================ */
.experience-heart {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--sand) 100%);
    position: relative;
    overflow: hidden;
}

.experience-heart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-images {
    position: relative;
    display: grid;
    gap: 30px;
}

.image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-card:hover img {
    transform: scale(1.05);
}

.primary-image {
    grid-column: 1;
    height: 500px;
}

.secondary-image {
    grid-column: 1;
    height: 300px;
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 148, 136, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.image-card:hover .image-overlay-gradient {
    opacity: 1;
}

.experience-content {
    padding: 20px;
}

.section-title-main {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--slate-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--slate-medium);
    margin-bottom: 40px;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: inline-block;
}

.feature-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--slate-dark);
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--slate-medium);
}

.cta-buttons-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================================================
   FEATURED PACKAGES SECTION
   ================================================ */

.featured-packages-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.featured-packages-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--slate-medium, #64748b);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials-loading .loader {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(203, 213, 225, 0.2);
    border-top-color: #14b8a6;
    border-radius: 50%;
    animation: testimonialSpin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes testimonialSpin {
    to {
        transform: rotate(360deg);
    }
}

.testimonials-loading p {
    font-size: 0.9375rem;
    opacity: 0.7;
    margin: 0;
}

/* Avatar Placeholder for Dynamic Testimonials */
.author-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card-3d.active .author-avatar-placeholder {
    animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
    }
}

/* Carousel Indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding: 1rem 0;
}

.testimonial-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(203, 213, 225, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    outline: none;
}

.testimonial-indicators .indicator:hover {
    background: rgba(20, 184, 166, 0.6);
    transform: scale(1.2);
}

.testimonial-indicators .indicator.active {
    background: #14b8a6;
    border-color: #14b8a6;
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.6);
    transform: scale(1.15);
}

.testimonial-indicators .indicator:focus {
    outline: 2px solid #14b8a6;
    outline-offset: 4px;
}

/* Empty State */
.testimonials-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--slate-medium, #64748b);
}

.testimonials-empty .empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonials-fallback {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--slate-medium, #64748b);
}

.testimonials-fallback a {
    color: #14b8a6;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .author-avatar-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-right: 12px;
    }

    .testimonials-loading {
        padding: 3rem 1rem;
        min-height: 250px;
    }

    .testimonials-loading .loader {
        width: 40px;
        height: 40px;
    }

    .testimonial-indicators {
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .testimonial-indicators .indicator {
        width: 10px;
        height: 10px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 60px;
    }

    .gallery-item {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        height: 400px;
        cursor: pointer;
        transition: var(--transition-base);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition-slow);
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.8) 0%,
                transparent 100%);
        transform: translateY(100%);
        transition: var(--transition-base);
    }

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }

    .gallery-caption {
        color: var(--white);
        font-size: 16px;
        font-weight: var(--font-weight-medium);
    }

    .gallery-cta {
        text-align: center;
    }
}

/* Package Card */
.package-card-3d {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    cursor: pointer;
    position: relative;
    animation: fadeInUp 0.6s ease backwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

.package-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Package Image */
.package-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.package-card-3d:hover .package-image {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--gradient-gold);
    color: var(--white);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.package-discount {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: #EF4444;
    color: var(--white);
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    z-index: 2;
}

.package-rating {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    z-index: 2;
}

.package-duration-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-align: center;
}

/* Package Content */
.package-content {
    padding: 28px;
}

.package-header {
    margin-bottom: 16px;
}

.package-name {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--slate-dark);
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-themes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.theme-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-full);
    text-transform: capitalize;
    background: rgba(13, 148, 136, 0.1);
    color: var(--jungle-green);
}

.theme-badge.theme-cultural {
    background: rgba(168, 85, 247, 0.1);
    color: #7C3AED;
}

.theme-badge.theme-wildlife {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
}

.theme-badge.theme-beach {
    background: rgba(59, 130, 246, 0.1);
    color: #2563EB;
}

.theme-badge.theme-adventure {
    background: rgba(249, 115, 22, 0.1);
    color: #EA580C;
}

.package-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--slate-medium);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Package Highlights */
.package-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(203, 213, 225, 0.3);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-dark);
}

.highlight-icon {
    color: var(--jungle-green);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

/* Package Pricing */
.package-pricing {
    margin-bottom: 20px;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-label {
    font-size: 13px;
    color: var(--slate-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 26px;
    font-weight: var(--font-weight-black);
    color: var(--jungle-green);
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-original {
    font-size: 18px;
    color: var(--slate-medium);
    text-decoration: line-through;
    font-weight: var(--font-weight-medium);
}

.price-unit {
    font-size: 14px;
    color: var(--slate-medium);
    font-weight: var(--font-weight-normal);
}

/* Package Actions */
.package-actions {
    display: flex;
    gap: 10px;
}

.btn-view-details,
.btn-book-now {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.btn-view-details {
    background: transparent;
    border-color: var(--ocean-teal);
    color: var(--ocean-teal);
}

.btn-view-details:hover {
    background: var(--ocean-teal);
    color: var(--white);
}

.btn-book-now {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

/* ================================================
   RESPONSIVE - PACKAGES
   ================================================ */

@media (max-width: 1024px) {
    .featured-packages-section {
        padding: 80px 0;
    }

    .packages-grid-3d {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .featured-packages-section {
        padding: 60px 0;
    }

    .packages-grid-3d {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .package-image-container {
        height: 220px;
    }

    .package-content {
        padding: 20px;
    }

    .package-name {
        font-size: 19px;
    }

    .package-actions {
        flex-direction: column;
    }

    .btn-view-details,
    .btn-book-now {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .featured-packages-section {
        padding: 40px 0;
    }

    .package-highlights {
        display: none;
        /* Hide on very small screens to save space */
    }
}

/* ================================================
   IMAGE GALLERY SECTION - NEW
   ================================================ */
.image-gallery {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    color: var(--slate-medium);
    font-size: 18px;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--white);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
}

.gallery-cta {
    text-align: center;
}

/* ================================================
   END OF HOMEPAGE STYLES
   Vehicle styles are handled by vehicles_3d_styles.css
   ================================================ */


/* ================================================
   RESPONSIVE FOR NEW SECTIONS
   ================================================ */
@media (max-width: 1024px) {
    .experience-heart-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-images {
        display: flex;
        gap: 20px;
    }

    .primary-image,
    .secondary-image {
        height: 300px;
        flex: 1;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .experience-heart {
        padding: 60px 0;
    }

    .experience-images {
        flex-direction: column;
    }

    .primary-image,
    .secondary-image {
        width: 100%;
        height: 250px;
    }

    .section-title-main {
        font-size: 2rem;
    }

    .section-description {
        font-size: 16px;
    }

    .cta-buttons-group {
        flex-direction: column;
    }

    .cta-buttons-group a {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }


    .gallery-item {
        height: 250px;
    }

}

/* ================================================
   SECTION CTA BUTTONS - CENTER ALIGNMENT
   ================================================ */
.section-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    padding: 0 20px;
}

.section-cta .btn-3d-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

