/* ===== INLINE STYLES MOVED FROM PHP FILES ===== */

/* Author Box Styles */
.author-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #dc3545;
}

.author-box-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.author-image {
    flex-shrink: 0;
}

.author-image img,
.author-image .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dc3545;
}

.author-content {
    flex: 1;
}

.author-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.author-position {
    font-size: 14px;
    color: #dc3545;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-bio {
    margin: 0;
}

.author-bio p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* What We Do Section - Unique Styles to Prevent Conflicts */
.what-we-do .section-subtitle {
    color: #ffffff !important;
    text-align: left !important;
}

.what-we-do .section-title {
    color: #ffffff !important;
    text-align: center !important;
}

.what-we-do .service-title {
    color: #ffffff !important;
}

.what-we-do .section-title p {
    text-align: left !important;
}

/* Hero Section Background Styles */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

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

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

.quote-form-container {
    position: relative;
    z-index: 2;
}

/* Hero Text Colors */
.hero-section .hero-subtitle {
    color: #ffffff !important;
}

/* Video Section Styles */
.video-section {
    padding: 60px 0 0 0;
}

.video-section .section-title {
    margin-bottom: 40px;
    text-align: left !important;
}

.video-container {
    width: 100%;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #ffffff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.video-play-overlay:hover {
    background: rgba(220, 53, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Advantages Section Styles */
.advantages.our-success-story .contact-now-box .small-title,
.advantages .contact-now-box .small-title,
.our-success-story .contact-now-box .small-title,
.advantages-section .contact-now-box .small-title {
    color: #ffffff !important;
}

/* Alternative selector for extra specificity */
div.advantages .contact-now-box-content .small-title,
div.our-success-story .contact-now-box-content .small-title {
    color: #ffffff !important;
}

.advantages-bg-img img {
    filter: none !important;
}

/* Partners Section Styles */
.partners-section .partner-item img {
    width: 100%;
    height: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-section .partner-item:hover img {
    filter: grayscale(0%);
}

/* Team Section Styles */
.team-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
}



/* Destination Section Styles */
.destination-section .destination-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-section .destination-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination-section .destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-section .destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-section .destination-item:hover .destination-image img {
    transform: scale(1.1);
}

.destination-section .destination-content {
    padding: 25px;
}

.destination-section .destination-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.destination-section .destination-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.destination-section .destination-link {
    color: #dc3545;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.destination-section .destination-link:hover {
    color: #b02a37;
    text-decoration: none;
}

.destination-section .destination-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.destination-section .destination-link:hover::after {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .author-box {
        padding: 20px;
        margin: 30px 0;
    }

    .author-box-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .author-image img,
    .author-image .author-avatar {
        width: 70px;
        height: 70px;
    }

    .author-name {
        font-size: 18px;
    }

    .author-bio p {
        font-size: 15px;
    }

    .hero-background-video {
        height: 56.25vw;
        min-height: 100vh;
    }

    .destination-section .destination-image {
        height: 180px;
    }

    .destination-section .destination-content {
        padding: 20px;
    }

}

@media (max-width: 480px) {
    .destination-section .destination-image {
        height: 160px;
    }

    .destination-section .destination-content {
        padding: 15px;
    }

    .destination-section .destination-title {
        font-size: 18px;
    }
}