/* Extracted from about.blade.php */

/* Enhanced About Page Styling - Modern Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e8484;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 30px;
    letter-spacing: -0.8px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(30, 132, 132, 0.1);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e8484, #0ea5a4);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(14, 165, 164, 0.3);
}

.section-title::after {
    content: '✦';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #1e8484;
    text-shadow: 0 2px 8px rgba(30, 132, 132, 0.3);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

.section-title span.title-accent {
    color: #0d6363;
    position: relative;
    font-weight: 900;
}

.section-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.text {
    flex: 1 1 500px;
    font-size: 1.08rem;
    color: #555;
    line-height: 1.9;
}

.text p {
    margin-bottom: 18px;
}

.text strong, .text b {
    color: #1e8484;
    font-weight: 600;
}

.image {
    flex: 1 1 400px;
}

.image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.difference {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1150px;
    margin: 40px auto 0;
}

.elite-feature-card-wide {
    grid-column: span 2;
}

.values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30,132,132,0.05), transparent);
    transition: left 0.6s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30,132,132,0.15);
}

.journey {
    background: linear-gradient(135deg, #e8f5f5 0%, #d4ebeb 100%);
    border-left: 6px solid #1e8484;
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
}

.journey::before {
    content: '\f1ad';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 50px;
    color: rgba(30,132,132,0.1);
}

.service-section {
    position: relative;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30,132,132,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Trebta Section Animations */
.egbookings-image-wrapper:hover img {
    transform: scale(1.05) rotate(1deg);
}

.egbookings-image-wrapper:hover > div:nth-child(3) {
    opacity: 1;
}

.egbookings-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.2);
}

@media(max-width:768px) {
    .section-title { 
        font-size: 2.2rem;
        margin-bottom: 30px !important;
        padding-bottom: 20px;
    }
    .section-title::before {
        width: 100px;
        height: 4px;
    }
    .section-title::after {
        width: 50px;
        height: 4px;
        bottom: -6px;
    }
    .section-content { 
        flex-direction: column; 
    }
    .card {
        padding: 25px 20px;
    }
    .difference, .values {
        grid-template-columns: 1fr;
    }
    .journey-section .row {
        gap: 30px 0 !important;
    }
    .milestone-stat {
        margin-bottom: 15px !important;
    }
    .egbookings-section .col-md-7 {
        padding-left: 15px !important;
    }
    .egbookings-content {
        padding: 35px 25px !important;
    }
}

@media (min-width: 769px) and (max-width: 950px) {
    .values {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 500px) {
    .section-title {
        font-size: 1.9rem;
        padding-bottom: 18px;
        letter-spacing: -0.3px;
    }
    .section-title::before {
        width: 80px;
        height: 3px;
    }
    .section-title::after {
        width: 40px;
        height: 3px;
    }
    .about-section .section-heading {
        padding-top: 20px;
        padding-left: 0 !important;
    }
    .about-section .section-heading h2 {
        font-size: 2rem !important;
    }
    .journey {
        padding: 25px;
    }
}

/* Comprehensive Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hero Header Mobile Responsive */
    .page-header-info h4 {
        font-size: 1.8rem !important;
    }
    .page-header-info p {
        font-size: 0.95rem !important;
        padding: 0 15px;
    }
    .page-header-info {
        padding: 30px 15px !important;
    }
    
    /* About Section Responsive */
    .about-section h2 {
        font-size: 2rem !important;
    }
    
    .about-section h4 {
        font-size: 0.85rem !important;
    }
    
    .about-section p {
        font-size: 1rem !important;
    }
    
    .about-section .about-img div[style*="width: 80px"] {
        width: 60px !important;
        height: 60px !important;
        top: -12px !important;
        right: -12px !important;
    }
    
    .about-section .about-img div[style*="width: 80px"] i {
        font-size: 24px !important;
    }
    
    /* What EgBookings Does Section */
    .service-section h2 {
        font-size: 2rem !important;
    }
    
    /* Mission & Vision Cards */
    div[style*="padding: 40px"] {
        padding: 30px 25px !important;
    }
    
    .mission-icon,
    .vision-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
    
    .mission-icon i,
    .vision-icon i {
        font-size: 24px !important;
    }
    
    h4[style*="font-size: 1.65rem"] {
        font-size: 1.35rem !important;
    }
    
    /* Customer-First Approach Section - Enhanced Specificity */
    .difference,
    section.difference-section .difference,
    .service-section .difference,
    div.difference {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .elite-feature-card {
        padding: 35px 30px !important;
        margin: 0 !important;
        grid-column: span 1 !important;
    }
    
    .elite-feature-card-wide {
        grid-column: span 1 !important;
    }
    
    .elite-feature-card h3 {
        font-size: 1.45rem !important;
    }
    
    .elite-feature-card p {
        font-size: 1rem !important;
    }
    
    .elite-icon-box {
        width: 75px !important;
        height: 75px !important;
        margin-bottom: 25px !important;
    }
    
    .elite-icon-box i {
        font-size: 36px !important;
    }
    
    .card-number-elite {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        top: 20px !important;
        right: 20px !important;
    }
    
    /* Customer Support Card Flex Layout */
    .elite-support-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }
    
    .elite-support-flex .elite-icon-box {
        margin-bottom: 0 !important;
        min-width: 75px !important;
    }
    
    .elite-support-text {
        text-align: center !important;
    }
    
    .elite-support-text h3,
    .elite-support-text p {
        text-align: center !important;
    }
    
    /* Goal Statement Section Mobile */
    .difference-section div[style*="display: flex"][style*="align-items: center"] {
        flex-direction: column !important;
        gap: 25px !important;
        text-align: center !important;
    }
    
    .difference-section div[style*="display: flex"] p[style*="text-align: left"] {
        text-align: center !important;
    }
    
    .difference-section div[style*="padding: 55px 65px"] {
        padding: 35px 25px !important;
    }
    
    .difference-section div[style*="margin-top: 75px"] {
        margin-top: 45px !important;
        padding: 0 15px !important;
    }
    
    /* Our Journey Section Mobile */
    .journey-section div[style*="grid-template-columns: 45% 55%"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .journey-section h2 {
        font-size: 2.2rem !important;
    }
    
    .journey-section p {
        font-size: 1rem !important;
    }
    
    .journey-section > div[style*="margin-bottom: 80px"] {
        margin-bottom: 50px !important;
    }
    
    /* Stats cards in Journey section */
    .journey-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin-top: 20px !important;
        padding: 0 !important;
    }
    
    .journey-section div[style*="grid-template-columns: repeat(3, 1fr)"] > div {
        padding: 15px 8px !important;
    }
    
    .stat-number {
        font-size: 1.4rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
    }
    
    /* Journey cards responsive */
    .journey-section div[style*="padding: 40px 38px"] {
        padding: 30px 25px !important;
        border-left-width: 4px !important;
    }
    
    .journey-section div[style*="padding: 40px 38px"] p {
        font-size: 1.05rem !important;
    }
    
    .journey-section div[style*="width: 70px; height: 70px"] {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
    
    .journey-section div[style*="width: 70px; height: 70px"] i {
        font-size: 24px !important;
    }
    
    /* Floating badge responsive */
    .journey-section div[style*="width: 130px; height: 130px"] {
        width: 100px !important;
        height: 100px !important;
        top: -15px !important;
        right: -15px !important;
    }
    
    .journey-section div[style*="width: 130px; height: 130px"] i {
        font-size: 32px !important;
    }
    
    .journey-section div[style*="width: 130px; height: 130px"] span {
        font-size: 0.7rem !important;
    }
    
    /* Image height adjustment */
    .journey-section img[style*="height: 520px"] {
        height: 300px !important;
    }
    
    /* Image container adjustments */
    .journey-section div[style*="max-width: 1200px"] {
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .journey-section section[style*="padding: 100px 0"],
    section.journey-section[style*="padding: 100px 0"] {
        padding: 60px 0 !important;
    }
    
    /* Decorative shapes - hide or reduce on mobile */
    .journey-section > div[style*="width: 350px; height: 350px"],
    .journey-section > div[style*="width: 400px; height: 400px"],
    .journey-section > div[style*="width: 100px; height: 100px"],
    .journey-section > div[style*="width: 120px; height: 120px"] {
        display: none !important;
    }
    
    .journey-section .container {
        padding: 0 15px !important;
    }
    
    .journey-section div[style*="text-align: center"][style*="margin-bottom: 80px"] p {
        font-size: 1.05rem !important;
        padding: 0 10px !important;
    }
    
    section[style*="animation: morph-shape"] > div[style*="width: 180px"],
    section[style*="animation: morph-shape"] > div[style*="width: 150px"] {
        display: none !important;
    }
    
    /* Hide decorative background elements on mobile */
    section > div[style*="width: 400px; height: 400px"],
    section > div[style*="width: 500px; height: 500px"],
    div[style*="animation: pulseGlow"],
    div[style*="animation: floatSlow"] {
        opacity: 0.3 !important;
    }
    
    /* Section titles responsive */
    h2[style*="font-size: 3.2rem"] {
        font-size: 2rem !important;
    }
    
    h2[style*="font-size: 3rem"] {
        font-size: 1.9rem !important;
    }
    
    h2[style*="font-size: 2.8rem"] {
        font-size: 1.85rem !important;
    }
    
    /* Paragraph text responsive */
    p[style*="font-size: 1.25rem"] {
        font-size: 1.05rem !important;
    }
    
    p[style*="font-size: 1.2rem"] {
        font-size: 1rem !important;
    }
    
    p[style*="font-size: 1.18rem"] {
        font-size: 1.05rem !important;
    }
    
    p[style*="font-size: 1.15rem"] {
        font-size: 1rem !important;
    }
    
    p[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }
    
    p[style*="font-size: 1.08rem"] {
        font-size: 0.98rem !important;
    }
    
    /* Padding adjustments */
    section[style*="padding: 100px 0"] {
        padding: 60px 0 !important;
    }
    
    div[style*="margin-bottom: 80px"] {
        margin-bottom: 50px !important;
    }
    
    div[style*="margin-bottom: 70px"] {
        margin-bottom: 45px !important;
    }
    
    /* Responsive container padding */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 500px) {
    /* Extra small devices */
    .page-header-info h4 {
        font-size: 1.5rem !important;
    }
    
    .page-header-info p {
        font-size: 0.85rem !important;
    }
    
    h2[style*="font-size: 3.2rem"],
    h2[style*="font-size: 3rem"],
    h2[style*="font-size: 2.8rem"] {
        font-size: 1.7rem !important;
    }
    
    .elite-feature-card {
        padding: 30px 25px !important;
    }
    
    .elite-feature-card h3 {
        font-size: 1.3rem !important;
    }
    
    .elite-icon-box {
        width: 65px !important;
        height: 65px !important;
    }
    
    .elite-icon-box i {
        font-size: 30px !important;
    }
    
    .elite-support-flex .elite-icon-box {
        width: 65px !important;
        height: 65px !important;
    }
    
    .journey-section img[style*="height: 520px"] {
        height: 250px !important;
    }
    
    .journey-section h2 {
        font-size: 1.7rem !important;
    }
    
    .journey-section div[style*="padding: 40px 38px"] {
        padding: 25px 20px !important;
    }
    
    .journey-section div[style*="padding: 40px 38px"] p {
        font-size: 1rem !important;
    }
    
    .journey-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        gap: 8px !important;
    }
    
    .journey-section div[style*="grid-template-columns: repeat(3, 1fr)"] > div {
        padding: 12px 6px !important;
    }
    
    .stat-number {
        font-size: 1.2rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
    }
    
    section[style*="padding: 100px 0"] {
        padding: 40px 0 !important;
    }
    
    /* About section extra small */
    .about-section h2 {
        font-size: 1.6rem !important;
    }
    
    .breadcrumb {
        font-size: 0.85rem !important;
    }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    h2[style*="font-size: 3.2rem"] {
        font-size: 2.6rem !important;
    }
    
    h2[style*="font-size: 2.8rem"] {
        font-size: 2.3rem !important;
    }
    
    .page-header-info h4 {
        font-size: 2.5rem !important;
    }
    
    .elite-feature-card {
        padding: 40px 35px !important;
    }
    
    .journey-section div[style*="grid-template-columns: 45% 55%"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    
    /* Adjust stats to be inline on tablet */
    .journey-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        display: grid !important;
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin-top: 30px !important;
    }
}



            @keyframes floatSlow {
                0%, 100% { transform: translateY(0) rotate(0deg); }
                50% { transform: translateY(-30px) rotate(10deg); }
            }
            
            @keyframes pulseGlow {
                0%, 100% { transform: scale(1); opacity: 1; }
                50% { transform: scale(1.15); opacity: 0.7; }
            }
            
            @keyframes fadeInDown {
                from { opacity: 0; transform: translateY(-40px); }
                to { opacity: 1; transform: translateY(0); }
            }
            
            @keyframes fadeInUp {
                from { opacity: 0; transform: translateY(40px); }
                to { opacity: 1; transform: translateY(0); }
            }
            
            @keyframes fadeInLeft {
                from { opacity: 0; transform: translateX(-40px); }
                to { opacity: 1; transform: translateX(0); }
            }
        


            @keyframes pulse {
                0%, 100% { transform: scale(1); opacity: 0.4; }
                50% { transform: scale(1.15); opacity: 0; }
            }
        


              @keyframes morph-shape {
                  0%, 100% { border-radius: 35% 65% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg) scale(1); }
                  25% { border-radius: 70% 30% 50% 50% / 30% 65% 35% 70%; transform: rotate(90deg) scale(1.05); }
                  50% { border-radius: 50% 50% 35% 65% / 65% 35% 65% 35%; transform: rotate(180deg) scale(1); }
                  75% { border-radius: 35% 65% 60% 40% / 50% 40% 60% 50%; transform: rotate(270deg) scale(1.05); }
              }
              
              @keyframes fadeInDown-elite {
                  from { opacity: 0; transform: translateY(-70px); }
                  to { opacity: 1; transform: translateY(0); }
              }
              
              @keyframes fadeInUp-elite {
                  from { opacity: 0; transform: translateY(70px); }
                  to { opacity: 1; transform: translateY(0); }
              }
              
              @keyframes fadeInUp-stagger {
                  from { opacity: 0; transform: translateY(60px) scale(0.95); }
                  to { opacity: 1; transform: translateY(0) scale(1); }
              }
              
              @keyframes draw-line {
                  from { stroke-dasharray: 0 1000; }
                  to { stroke-dasharray: 1000 1000; }
              }
              
              @keyframes float-slow-elite {
                  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
                  50% { transform: translate(-30px, -40px) scale(1.1); opacity: 0.7; }
              }
          


              @keyframes float-journey {
                  0%, 100% { transform: translate(0, 0) scale(1); }
                  33% { transform: translate(30px, -40px) scale(1.08); }
                  66% { transform: translate(-25px, 35px) scale(0.95); }
              }
              
              @keyframes morph-journey {
                  0%, 100% { border-radius: 35% 65% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg); }
                  33% { border-radius: 70% 30% 50% 50% / 30% 65% 35% 70%; transform: rotate(120deg); }
                  66% { border-radius: 50% 50% 35% 65% / 65% 35% 65% 35%; transform: rotate(240deg); }
              }
              
              @keyframes rotate-journey {
                  from { transform: rotate(0deg); }
                  to { transform: rotate(360deg); }
              }
              
              @keyframes rotate-slow-journey {
                  from { transform: rotate(0deg); opacity: 1; }
                  to { transform: rotate(360deg); opacity: 1; }
              }
              
              @keyframes slideDown-journey {
                  from { opacity: 0; transform: translateY(-60px); }
                  to { opacity: 1; transform: translateY(0); }
              }
              
              @keyframes slideRight-journey {
                  from { opacity: 0; transform: translateX(-100px); }
                  to { opacity: 1; transform: translateX(0); }
              }
              
              @keyframes slideLeft-journey {
                  from { opacity: 0; transform: translateX(100px); }
                  to { opacity: 1; transform: translateX(0); }
              }
              
              @keyframes fadeUp-journey {
                  from { opacity: 0; transform: translateY(50px); }
                  to { opacity: 1; transform: translateY(0); }
              }
              
              @keyframes pulse-badge-journey {
                  0%, 100% { transform: scale(1); box-shadow: 0 20px 45px rgba(30,132,132,0.45), inset 0 -3px 8px rgba(0,0,0,0.15); }
                  50% { transform: scale(1.08); box-shadow: 0 25px 55px rgba(30,132,132,0.55), inset 0 -3px 8px rgba(0,0,0,0.15), 0 0 0 15px rgba(30,132,132,0.1); }
              }
              
              @keyframes rocket-bounce {
                  0%, 100% { transform: translateY(0); }
                  50% { transform: translateY(-8px); }
              }
