/* Reset và font chữ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #0066cc;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
}

.logo img {
    height: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

/* Hero section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/11.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section form {
    display: flex;
    width: 100%;
    max-width: 600px;
}

.hero-section input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.hero-section button {
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.hero-section button:hover {
    background-color: #0055aa;
}

/* Tour sections */
.featured-tours, .tour-list-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.tour-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.tour-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.tour-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-info {
    padding: 1.5rem;
}

.tour-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.price {
    font-weight: 700;
    color: #0066cc;
    font-size: 1.2rem;
}

.discount-price {
    font-weight: 700;
    color: #ff5500;
    font-size: 1.2rem;
}

.discount {
    color: #ff5500;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #0066cc;
    color: white;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0055aa;
}

/* Tour detail */
.tour-detail {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tour-image {
    border-radius: 8px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.tour-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tour-info p {
    margin-bottom: 1rem;
}

.booking-form {
    margin-top: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-book {
    background-color: #ff5500;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-book:hover {
    background-color: #e04b00;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 3rem 5%;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #bbb;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links li {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .tour-detail {
        grid-template-columns: 1fr;
    }
}/* Nút Add Tour */
.add-tour-btn {
    background-color: #28a745;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.add-tour-btn:hover {
    background-color: #218838;
    color: white;
}

.add-tour-btn i {
    margin-right: 5px;
}/* Tab điều hướng */
.tour-tabs {
    margin-top: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.tab-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.tab-nav li {
    margin: 0;
}

.tab-nav li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-nav li.active a {
    background-color: #0066cc;
    color: white;
}

.tab-nav li a:hover {
    background-color: #e0e0e0;
}

.tab-content {
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Accordion lịch trình */
.itinerary-accordion, .notes-accordion {
    margin-top: 1rem;
}

.itinerary-day, .note-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.day-header, .note-header {
    background-color: #f9f9f9;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.day-header:hover, .note-header:hover {
    background-color: #f0f0f0;
}

.day-header h3, .note-header h3 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.day-number {
    background-color: #0066cc;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 15px;
}

.day-title {
    flex-grow: 1;
}

.day-meals {
    margin-right: 20px;
    font-size: 0.9rem;
}

.meal-icon {
    background-color: #f8f9fa;
    padding: 3px 10px;
    border-radius: 4px;
    color: #555;
}

.meal-icon i {
    margin-right: 5px;
    color: #0066cc;
}

.toggle-icon {
    transition: transform 0.3s;
}

.day-content, .note-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.day-description {
    padding: 20px;
    line-height: 1.6;
}

.day-accommodation {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px dashed #ddd;
    font-size: 0.9rem;
}

/* Khi mở rộng */
.itinerary-day.active .day-content,
.note-item.active .note-content {
    max-height: 2000px;
    padding: 0 0 20px 0;
}

.itinerary-day.active .toggle-icon,
.note-item.active .toggle-icon {
    transform: rotate(180deg);
}

/* Header mới */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.header-middle {
    flex: 1;
    margin: 0 30px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Ngôn ngữ */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.lang-btn:hover {
    background-color: #f5f5f5;
}

.lang-flag {
    font-size: 1.2rem;
}

.lang-text {
    font-weight: 500;
}

.lang-btn i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.language-switcher:hover .lang-btn i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 150px;
    overflow: hidden;
    z-index: 100;
    display: none;
}

.language-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.lang-dropdown a:hover {
    background-color: #f5f5f5;
}

/* Hotline */
.hotline-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.hotline-box:hover {
    background-color: #e9ecef;
}

.hotline-icon {
    background-color: #0066cc;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotline-info {
    display: flex;
    flex-direction: column;
}

.hotline-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.hotline-number {
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
    font-size: 1rem;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 992px) {
    .header-right {
        display: none;
    }
    
    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
    }
}/* Hiệu ứng khi hover */
.lang-btn {
    transition: all 0.3s ease;
    position: relative;
}

.lang-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

.lang-btn:hover::after {
    width: 100%;
}

/* Hotline animation */
.hotline-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Trang liên hệ */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-hero {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 102, 204, 0.9)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: 40px;
    border-radius: 8px;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-form-container, .contact-info-container {
    flex: 1;
}

.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2, .contact-info-container h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #0066cc;
    position: relative;
    padding-bottom: 10px;
}

.contact-form-container h2::after, .contact-info-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0066cc;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.btn-submit {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0055aa;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin: 0 0 5px;
    color: #0066cc;
    font-size: 1.2rem;
}

.info-content p, .info-content a {
    margin: 0;
    color: #555;
    text-decoration: none;
    display: block;
    line-height: 1.6;
}

.info-content a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #0066cc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #0066cc;
    color: white;
    transform: translateY(-3px);
}

.contact-map {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Menu mobile */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    padding: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        order: 2; /* Đưa nút menu sang bên phải */
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        z-index: 1000;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 30px;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .header-right {
        display: none;
    }
    
    /* Overlay khi menu mở */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .menu-overlay.active {
        display: block;
    }
}
/* Ngăn scroll khi menu mở */
.no-scroll {
    overflow: hidden;
}

/* Hiệu ứng toggle icon */
.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

/* Animation cho menu */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.nav-menu.active {
    animation: slideIn 0.3s ease forwards;
}

/* Đóng menu button (tuỳ chọn) */
.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}
/* Menu mobile */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .no-scroll {
        overflow: hidden;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
        position: relative;
    }
}

/* Tour item styles */
.tour-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tour-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-info {
    padding: 15px;
}

.tour-dates {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #555;
    font-size: 0.9rem;
}

.tour-dates i {
    margin-right: 5px;
    color: #0066cc;
}

.tour-price {
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.1rem;
    margin: 10px 0;
}

.btn {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #0055aa;
}

/* Responsive tour list */
.tour-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .tour-list {
        grid-template-columns: 1fr;
    }
}

/* Badge giảm giá */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: pulse 1.5s infinite;
}

/* Hiệu ứng nhấp nháy cho badge giảm giá */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Định dạng giá */
.tour-price {
    margin: 10px 0;
    font-weight: bold;
}

.tour-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 10px;
}

.tour-price .discounted-price {
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Đảm bảo tour-item có position relative */
.tour-item {
    position: relative;
    /* Các style khác giữ nguyên */
}

/* Hiệu ứng khi có giảm giá */
.tour-item.has-discount {
    border: 2px solid #e74c3c;
}

.tour-item.has-discount .btn {
    background-color: #e74c3c;
}

.tour-item.has-discount .btn:hover {
    background-color: #c0392b;
}



/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.slide-content form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.slide-content input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.slide-content button {
    padding: 15px 25px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.slide-content button:hover {
    background-color: #c0392b;
}

/* Slider Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content form {
        flex-direction: column;
    }
    
    .slide-content input,
    .slide-content button {
        width: 100%;
        border-radius: 4px;
    }
    
    .slide-content button {
        margin-top: 10px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}