/* Besra - Custom Styles */

:root {
    --primary-color: #1a4480;
    --secondary-color: #2c5aa0;
    --accent-color: #00d4ff;
    --gold-accent: #f0c040;
    --dark-navy: #0f2a44;
    --light-blue: #e6f3ff;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #00a8cc);
    --gradient-gold: linear-gradient(135deg, var(--gold-accent), #e67e22);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

/* Navigation */
.custom-navbar {
    background: rgba(15, 42, 68, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--accent-color) !important;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(15, 42, 68, 0.8) 0%, 
        rgba(26, 68, 128, 0.6) 50%, 
        rgba(0, 212, 255, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-blue);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 8px 25px rgba(26, 68, 128, 0.4);
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: var(--gradient-accent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Featured Service Section */
.featured-service {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.featured-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23cbd5e1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.service-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-image-wrapper img {
    transition: transform 0.5s ease;
}

.service-image-wrapper:hover img {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(240, 192, 64, 0.4);
}

.price-badge .price {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    font-family: 'Orbitron', monospace;
}

.price-badge .period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-content {
    padding-left: 2rem;
}

.service-label {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 3rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.service-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.service-features i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--dark-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(240, 192, 64, 0.1) 0%, transparent 50%);
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: var(--light-blue);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.stars {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--accent-color);
}

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: var(--light-blue);
    font-size: 0.9rem;
}

/* Fleet Section */
.fleet-section {
    padding: 120px 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fleet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.fleet-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-overlay {
    transform: translateY(0);
}

.fleet-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.fleet-specs {
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    background: var(--light-blue);
}

.spec {
    text-align: center;
    color: var(--primary-color);
}

.spec i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.spec span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Discover Spain Section */
.discover-spain {
    padding: 120px 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.spain-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--gradient-gold);
    transform: rotate(45deg);
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 300px;
    background: linear-gradient(45deg, transparent 30%, var(--accent-color) 70%);
    top: 30%;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
}

.shape-4 {
    width: 250px;
    height: 250px;
    border: 3px solid var(--accent-color);
    border-radius: 30%;
    bottom: 10%;
    right: 20%;
    animation: rotate 20s linear infinite;
}

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

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

.discover-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.discover-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--light-blue);
    position: relative;
    z-index: 1;
}

.discover-features {
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.feature-item h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-item p {
    color: var(--light-blue);
    margin: 0;
}

.discover-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 500px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gallery-item.main {
    grid-row: 1 / -1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--dark-navy);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--light-blue);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #0a1a2a;
    color: var(--light-blue);
    padding: 60px 0 30px;
}

.footer-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-contact p,
.footer-links a {
    color: var(--light-blue);
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 42, 68, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text h6 {
    margin: 0 0 0.5rem 0;
    color: var(--accent-color);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-buttons {
    flex-shrink: 0;
    margin-left: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .service-title,
    .section-title,
    .discover-title,
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .service-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .discover-gallery {
        margin-top: 3rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-title,
    .section-title,
    .discover-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .discover-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }
    
    .gallery-item.main {
        grid-row: auto;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .service-title,
    .section-title,
    .discover-title,
    .cta-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .featured-service,
    .testimonials,
    .fleet-section,
    .discover-spain {
        padding: 80px 0;
    }
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

.footer .navbar-brand{
    margin-bottom: 20px;
}


.legal-content {
            padding-top: 120px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            min-height: 100vh;
        }

        .legal-document {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .document-header {
            background: var(--gradient-primary);
            color: white;
            padding: 3rem;
            text-align: center;
        }

        .document-header h1 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            font-family: 'Orbitron', monospace;
        }

        .last-updated {
            font-size: 1.1rem;
            opacity: 0.9;
            margin: 0;
        }

        .document-body {
            padding: 3rem;
            line-height: 1.7;
            color: var(--text-dark);
        }

        .legal-section {
            margin-bottom: 2.5rem;
        }

        .legal-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }

        .legal-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin: 1.5rem 0 1rem 0;
        }

        .legal-section p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        .legal-section ul {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }

        .legal-section li {
            margin-bottom: 0.5rem;
            padding-left: 0.5rem;
        }

        .contact-list {
            list-style: none;
            padding: 0;
        }

        .contact-list li {
            margin-bottom: 0.8rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .contact-list li:last-child {
            border-bottom: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .legal-content {
                padding-top: 100px;
            }

            .document-header {
                padding: 2rem;
            }

            .document-header h1 {
                font-size: 2rem;
            }

            .document-body {
                padding: 2rem;
            }

            .legal-section h2 {
                font-size: 1.3rem;
            }
        }