
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Pacifico&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');




/* Styles de base pour la page Capitale */
:root {
    --primary-color: #8B4513;
    --primary-dark: #6B3300;
    --primary-light: #A0522D;
    --secondary-color: #DAA520;
    --secondary-dark: #B8860B;
    --secondary-light: #F4D03F;
    --accent-color: #CD5C5C;
    --accent-dark: #B22222;
    --accent-light: #DC7633;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #888;
    --light-bg: #f8f9fa;
    --light-color: #ffffff;
    --dark-bg: #2c3e50;
    --dark-color: #1a2533;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    --gradient-hero: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(218, 165, 32, 0.8));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation améliorée */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    padding: 5px 0;
    box-shadow: var(--shadow-medium);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.logo-container:hover::before {
    width: 100%;
}

.logo {
    height: 50px;
    margin-right: 12px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-container:hover .logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(218, 165, 32, 0.3));
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-text {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    position: relative;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 12px 18px;
    border-radius: 25px;
    overflow: hidden;
    background: transparent;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(218, 165, 32, 0.15), 
        rgba(139, 69, 19, 0.1),
        transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: rgba(218, 165, 32, 0.05);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.15);
}

.nav-links a:hover::after {
    width: 80%;
}

.active-nav {
    color: var(--light-color) !important;
    background: var(--gradient-primary) !important;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3) !important;
    transform: translateY(-2px) !important;
}

.active-nav::after {
    width: 0 !important;
}

.active-nav:hover {
    background: var(--gradient-primary) !important;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4) !important;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 24px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-8px);
    width: 20px;
}

.menu-toggle span:nth-child(2) {
    width: 24px;
}

.menu-toggle span:nth-child(3) {
    transform: translateY(8px);
    width: 16px;
}

.menu-toggle:hover span {
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(218, 165, 32, 0.3);
}

.menu-toggle:hover span:nth-child(1) {
    width: 24px;
}

.menu-toggle:hover span:nth-child(3) {
    width: 24px;
}

.menu-toggle.active {
    transform: rotate(180deg);
}

.menu-toggle.active span {
    background: var(--primary-color);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    width: 24px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    width: 24px;
}

/* Hero section améliorée */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../Img/Tana.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    overflow: hidden;
    transition: transform 0.3s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-title span {
    font-size: 2.5rem;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: white;
    margin: 0 auto 10px;
    border-radius: 1px;
}

/* Indicateur de progression amélioré */
.circuit-progress {
    padding: 40px 0;
    background: var(--light-color);
    box-shadow: var(--shadow-light);
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.progress-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    padding: 15px;
    border-radius: 15px;
}

.progress-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.progress-step.active .step-icon,
.progress-step.visited .step-icon {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.step-icon i {
    font-size: 1.2rem;
}

.step-title {
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-align: center;
    max-width: 100px;
}

.progress-step.active .step-title,
.progress-step.visited .step-title {
    color: var(--primary-color);
    font-weight: 700;
}

/* Circuits améliorés */
.circuits-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.circuit-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
}

.circuit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.circuit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.03), rgba(139, 69, 19, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.circuit-card:hover::before {
    opacity: 1;
}

.circuit-card.active {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.path-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.circuit-card:hover .path-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.circuit-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.circuit-header:hover {
    background: rgba(248, 249, 250, 0.5);
}

.circuit-title h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.circuit-title p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.circuit-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.tag-unesco {
    background: var(--gradient-secondary);
    color: white;
}

.circuit-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.circuit-card.active .circuit-toggle {
    transform: rotate(180deg);
}

.circuit-details {
    display: none;
    padding: 0;
}

.circuit-card.active .circuit-details {
    display: flex;
    flex-wrap: wrap;
}

.circuit-info {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.circuit-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.circuit-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.circuit-highlights {
    margin: 30px 0;
    padding: 25px;
    background: var(--gradient-primary);
    border-radius: 15px;
    color: white;
}

.circuit-highlights h4 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.highlight-item span {
    font-size: 0.85rem;
}

.circuit-features {
    list-style: none;
    margin-bottom: 30px;
}

.circuit-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.circuit-features li:last-child {
    border-bottom: none;
}

.circuit-features li i {
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.circuit-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Boutons améliorés */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.btn-secondary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

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

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

/* Galerie améliorée */
.circuit-gallery {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    height: 500px;
    border-radius: 0 0 20px 0;
}

.slides-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    font-size: 1.1rem;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.2);
    box-shadow: var(--shadow-medium);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

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

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Section témoignages */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
}

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

/* Section CTA améliorée */
.cta-section {
    background: var(--dark-bg);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    background-position: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer amélioré */
footer {
    background: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-column a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter {
    margin-top: 20px;
}

.newsletter h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.newsletter p {
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--secondary-color);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

.copyright i {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .circuit-details {
        flex-direction: column;
    }
    
    .circuit-gallery {
        height: 400px;
        border-radius: 0;
    }
    
    .progress-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .progress-container::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 8px 0;
        width: 80%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: var(--shadow-light);
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        transform: translateX(10px);
        background: rgba(218, 165, 32, 0.1);
    }
    
    .active-nav {
        transform: translateX(10px) !important;
    }
    
    .navbar.scrolled {
        padding: 8px 0;
    }
    
    .hero {
        height: 80vh;
        min-height: 600px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title span {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .circuit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .circuit-title h2 {
        font-size: 1.5rem;
    }
    
    .circuit-info {
        padding: 25px;
    }
    
    .circuit-actions {
        justify-content: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title span {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .circuit-info {
        padding: 20px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-step {
        padding: 10px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    }
    
    .step-title {
        font-size: 0.75rem;
        max-width: 80px;
    }
}