/* Global Styles */
:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #f39c12;
    --accent-color: #27ae60;
    --text-color: #333;
    --text-light: #666;
    --light-gray: #f4f4f4;
    --medium-gray: #e0e0e0;
    --dark-gray: #999;
    --white: #fff;
    --black: #000;
    --danger: #e74c3c;
    --success: #2ecc71;
    --warning: #f1c40f;
    --max-width: 1200px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
    --transition: all 0.3s ease;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.tertiary-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--medium-gray);
}

.tertiary-btn:hover {
    background-color: var(--light-gray);
    color: var(--text-color);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

.cart-link {
    display: flex;
    align-items: center;
}

.cart-link i {
    margin-right: 5px;
}

#cart-count {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.hero .container {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--white);
}

.advantages h2 {
    text-align: center;
    margin-bottom: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.advantage-item .icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.advantage-item h3 {
    margin-bottom: 15px;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .count {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-item .label {
    font-size: 1rem;
    color: var(--text-light);
}

.cta {
    text-align: center;
    margin-top: 20px;
}

/* About Tours Section */
.about-tours {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-tours h2 {
    text-align: center;
    margin-bottom: 40px;
}

.tour-info {
    max-width: 800px;
    margin: 0 auto;
}

.tour-info h3 {
    margin-top: 25px;
    color: var(--primary-dark);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--white);
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
}

.products-grid, .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.product-card .price {
    padding: 0 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-card .description {
    padding: 10px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    height: 80px;
    overflow: hidden;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-bottom: 15px;
}

.product-features span {
    margin-right: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.product-features i {
    margin-right: 5px;
    color: var(--primary-color);
}

.product-card .buttons {
    padding: 15px 20px 20px;
    display: flex;
    justify-content: space-between;
}

.product-card .buttons .btn {
    flex: 1;
    margin: 0 5px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 0 15px;
    box-shadow: var(--box-shadow);
}

.quote {
    font-style: italic;
    position: relative;
    padding: 20px 30px;
}

.quote::before, .quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
}

.quote::before {
    top: -10px;
    left: 0;
}

.quote::after {
    bottom: -30px;
    right: 0;
}

.author {
    margin-top: 20px;
}

.author p {
    margin-bottom: 5px;
}

.stars i {
    color: var(--secondary-color);
}

.review-cta {
    margin-top: 40px;
}

#review-btn {
    cursor: pointer;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--secondary-color);
}

.newsletter-form button:hover {
    background-color: #e67e22;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    width: 120px;
    margin-bottom: 15px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

.social-icons a {
    color: var(--white);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: none;
    z-index: 1000;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 50px auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
}

.review-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    color: var(--medium-gray);
    font-size: 1.5rem;
    padding: 0 5px;
    transition: var(--transition);
}

.rating label:hover, .rating label:hover ~ label, .rating input:checked ~ label {
    color: var(--secondary-color);
}

/* Product Detail Page */
.product-hero {
    background-color: var(--light-gray);
    padding: 40px 0;
}

.product-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-breadcrumb a {
    color: var(--text-light);
}

.product-breadcrumb a:hover {
    color: var(--primary-color);
}

.product-details {
    padding: 60px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-info h1 {
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
}

.product-rating i {
    color: var(--secondary-color);
    margin-right: 2px;
}

.product-rating span {
    margin-left: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

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

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-cta .btn {
    flex: 1;
}

.review-link {
    align-self: center;
    margin-left: 15px;
    font-size: 0.9rem;
}

.product-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--medium-gray);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.day-by-day {
    margin-top: 20px;
}

.day {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--medium-gray);
}

.day:last-child {
    border-bottom: none;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.inclusion {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.inclusion i {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.inclusion h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.not-included {
    background-color: #f8f4f4;
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--danger);
}

.not-included h3 {
    color: var(--danger);
    margin-bottom: 10px;
}

.not-included ul {
    list-style: disc;
    margin-left: 20px;
}

.details-section {
    margin-bottom: 25px;
}

.reviews-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.overall-rating {
    text-align: center;
}

.big-rating {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.rating-breakdown {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-bar span {
    width: 60px;
}

.rating-bar .bar {
    flex: 1;
    background-color: var(--light-gray);
    height: 10px;
    border-radius: 5px;
    margin: 0 10px;
    overflow: hidden;
}

.rating-bar .fill {
    background-color: var(--secondary-color);
    height: 100%;
}

.review-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer .name {
    font-weight: 600;
}

.reviewer .date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.related-products h2 {
    margin-bottom: 30px;
    text-align: center;
}

/* About Page */
.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1, .page-hero p {
    color: var(--white);
}

.about-hero {
    background-image: linear-gradient(rgba(52, 152, 219, 0.8), rgba(52, 152, 219, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
}

.about-intro {
    padding: 80px 0;
}

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

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

.philosophy-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
}

.philosophy-item .icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-stats {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
}

.team-section {
    padding: 80px 0;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.team-member p:first-of-type {
    font-weight: 500;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-dark);
}

.about-testimonials {
    background-color: var(--white);
}

.certifications {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.certifications h2 {
    text-align: center;
    margin-bottom: 40px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.certification {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.certification .icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.careers {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.careers h2 {
    color: var(--white);
}

.careers-content {
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Page */
.contact-hero {
    background-image: linear-gradient(rgba(52, 152, 219, 0.8), rgba(52, 152, 219, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
}

.contact-options {
    padding: 80px 0;
}

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

.contact-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card .icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.contact-form-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.form-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    display: inline;
    margin-bottom: 0;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    display: none;
    padding: 15px 0;
}

.contact-newsletter {
    background-image: linear-gradient(rgba(52, 152, 219, 0.9), rgba(52, 152, 219, 0.9)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
}

/* Cart Page */
.cart-hero {
    background-image: linear-gradient(rgba(52, 152, 219, 0.8), rgba(52, 152, 219, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
}

.cart-section {
    padding: 60px 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-items {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.cart-empty {
    text-align: center;
    padding: 40px 0;
}

.empty-icon {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--medium-gray);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 70px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
}

.cart-item-controls button {
    background: none;
    border: 1px solid var(--medium-gray);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-controls button:hover {
    background-color: var(--light-gray);
}

.cart-item-controls .quantity {
    padding: 0 10px;
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    gap: 15px;
}

.remove-item {
    color: var(--danger);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1rem;
}

.cart-summary {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
    margin-bottom: 20px;
}

.continue-shopping {
    text-align: center;
    margin-bottom: 20px;
}

.cart-notes {
    font-size: 0.9rem;
    color: var(--text-light);
}

.recommended-tours {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.recommended-tours h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.cart-features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature {
    padding: 20px;
}

.feature .icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Checkout Page */
.checkout-hero {
    background-image: linear-gradient(rgba(52, 152, 219, 0.8), rgba(52, 152, 219, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
}

.checkout-section {
    padding: 60px 0;
}

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.progress-step.active .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.progress-step.active .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 3px;
    background-color: var(--medium-gray);
    margin: 0 15px;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.checkout-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--medium-gray);
    margin-bottom: 20px;
}

.field-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

.terms-section {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.terms-checkbox {
    margin-bottom: 15px;
}

.terms-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.order-summary {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.checkout-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.checkout-item-image {
    width: 70px;
    height: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.checkout-item-price {
    font-size: 0.9rem;
    color: var(--text-light);
}

.summary-totals {
    margin-top: 20px;
}

.order-notes {
    margin-top: 30px;
}

.note {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.note i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Success Page */
.success-section {
    padding: 80px 0;
    text-align: center;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.success-icon {
    color: var(--success);
    font-size: 5rem;
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

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

.step-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.additional-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
    text-align: left;
}

.info-item {
    display: flex;
    gap: 15px;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    align-items: center;
}

.info-item .icon {
    color: var(--primary-color);
    font-size: 2rem;
}

.info-content h3 {
    margin-bottom: 5px;
}

.info-content p {
    margin-bottom: 5px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.recommendations-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

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

.recommendation {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.recommendation .icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.share-section {
    padding: 60px 0;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.share-btn {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    color: var(--white);
    transition: var(--transition);
}

.share-btn svg, .share-btn i {
    margin-right: 8px;
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.email {
    background-color: #757575;
}

.facebook:hover {
    background-color: #2d4373;
}

.twitter:hover {
    background-color: #0c85d0;
}

.email:hover {
    background-color: #5e5e5e;
}

.follow-us {
    margin-top: 40px;
    text-align: center;
}

.follow-us .social-icons {
    justify-content: center;
    margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .checkout-content {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

    .cart-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 20px;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 15px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .advantages-grid, .philosophy-grid, .certifications-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input, .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius);
    }

    .newsletter-form input {
        margin-bottom: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .additional-info, .social-share {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-cta, .form-actions, .success-actions {
        flex-direction: column;
        gap: 10px;
    }

    .review-link {
        margin: 15px 0 0;
    }

    .reviews-summary {
        flex-direction: column;
    }

    .checkout-progress {
        flex-direction: column;
        gap: 20px;
    }

    .progress-line {
        width: 3px;
        height: 20px;
    }
}
