/* HELIOS TOURS - Modern Professional Design */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #F4A5A5;
    --primary-dark: #E68A8A;
    --secondary-color: #4a6b5b;
    --accent-color: #5a7b6b;
    --dark: #1e293b;
    --light: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border-radius: 16px;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Modern Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.navbar-dark .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-dark .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-dark .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-dark .nav-link:hover::after {
    width: 80%;
}

/* Hero Section - Ultra Modern */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F4A5A5 0%, #D88989 30%, #6B9B7A 70%, #5A8A69 100%);
    padding: 120px 0 80px;
}

.min-vh-90 {
    min-height: 90vh;
}

/* Animated Background Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(244, 165, 165, 0.5);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(107, 155, 122, 0.5);
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(143, 196, 159, 0.4);
    bottom: -50px;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: rgba(230, 138, 138, 0.3);
    top: 20%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInDown 0.8s ease;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
    color: #4a6b5b;
}

/* Hero Buttons */
.hero-buttons {
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons .btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.hero-buttons .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease 0.5s both;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: floatCard 6s infinite ease-in-out;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.visual-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.visual-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 10px 0;
}

.visual-card p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.card-1 {
    top: 0;
    left: 0;
    width: 200px;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    right: 50px;
    width: 180px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 80px;
    left: 50px;
    width: 190px;
    animation-delay: 4s;
}

.hero-image-placeholder {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    width: 250px;
    animation: floatCard 8s infinite ease-in-out;
    animation-delay: 1s;
}

.hero-image-placeholder i {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-image-placeholder span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Math CAPTCHA Styling */
.math-captcha-box {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
    border: 2px solid #F4A5A5;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.math-captcha-box:hover {
    box-shadow: 0 5px 20px rgba(244, 165, 165, 0.2);
    transform: translateY(-2px);
}

.math-captcha-box .form-control {
    border: 2px solid #F4A5A5;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.math-captcha-box .form-control:focus {
    border-color: #E68A8A;
    box-shadow: 0 0 0 0.25rem rgba(244, 165, 165, 0.25);
}

/* Contact Form Enhancements */
.contact-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

/* Modern Buttons */
.btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 10px 20px rgba(244, 165, 165, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(244, 165, 165, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Modern Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.hover-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.display-5 {
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.display-5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.bg-light {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

/* Gallery Modern */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.gallery-item img {
    transition: all 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Gallery overlay with icon */
.gallery-item::after {
    content: '\F5EE'; /* Bootstrap icon search/zoom */
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Footer Modern */
footer {
    background: linear-gradient(135deg, #1a1f36 0%, #0f172a 100%);
    position: relative;
}

footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

footer h5 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

footer p,
footer .text-muted,
footer .text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.8;
}

/* Footer Links */
footer .footer-links {
    margin: 0;
    padding: 0;
}

footer .footer-links li {
    margin-bottom: 0.75rem;
}

footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

footer .footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact Links */
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: rgba(255, 255, 255, 1) !important;
}

/* Social Icons */
footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Bottom Footer */
footer hr {
    opacity: 0.1;
}

footer .text-white {
    transition: all 0.3s ease;
}

footer .text-white:hover {
    color: var(--primary-color) !important;
}

/* Flixelo Credit */
footer a[href*="flixelo"] {
    color: #fff !important;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

footer a[href*="flixelo"]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

footer a[href*="flixelo"]:hover::after {
    width: 100%;
}

footer a[href*="flixelo"]:hover {
    color: var(--primary-color) !important;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(244, 165, 165, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Admin Panel */
.admin-sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--dark) 0%, #0f172a 100%);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(244, 165, 165, 0.2);
    color: #fff;
    transform: translateX(5px);
}

.admin-sidebar .nav-link i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.admin-content {
    background: var(--light);
    min-height: 100vh;
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Page Header Modern */
.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

/* Utilities */
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* Text Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}
