/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

/* Header */
.header-transparent {
    background: transparent;
    transition: all 0.3s ease;
}

.header-semi-transparent-dark {
    background: rgba(0, 0, 0, 0.9);
}

.header-body {
    padding: 1rem 0;
}

.header-logo img {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    background: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 0;
}

.dropdown-item {
    color: white !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: white !important;
}

/* Hero Slider */
#heroCarousel {
    height: 100vh;
    position: relative;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-caption {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 0;
    right: 0;
    text-align: left;
}

.slide-content {
    padding: 2rem 0;
}

.top-label .badge {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.white-line {
    max-width: 200px;
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.slide-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-indicators button.active {
    background-color: #fff;
    border-color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Map Styles */
.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.google-map {
    border-radius: 10px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Additional Animation Delays */
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

.slide-in-left.delay-1 { transition-delay: 0.1s; }
.slide-in-left.delay-2 { transition-delay: 0.2s; }
.slide-in-left.delay-3 { transition-delay: 0.3s; }

.slide-in-right.delay-1 { transition-delay: 0.1s; }
.slide-in-right.delay-2 { transition-delay: 0.2s; }
.slide-in-right.delay-3 { transition-delay: 0.3s; }

/* Improved Section Styling */
.section {
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 3rem;
}

/* Improved Card Styling */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.top-label {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.white-line {
    max-width: 200px;
    margin-bottom: 1rem;
}

.white-line img {
    width: 100%;
    height: auto;
}

.subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slide-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.slider-indicators {
    display: flex;
    gap: 0.5rem;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 2rem;
}

/* Word Rotator */
.word-rotator {
    display: inline-block;
}

.word-rotator-words {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: top;
}

.word-rotator-words b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
}

.word-rotator-words b.is-visible {
    position: relative;
    transform: translateX(0);
}

/* Video Tabs */
.video-tabs {
    margin-top: 2rem;
}

.tab-content {
    margin-bottom: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.video-link {
    display: block;
    position: relative;
    cursor: pointer;
}

.video-link::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tabs {
    border-bottom: none;
    border-top: 2px solid #e9ecef;
}

.nav-tabs .nav-link {
    border: none;
    border-top: 2px solid transparent;
    margin-top: -2px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    border-top-color: var(--primary-color);
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content h4 {
    color: #E04040;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.testimonial-card img {
    border: 3px solid var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--secondary-color);
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--dark-color);
    transform: scale(1.1);
}

/* Form Styles */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .slide-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .slider-controls {
        bottom: 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
    
    .slider-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
} 

/* ONEDAYPILOT Footer Styles */
.onedaypilot-footer {
    background: #000000;
    color: #ffffff;
    border-top: none;
    padding: 0;
    position: relative;
    clear: both;
}

.onedaypilot-footer .footer-logo-section {
    display: flex;
    align-items: center;
}

.onedaypilot-footer .footer-logo {
    text-align: center;
}

.onedaypilot-footer .footer-logo-img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.onedaypilot-footer .logo-icon {
    width: 80px;
    height: 80px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
}

.onedaypilot-footer .logo-icon::before,
.onedaypilot-footer .logo-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: #ffffff;
    top: 50%;
    transform: translateY(-50%);
}

.onedaypilot-footer .logo-icon::before {
    left: -45px;
}

.onedaypilot-footer .logo-icon::after {
    right: -45px;
}

.onedaypilot-footer .logo-letter {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.onedaypilot-footer .logo-text {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.onedaypilot-footer .booking-hotline {
    text-align: left;
}

.onedaypilot-footer .hotline-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.onedaypilot-footer .hotline-label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

.onedaypilot-footer .address-section {
    color: #ffffff;
}

.onedaypilot-footer .address-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.onedaypilot-footer .address-text {
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.onedaypilot-footer .contact-section {
    color: #ffffff;
}

.onedaypilot-footer .contact-title,
.onedaypilot-footer .info-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.onedaypilot-footer .contact-item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.95rem;
}

.onedaypilot-footer .contact-item i {
    color: #ffffff;
    width: 20px;
}

.onedaypilot-footer .info-links {
    color: #ffffff;
}

.onedaypilot-footer .info-link-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.onedaypilot-footer .info-link-item i {
    color: #ffffff;
    width: 20px;
    font-size: 0.8rem;
}

.onedaypilot-footer .info-link-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.onedaypilot-footer .info-link-item a:hover {
    opacity: 0.8;
    color: #ffffff;
}

.onedaypilot-footer .social-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.onedaypilot-footer .social-icons {
    display: flex;
    gap: 15px;
}

.onedaypilot-footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.onedaypilot-footer .social-icon:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.1);
}

.onedaypilot-footer .social-icon i {
    font-size: 1.2rem;
}

.onedaypilot-footer .footer-copyright {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.onedaypilot-footer .copyright-text {
    color: #ffffff;
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .onedaypilot-footer .footer-logo-section {
        margin-bottom: 30px;
    }
    
    .onedaypilot-footer .booking-hotline {
        text-align: center;
    }
    
    .onedaypilot-footer .logo-icon::before,
    .onedaypilot-footer .logo-icon::after {
        display: none;
    }
    
    .onedaypilot-footer .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .onedaypilot-footer .hotline-number {
        font-size: 1.5rem;
    }
    
    .onedaypilot-footer .logo-text {
        font-size: 1.4rem;
    }
    
    .onedaypilot-footer .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .onedaypilot-footer .logo-letter {
        font-size: 2rem;
    }
} 

/* CSS Overrides for Footer */
#footer.onedaypilot-footer {
    background: #000000 !important;
    border-top: none !important;
}

#footer.onedaypilot-footer * {
    color: #ffffff !important;
}

#footer.onedaypilot-footer a:not(.social-icon) {
    color: #ffffff !important;
}

#footer.onedaypilot-footer a:not(.social-icon):hover {
    color: #ffffff !important;
    opacity: 0.8;
}

#footer.onedaypilot-footer h1, 
#footer.onedaypilot-footer h2, 
#footer.onedaypilot-footer h3, 
#footer.onedaypilot-footer h4, 
#footer.onedaypilot-footer h5, 
#footer.onedaypilot-footer h6 {
    color: #ffffff !important;
}

#footer.onedaypilot-footer .footer-copyright {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

#footer.onedaypilot-footer .footer-copyright p {
    color: #ffffff !important;
} 