/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@view-transition {
    navigation: auto;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #222222;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 20px;
    min-height: 80px;
}

.logo h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo a {
    display: block;
    line-height: 0;
}

.header-logo {
    height: 200px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin-top: 0;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.menu a:hover {
    color: #0A3F63;
    background-color: rgba(10, 63, 99, 0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0A3F63 0%, #1A5F8A 100%);
    color: white;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:first-child:hover {
    background: #3b5998;
}

.social-links a:last-child:hover {
    background: #ff0000;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Trips Section */
.trips-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.trips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image, url('./img/slider/slider1.jpg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: var(--bg-image-opacity, 1);
    transition: opacity var(--transition-disabled, 1s) ease-in-out;
}

.trips-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image-next, url('./img/slider/slider2.jpg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: var(--bg-image-next-opacity, 0);
    transition: opacity var(--transition-disabled, 1s) ease-in-out;
}

.trips-section .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: calc(100vh - 80px);
    width: 100%;
    position: relative;
    z-index: 1;
}

.trips-content {
    max-width: 900px;
    text-align: right;
}

.trips-content h2 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: normal;
}

.trips-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.trips-description {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1.8rem 4rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: shiver 1s ease-in-out 1s;
}

@keyframes shiver {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px) rotate(-1deg); }
    20% { transform: translateX(2px) rotate(1deg); }
    30% { transform: translateX(-2px) rotate(-1deg); }
    40% { transform: translateX(2px) rotate(1deg); }
    50% { transform: translateX(-2px) rotate(-1deg); }
    60% { transform: translateX(2px) rotate(1deg); }
    70% { transform: translateX(-2px) rotate(-1deg); }
    80% { transform: translateX(2px) rotate(1deg); }
    90% { transform: translateX(-2px) rotate(-1deg); }
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.trips-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Actor Trips Section */
.actor-trips-section {
    padding: 6rem 0;
    background: white;
}

.actor-trips-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
    font-weight: 300;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #333;
    transform: translateX(-50%);
    border-radius: 2px;
}

.trip-card {
    position: relative;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 3rem;
    width: 45%;
}

.trip-card:nth-child(odd) {
    left: 0;
    margin-left: 0;
}

.trip-card:nth-child(even) {
    left: 55%;
    margin-left: 0;
}

.trip-card::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #0A3F63;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #0A3F63;
    z-index: 2;
}

.trip-card:nth-child(odd)::before {
    right: -72px;
}

.trip-card:nth-child(even)::before {
    left: -72px;
}

.trip-year {
    position: absolute;
    top: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    z-index: 3;
}

.trip-card:nth-child(odd) .trip-year {
    right: -140px;
    text-align: right;
    width: 80px;
}

.trip-card:nth-child(even) .trip-year {
    left: -140px;
    text-align: left;
    width: 80px;
}

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

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.lightbox-overlay.show {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.lightbox-close {
    top: -56px;
    right: 0;
    transform: none;
}

.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item img {
        height: 180px;
    }
    .lightbox-prev { left: -32px; }
    .lightbox-next { right: -32px; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 220px;
    }
}

.trip-card a {
    text-decoration: none;
}

.trip-image {
    height: 250px;
    overflow: hidden;
    text-align: center;
}

.trip-image.south-america {
    background-color: #FFDC04;
}


.trip-image.kavkaz {
    background-color: #444B52;
}


.trip-image.turkey {
    background-color: #B4B200;
}


.trip-image.morocco {
    background-color: #F68C13;
}

.trip-image img {
    height: 100%;
    transition: transform 0.3s ease;
}

.trip-card:hover .trip-image img {
    transform: scale(1.05);
}

.trip-content {
    padding: 2rem;
}

.trip-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trip-content-old h3 {
    margin-bottom: 0rem;
    text-align: center;
}

.trip-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.trip-links {
    display: flex;
    gap: 1rem;
}

.trip-link {
    display: inline-block;
    background: #0A3F63;
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.trip-link:hover {
    background: #1A5F8A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 63, 99, 0.3);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.about-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.about-content p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Person Info Layout */
.person-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
    text-align: justify;
}

.person-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.person-text {
    flex: 1;
}

.person-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.text-justify {
    text-align: justify;
}

/* Responsive adjustments for person info */
@media (max-width: 768px) {
    .person-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .person-photo {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0A3F63;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(10, 63, 99, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #0d4f7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 63, 99, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Responsive adjustments for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Media Lists Styling */
.media-list, .audio-list {
    margin: 2rem 0;
}

.media-list ul, .audio-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.media-list li, .audio-list li {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid #0A3F63;
    transition: all 0.3s ease;
}

.media-list li:hover, .audio-list li:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.media-list a, .audio-list a {
    color: #0A3F63;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.media-list a:hover, .audio-list a:hover {
    color: #0d4f7a;
}

/* Responsive adjustments for media lists */
@media (max-width: 768px) {
    .media-list ul, .audio-list ul {
        grid-template-columns: 1fr;
    }
}

/* Route Table Styling */
.route-image {
    text-align: center;
    margin-bottom: 3rem;
}

.route-map {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.route-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.route-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.9rem;
}

.route-table th {
    background: #0A3F63;
    color: white;
    padding: 1rem 0.8rem;
    text-align: center;
    font-weight: 600;
    border: none;
}

.route-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.route-table tr:hover {
    background: #f8f9fa;
}

.route-table .total-row {
    background: #e9ecef;
    font-weight: bold;
}

.route-table .total-row td {
    border-bottom: none;
    padding: 1rem 0.8rem;
}

.route-note {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive adjustments for route table */
@media (max-width: 768px) {
    .route-table {
        font-size: 0.8rem;
    }
    
    .route-table th,
    .route-table td {
        padding: 0.6rem 0.4rem;
    }
    
    .route-table th {
        font-size: 0.8rem;
    }
}

/* Equipment Section Styling */
.equipment-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #0A3F63;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: justify;
}

.equipment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.equipment-item h3 {
    color: #0A3F63;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.equipment-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.equipment-item .supplier {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 0;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

/* Responsive adjustments for equipment section */
@media (max-width: 768px) {
    .equipment-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .equipment-item h3 {
        font-size: 1.2rem;
    }
}

/* Itinerary Timeline Styling */
.itinerary-timeline {
    margin: 2rem 0;
    position: relative;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0A3F63;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: #0A3F63;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #0A3F63;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    background: #0d4f7a;
    transform: scale(1.2);
}

.timeline-item.active::before {
    background: #0d4f7a;
    transform: scale(1.3);
}

.timeline-date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    color: #0A3F63;
    font-weight: 600;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-title {
    color: #0d4f7a;
}

.timeline-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0 1rem;
    margin-top: 0.5rem;
    text-align: justify;
}

.timeline-item.active .timeline-content {
    max-height: 100%;
    padding: 1rem;
}

.timeline-content p {
    margin: 0 0 1rem 0;
    color: #555;
    line-height: 1.6;
}

.timeline-content p:last-of-type {
    margin-bottom: 1.5rem;
}


/* Responsive adjustments for itinerary timeline */
@media (max-width: 768px) {
    .itinerary-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-item::before {
        left: 11px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .timeline-item.active .timeline-content {
        max-height: 1200px;
    }
    
}

/* Trip Detail Pages */
.trip-detail-section {
    padding: 8rem 0 4rem;
    background: white;
    min-height: 100vh;
}

.trip-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.trip-hero-image {
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.trip-detail-section h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.trip-nav {
    margin: 0 auto 4rem;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 1rem;
    background: white;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trip-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trip-nav a {
    color: #0A3F63;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 1001;
    display: inline-block;
}

.trip-nav a:hover {
    background: #0A3F63;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 63, 99, 0.3);
}

.trip-content-sections {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #0A3F63;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 3px solid #0A3F63;
    padding-bottom: 0.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Responsive Design for Detail Pages */
@media (max-width: 768px) {
    .trip-detail-section h1 {
        font-size: 2.5rem;
    }
    
    .trip-hero-image {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .trip-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .trip-nav a {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
}

/* Contact Footer */
.contact-footer {
    background: #222222;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: #0A3F63;
    width: 20px;
}

/* Contact links styling to match site links */
.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.contact-info a:hover {
    color: #0A3F63;
    background-color: rgba(10, 63, 99, 0.1);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.footer-social a:first-child:hover {
    border-color: #3b5998;
    background: rgba(59, 89, 152, 0.2);
}

.footer-social a:last-child:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.2);
}

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

.footer-logo {
    height: 150px;
    width: auto;
    max-width: 250px;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }
    
    .menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .trips-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .trips-content h2 {
        font-size: 2.5rem;
    }
    
    .actor-trips-section h2 {
        font-size: 2rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .trip-card {
        width: calc(100% - 60px);
        left: 60px !important;
        margin-left: 0 !important;
    }
    
    .trip-card::before {
        left: -43px !important;
        right: auto !important;
        top: 18px;
    }
    
    .trip-year {
        position: static !important;
        text-align: center !important;
        width: 100%;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        display: block;
        padding-top: 1rem;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .trips-content h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .social-links {
        margin-left: 0;
    }
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    .sticky-header .container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 1rem 20px;
        position: relative;
    }
    
    .header-logo {
        height: 80px;
        max-width: 80px;
        margin: 0 auto;
    }
    
    .hamburger {
        display: flex;
        padding-bottom: 35px;
    }
    
    .menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #1a1a1a;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .menu.active {
        max-height: 500px;
    }
    
    .menu ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 0;
        padding: 1rem 0;
    }
    
    .menu ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu ul li:last-child {
        border-bottom: none;
    }
    
    .menu a {
        display: block;
        font-size: 1rem;
        padding: 1rem;
        width: 100%;
    }
    
    .social-links {
        margin-left: 0;
        margin-top: 1rem;
        padding: 1rem 0;
        justify-content: center;
        border-bottom: none !important;
        width: auto !important;
        display: flex;
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .sticky-header .logo {
        z-index: 1;
    }
}
