/* ============================================
   TECH-PAGE.CSS - Landing Page Specific Styles
   ============================================ */


/* Responsive protections (keep these to preserve original behavior) */
@media (max-width: 768px) {
    .security-strip { 
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
}

@media (min-width: 415px) and (max-width: 768px) {
    .security-strip {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 414px) {
    .security-strip { align-items: start; }
}


/* Tech page specific styles - Complete Redesign */

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}



/* ============================================
   PROCESS SECTION - MODERN CARDS DESIGN
   ============================================ */
.section--process {
    background: #0a0e27;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section--process::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
}

.process-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-title {
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-layers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0;
}

.process-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.process-card-content {
    flex: 1;
}

.process-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.process-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 0;
}

/* Animation Keyframes */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(-30px);
    }
}

@keyframes fadeInCenter {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(30px);
    }
}

/* Card animations triggered by .animate-in class */
.process-card:nth-child(1).animate-in {
    animation: fadeInLeft 0.8s ease-out 0.2s forwards;
}


.process-card:nth-child(2).animate-in {
    animation: fadeInCenter 0.8s ease-out 0.4s forwards;
}

.process-card:nth-child(3).animate-in {
    animation: fadeInRight 0.8s ease-out 0.6s forwards;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .process-container {
        padding: 0 20px;
    }
    
    .process-card {
        flex-direction: column;
        text-align: center;
    }
    
    .process-card-icon {
        margin: 0 auto;
    }
    
    /* Reset positions on mobile */
    .process-card:nth-child(1).animate-in,
    .process-card:nth-child(3).animate-in {
        animation: fadeInCenter 0.8s ease-out forwards;
    }

    .security-strip {
    justify-content: left;
    align-items: flex-start;
    gap: 4%rem;
    padding: 2rem 3rem;
    margin: 1rem;
    }


}



/* ============================================
   ABOUT SECTION - SPLIT SCREEN DESIGN
   ============================================ */
.section--about {
    background: white;
    padding: 0;
    min-height: 600px;
}

.about-split {
    display: flex;
    min-height: 600px;
}

.about-visual {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.profile-container {
    position: relative;
    z-index: 1;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.profile-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profile-badge span {
    color: var(--bridge-color);
    font-weight: 600;
    font-size: 14px;
}

.about-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(-135deg, #667eea00 0%, #764ba233 100%);
}

.about-label {
    color: var(--bridge-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-story {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: 4px solid var(--bridge-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0 0 2rem 0;
}

.projects-showcase {
    margin-top: 2rem;
}

.projects-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-cards {
    display: flex;
    gap: 1.5rem;
}

.company-card {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.company-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.company-info h4 {
    color: var(--text-light);
    font-size: 16px;
    margin: 0 0 4px 0;
}

.company-info p {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
}


/* ============================================
   WHY THIS WORKS - BENTO GRID
   ============================================ */
.section--reasons {
    background: #0a0e27;
    padding: 100px 0;
    position: relative;
}

.reasons-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reasons-title {
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto); /* Changed from 200px to auto */
    gap: 1.5rem;
}

.bento-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    cursor: default;
    position: relative;
    overflow: hidden;
    opacity: 0; /* Hidden initially for animation */
}

.bento-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.bento-content {
    flex: 1;
}

.bento-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.bento-text {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0; /* Remove all margins to eliminate space below */
}

/* Animation Keyframes */
@keyframes fadeInBento {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Cascade animation from top-left to bottom-right */
.bento-item.animate-in {
    animation: fadeInBento 0.6s ease-out forwards;
}

.bento-item:nth-child(1).animate-in {
    animation-delay: 0s;
}

.bento-item:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.bento-item:nth-child(3).animate-in {
    animation-delay: 0.4s;
}

.bento-item:nth-child(4).animate-in {
    animation-delay: 0.6s;
}

/* ============================================
   SECURITY SECTION - ICON STRIP
   ============================================ */
.section--security {
    background: white;
    padding: 80px 0;
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.security-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.security-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 100px;
    padding: 2rem 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.security-icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon-wrap i {
    color: white;
    font-size: 24px;
}

.security-text h3 {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 0 4px 0;
    text-align: left;
}

.security-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    text-align: left;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .process-cards {
        flex-direction: column;
    }
    
    .process-connector {
        display: none;
    }


}

@media (max-width: 768px) {
    .about-split {
        flex-direction: column;
    }
    
    .about-visual {
        min-height: 400px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
    
    .security-strip {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .company-cards {
        flex-direction: column;
    }
}

/* Security section grid for smaller screens */
@media (min-width: 415px) and (max-width: 768px) {
    .security-strip {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 1.5rem; /* Add spacing between items */
        padding: 1.5rem; /* Adjust padding */
    }
}



/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

/* Animated background elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-float-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.hero-float-2 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    row-gap: 1.3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    flex-direction: row;
    text-align: left;
}

.promise-item i {
    color: #764ba2; /* Purple from your gradient */
    font-size: 24px;
    flex-shrink: 0;
}

.promise-text {
    flex: 1;
}

.promise-title {
    font-weight: 600;
    margin-top: 4px;
    font-size: 16px;
    color: white;
    line-height: 1;
}

/* Left column items - align to the right */
.promise-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

/* Right column items - keep left alignment */
.promise-item:nth-child(even) {
    flex-direction: row;
    text-align: left;
}

.promise-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

.promise-item i {
    color: var(--success-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 0px;
}

.promise-text {
    flex: 1;
}

.promise-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 18px;
}

.promise-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-cta {
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 184, 0, 0.4);
}

.pulse-badge {
    background: var(--gradient-success);
    color: white;
    padding: 4px 10px;
    margin: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}


/* ============== ANIMATIONS ================== */

@keyframes badgeAnimation {
    0% {
        opacity: 0;
        transform: translateX(-100vw) rotate(-15deg);
    }
    50% {
        opacity: 1;
        transform: translateX(0) rotate(5deg);
    }
    60% {
        transform: translateX(10px) rotate(-2deg);
    }
    70% {
        transform: translateX(-5px) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes badgeAnimationMobile {
    0% {
        opacity: 0;
        transform: translateX(-100vw) rotate(-15deg);
    }
    50% {
        opacity: 1;
        transform: translateX(0) rotate(5deg);
    }
    60% {
        transform: translateX(10px) rotate(-2deg);
    }
    70% {
        transform: translateX(-5px) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes typewriter {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaShine {
    0% {
        opacity: 0;
        transform: scale(0.95);
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Apply animations to elements */

/* Page fade-in overlay with stronger easing */
@keyframes pageFadeIn {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    pointer-events: none;
    animation: pageFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}


@media (max-width: 768px) {
    .hero-badge {
        animation: badgeAnimationMobile 2s ease-in-out forwards;
    }
}

.hero-subtitle-main {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    margin-top: 2rem;
    margin-bottom: 0px;
    opacity: 0.95;
    display: block;
    animation: typewriter 2s ease-out 0s forwards;
    clip-path: inset(0 100% 0 0);
}

.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.1;
    display: block;
    animation: typewriter 4s ease-out 1s forwards;
    clip-path: inset(0 100% 0 0);
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    flex-direction: row;
    text-align: left;
    opacity: 0;
    animation: fadeInDown 0.6s ease-out forwards;
}

.promise-item:nth-child(1) {
    animation-delay: 3.5s;
}

.promise-item:nth-child(2) {
    animation-delay: 3.7s;
}

.promise-item:nth-child(3) {
    animation-delay: 3.9s;
}

.promise-item:nth-child(4) {
    animation-delay: 4.1s;
}

.hero-cta {
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.3);
    opacity: 0;
    animation: ctaShine 1.7s ease-out 6s forwards;
}

.hero-discount {
    opacity: 0;
    animation: fadeIn 1s ease-out 7s forwards;
}

.pulse-badge {
    background: var(--gradient-success);
    color: white;
    padding: 4px 10px;
    margin: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    opacity: 0;
    animation: fadeIn 1s ease-out 7.5s forwards, pulse 2s infinite 7.6s;
}

/* Hero Logo Animation - Add this to tech-page.css */
.logo-container {
    opacity: 0;
    animation: logoReveal 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 9s forwards;
    position: relative;
}

.hero-logo {
    filter: blur(20px);
    transform: scale(0.9);
    animation: 
        unblurLogo 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 8.5s forwards,
        waveDistortion 2s ease-out 8s;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes unblurLogo {
    0% {
        filter: blur(20px) brightness(1.5);
        transform: scale(0.9);
    }
    50% {
        filter: blur(10px) brightness(1.2);
        transform: scale(0.95);
    }
    100% {
        filter: blur(0px) brightness(1);
        transform: scale(1);
    }
}

@keyframes waveDistortion {
    0%, 100% {
        transform: translateX(0) rotateY(0deg);
    }
    15% {
        transform: translateX(-3px) rotateY(-2deg) skewY(1deg);
    }
    30% {
        transform: translateX(3px) rotateY(2deg) skewY(-1deg);
    }
    45% {
        transform: translateX(-2px) rotateY(-1deg) skewY(0.5deg);
    }
    60% {
        transform: translateX(2px) rotateY(1deg) skewY(-0.5deg);
    }
    75% {
        transform: translateX(-1px) rotateY(-0.5deg) skewY(0deg);
    }
    90% {
        transform: translateX(1px) rotateY(0.5deg) skewY(0deg);
    }
}

/* Optional: Add a subtle glow effect during reveal */
.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    animation: glowPulse 2s ease-out 8s;
    pointer-events: none;
    z-index: -1;
}

@keyframes glowPulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Ensure logo container has proper positioning for the effect */
.logo-container {
    margin-top: 2rem;
    display: inline-block;
    perspective: 1000px; /* Adds depth to the wave distortion */
}



/* ============================================
   CTA SECTION AFTER TESTIMONIALS
   ============================================ */
.testimonials-cta-section {
    background: linear-gradient(0deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0) 100%);
    padding: 60px 0 100px 0;
}

.cta-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-card .btn {
    font-size: 18px;
    padding: 14px 40px;
}

/* ============================================
   SECURITY SECTION - UPDATED
   ============================================ */
.security-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 100px;
    padding: 1.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* ============================================
   BOOKING SECTION - PROTECTED 90% OFF BADGE
   ============================================ */
#book .pulse-badge {
    background: var(--gradient-success);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* ============================================
   TESTIMONIALS CAROUSEL - ARROWS OUTSIDE CONTAINER
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    overflow: visible; /* Allow overflow for arrows */
}

/* Outer wrapper with relative positioning for arrows */
.testimonials-outer-wrapper {
    position: relative;
    max-width: 1200px; /* Wider to accommodate arrows */
    margin: 0 auto;
    padding: 0 20px;
}

/* Container for the actual testimonials */
.testimonials-container {
    max-width: 1000px; /* Narrower content area */
    margin: 0 auto;
    position: relative;
}

/* Override Swiper's position to static to allow arrows outside */
.testimonials-swiper {
    padding: 30px 30px 60px 30px; /* Equal padding on both sides */
    margin: 0; /* Remove negative margin */
    position: static; /* Critical for arrows outside */
    overflow: hidden; /* Hide extra slides */
}

/* Swiper wrapper - Add padding for shadows */
.testimonials-swiper .swiper-wrapper {
    padding: 30px; /* Padding around all slides for shadows */
}

/* Individual slide padding */
.testimonials-swiper .swiper-slide {
    padding: 20px; /* Space for shadow on each slide */
    margin-left: -10px;
}

/* Visible wrapper to show shadows */
.swiper-wrapper {
    padding: 10px; /* Space for shadows */
}

/* Single testimonial card */
.testimonial-slide {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    height: 300px;
    display: flex;
    flex-direction: column;
}

/* CSS stars with yellow fill */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.star-filled {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #FFD700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Testimonial text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
    flex: 1;
    margin-bottom: 1rem;
}

/* Author section - NO country text, only flag */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.author-name {
    font-weight: 600;
    color: #2d2d2d;
    font-size: 14px;
}

.author-location {
    display: flex;
    align-items: center;
}

.country-flag {
    font-size: 20px;
}

/* Navigation arrows - positioned OUTSIDE the testimonials container */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: none;
    border-radius: 50%;
    box-shadow: none;
    color: #667eea;
}


.swiper-button-prev:hover,
.swiper-button-next:hover {
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination dots below cards */
.swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: auto;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    opacity: 1;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: #667eea;
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    /* Ensure 3 cards visible on large screens */
    .testimonials-swiper .swiper-slide {
        width: calc((100% - 60px) / 3);
    }
}

@media (max-width: 1199px) {
    .testimonials-outer-wrapper {
        max-width: 100%;
    }
    
    .testimonials-container {
        max-width: 800px;
    }
    
}

@media (max-width: 768px) {
    .testimonials-container {
        max-width: 100%;
        /*padding: 0 60px;*/
    }
    
    /* Force 1 card on mobile */
    .testimonials-swiper .swiper-slide {
        width: 100%;
    }
        
    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    .hero-promise-grid {
        column-gap: 1.1rem;
        row-gap: 1.2rem;
    }
}

@media (max-width: 414px) {

    .hero-main-title {
    font-size: 10vw;
    }

    .about-content {
    padding: 60px 20px;
    }

    .testimonials-container {
        padding: 0px;
    }

    .hero-cta {
        padding: 10px 20px;
    }

    .cta-card {
    padding: 2rem;
    margin: 1rem;
    }

    .cta-card .btn {
    font-size: 18px;
    padding: 14px 20px;
    }

    .promise-item:nth-child(odd) {
    flex-direction: unset;
    text-align: left;
    padding: 7px 14px;
   }

    .security-strip {
        align-items: start;
    }

    .hero-promise-grid {
        column-gap: 1rem;
        row-gap: 1.1rem;
    }
}

@media (max-width: 991) {
    h2, .process-title, .section-title-modern, .reasons-title, .security-title, .display-4 {
        font-size: 2.5rem;
    }
}

/* ============================================
   SESSION FLOW SECTION - What Actually Happens
   ============================================ */
.section--session-flow {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background element */
.session-bg-element {
    position: absolute;
    top: 10%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

/* Section header styles */
.section-label {
    color: var(--bridge-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section--session-flow .section-title {
    font-size: 3rem;
    color: #2d2d2d;
    font-weight: 700;
}

.session-lead {
    max-width: 700px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 1.25rem;
}

/* Journey timeline container */
.session-journey {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
}

/* Individual journey stages */
.journey-stage {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInStage 0.8s ease-out forwards;
    position: relative;
}

.journey-stage[data-stage="1"] { animation-delay: 0.2s; }
.journey-stage[data-stage="2"] { animation-delay: 0.6s; }
.journey-stage[data-stage="3"] { animation-delay: 1s; }

/* Stage visual elements */
.stage-visual {
    position: relative;
    flex-shrink: 0;
}

.stage-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--bridge-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: var(--bridge-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stage-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.stage-icon i {
    font-size: 32px;
    color: var(--bridge-color);
}

/* Hover effects for stage visual */
.journey-stage:hover .stage-number {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: scale(0.8);
}

.journey-stage:hover .stage-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Stage content card */
.stage-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.stage-content:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.stage-content h4 {
    color: #2d2d2d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stage-content p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Stage insight box */
.stage-insight {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stage-insight i {
    color: var(--bridge-color);
    font-size: 18px;
}

.stage-insight span {
    color: var(--bridge-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Journey connectors */
.journey-connector {
    position: relative;
    height: 40px;
    margin: -10px 0 -10px 30px;
}

.connector-line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--bridge-color) 0%, var(--wisdom-color) 100%);
    transform: translateY(-50%);
}

.connector-pulse {
    position: absolute;
    left: -4px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--bridge-color);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulse 2s infinite;
}

/* Impact card */
.impact-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 24px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.impact-icon i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-card h3 {
    font-size: 1.75rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.impact-card p {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Trust indicators */
.trust-item i {
    font-size: 2rem;
    color: var(--success-color);
}

.trust-item p {
    color: #6c757d;
}

/* Animation keyframes */
@keyframes fadeInStage {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .section--session-flow {
        padding: 60px 0;
    }
    
    .section--session-flow .section-title {
        font-size: 2rem;
    }
    
    .journey-stage {
        flex-direction: column;
        align-items: center;
    }
    
    .journey-connector {
        display: none;
    }
    
    .stage-content {
        text-align: center;
    }
    
    .stage-content:hover {
        transform: translateY(-5px);
    }
    
    .impact-card {
        padding: 2rem;
    }
    
    .session-trust .row {
        gap: 2rem !important;
    }
}
