/* 
* Dubai Adventure Tours - Main Stylesheet
* Version: 1.0.0
* Last Updated: 2024
*/

/* ========== GLOBAL STYLES ========== */
:root {
    --primary-color: #1e7b85;
    --primary-dark: #155a61;
    --primary-light: #59b3bd;
    --accent-color: #ffa500;
    --accent-dark: #e08500;
    --text-color: #333333;
    --text-light: #666666;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #999999;
    --white: #ffffff;
    --black: #000000;
    --success-color: #4caf50;
    --error-color: #f44336;
    --info-color: #2196f3;
    --warning-color: #ff9800;
    --border-radius: 4px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-secondary,
.btn-tertiary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

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

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

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

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

/* ========== HEADER ========== */
header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

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

nav ul {
    display: flex;
    gap: 30px;
}

nav li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

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

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

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

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

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

#cart-count {
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    position: absolute;
    top: -5px;
    right: -10px;
}

/* ========== HERO SECTION ========== */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(30, 123, 133, 0.8), rgba(30, 123, 133, 0.8)), url('https://via.placeholder.com/1920x800');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== BENEFITS SECTION ========== */
.benefits {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.benefit-card .icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    text-align: center;
}

.stat {
    padding: 20px;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

.cta {
    text-align: center;
}

/* ========== ABOUT TOURS SECTION ========== */
.about-tours {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-tours h2, .about-tours h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-tours p {
    margin-bottom: 1.5rem;
}

/* ========== PRODUCTS SECTION ========== */
.products {
    padding: 80px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.product-card {
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--white);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn-secondary,
.product-actions .btn-primary {
    padding: 8px 16px;
    font-size: 0.9rem;
    flex: 1;
}

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

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

.newsletter p {
    margin-bottom: 2rem;
    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;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

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

#newsletter-msg {
    margin-top: 10px;
    font-weight: 600;
}

/* ========== VIEW COUNTER ========== */
.view-counter {
    padding: 10px 0;
    background-color: var(--light-gray);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

#view-count {
    font-weight: 700;
}

/* ========== FOOTER ========== */
footer {
    background-color: #222;
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-column p {
    color: #ccc;
    margin-bottom: 20px;
}

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

.footer-column ul li a {
    color: #ccc;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #444;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

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

address p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

address p svg {
    margin-top: 3px;
    flex-shrink: 0;
}

address p a {
    color: #ccc;
}

address p a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links li a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: var(--primary-light);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 15px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail {
    padding: 60px 0;
}

.breadcrumbs {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

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

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

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

.product-image-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-info-detailed h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

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

.stars {
    color: var(--accent-color);
    display: flex;
}

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

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price-current {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-light);
    margin-bottom: 0;
}

.discount-badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-availability {
    margin-bottom: 20px;
}

.in-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--success-color);
    font-weight: 600;
}

.product-short-desc {
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
    padding: 20px 0;
    margin-bottom: 20px;
}

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

.variant-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.variant-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-option {
    padding: 8px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    background: none;
    transition: var(--transition);
}

.variant-option:hover, .variant-option.selected {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}

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

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 44px;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.quantity-selector input {
    width: 50px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--medium-gray);
    border-right: 1px solid var(--medium-gray);
}

.add-to-cart-detail, .buy-now {
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.tab-headers {
    display: flex;
    border-bottom: 2px solid var(--medium-gray);
    margin-bottom: 30px;
}

.tab-header {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: -2px;
    color: var(--text-light);
}

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

.tab-content {
    display: none;
}

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

.tab-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tab-content p {
    margin-bottom: 15px;
}

.itinerary-item, .timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.itinerary-time, .timeline-number {
    flex: 0 0 100px;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-number {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.itinerary-details h3, .timeline-content h3 {
    margin-bottom: 10px;
}

.includes-section {
    margin-bottom: 30px;
}

.includes-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.includes-list, .excludes-list, .info-list {
    padding-left: 30px;
}

.includes-list li, .excludes-list li, .info-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.includes-list li::before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.excludes-list li::before {
    content: '✕';
    color: var(--error-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.info-list li::before {
    content: 'ℹ';
    color: var(--info-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.review-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.review-average {
    text-align: center;
}

.average-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.average-stars {
    color: var(--accent-color);
    margin-bottom: 5px;
}

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

.review-breakdown {
    flex: 1;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.breakdown-item .stars {
    flex: 0 0 60px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: var(--medium-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--accent-color);
}

.percentage {
    flex: 0 0 40px;
    text-align: right;
    color: var(--text-light);
}

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

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

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

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

.review-rating {
    margin-bottom: 10px;
    color: var(--accent-color);
}

.review-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.related-products {
    margin-bottom: 60px;
}

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

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

.related-product {
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.related-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

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

.related-product h3 {
    font-size: 1.1rem;
    margin: 15px 15px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-product .price {
    margin: 0 15px 10px;
}

.related-product .btn-secondary {
    display: block;
    margin: 0 15px 15px;
    text-align: center;
}

/* ========== NOTIFICATION ========== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: none;
    z-index: 1000;
    animation: fadeInOut 3s forwards;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content p {
    margin-bottom: 0;
    font-weight: 600;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ========== CART PAGE ========== */
.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-header .breadcrumbs {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.page-header .breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumbs a:hover {
    color: var(--white);
}

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

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

.cart-empty svg {
    margin: 0 auto 20px;
    color: var(--text-light);
}

.cart-empty h2 {
    margin-bottom: 10px;
}

.cart-empty p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.cart-items {
    margin-bottom: 40px;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--medium-gray);
    font-weight: 700;
}

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

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-product-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

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

.cart-quantity input {
    width: 50px;
    text-align: center;
    margin: 0 5px;
}

.cart-remove button {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
}

.cart-summary {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 400px;
    margin-left: auto;
}

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

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-bottom: none;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.cart-actions a {
    text-align: center;
}

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

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

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

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

.featured-item:hover {
    transform: translateY(-5px);
}

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

.featured-info {
    padding: 20px;
}

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

.featured-info .price {
    margin-bottom: 15px;
}

.featured-info .btn-secondary {
    width: 100%;
    text-align: center;
}

/* ========== CHECKOUT PAGE ========== */
.checkout-section {
    padding: 60px 0;
}

.checkout-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

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

.checkout-form h2, .checkout-summary h2 {
    margin-bottom: 30px;
}

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

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

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

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

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 5px;
}

.checkout-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

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

.checkout-item-image {
    flex: 0 0 80px;
    height: 60px;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

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

.summary-totals {
    margin-top: 30px;
    margin-bottom: 30px;
}

.checkout-secure {
    margin-bottom: 30px;
}

.secure-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
}

.checkout-secure p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.secure-icons {
    display: flex;
    gap: 20px;
    color: var(--text-light);
}

.need-help {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.need-help h3 {
    margin-bottom: 10px;
}

.need-help p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.need-help p:last-child {
    margin-bottom: 0;
}

.need-help p svg {
    vertical-align: middle;
    margin-right: 5px;
}

/* ========== SUCCESS PAGE ========== */
.success-section {
    padding: 80px 0;
}

.success-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    color: var(--white);
}

.success-message h1 {
    margin-bottom: 20px;
    color: var(--success-color);
}

.success-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    margin-bottom: 30px;
}

.next-steps ul {
    text-align: left;
}

.next-steps li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content {
    flex: 1;
}

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

.step-content p {
    color: var(--text-light);
}

.contact-info {
    margin-bottom: 60px;
    text-align: left;
}

.contact-info h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-method svg {
    color: var(--primary-color);
}

.contact-method h3 {
    margin-bottom: 5px;
}

.success-actions {
    margin-top: 30px;
}

.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;
    max-width: 1000px;
    margin: 0 auto;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    padding: 60px 0;
}

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

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

.contact-form h2, .contact-info h2 {
    margin-bottom: 20px;
}

.contact-form p, .contact-info p {
    margin-bottom: 30px;
}

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

.form-success svg {
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.info-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    flex: 1;
}

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

.social-connect {
    margin-top: 40px;
}

.social-connect h2 {
    margin-bottom: 15px;
}

.social-connect p {
    margin-bottom: 20px;
}

.social-connect .social-icons {
    justify-content: flex-start;
}

.social-connect .social-icons a {
    width: 44px;
    height: 44px;
}

.registration-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.registration-info h3 {
    margin-bottom: 15px;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ========== ABOUT PAGE ========== */
.about-intro {
    padding: 60px 0;
}

.about-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.about-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-features h4 {
    margin-bottom: 5px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.about-stats {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 15px;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-values {
    padding: 100px 0 60px;
    background-color: var(--light-gray);
}

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

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

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

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

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

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

.team-member:hover {
    transform: translateY(-5px);
}

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

.team-member h3, .team-member p {
    padding: 0 20px;
}

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

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

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .social-icons {
    justify-content: center;
    margin-bottom: 20px;
}

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

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

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

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

.testimonial-rating {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    border-top: 1px solid var(--medium-gray);
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

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

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

.partners-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.partners-section p {
    text-align: center;
    margin-bottom: 40px;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner {
    padding: 15px 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text-color);
}

.cta-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

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

.cta-section .btn-primary {
    background-color: var(--accent-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--accent-dark);
}

/* ========== EXPERIENCE TIMELINE ========== */
.experience-timeline {
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-light);
    z-index: 0;
}

.timeline-content h3 {
    color: var(--primary-color);
}

.timeline-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

.timeline-content ul li {
    margin-bottom: 5px;
    list-style-type: disc;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .product-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-columns, .contact-columns, .about-columns {
        grid-template-columns: 1fr;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 1fr 0.5fr;
    }
    
    .cart-price {
        display: none;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid, .product-grid, .related-products-grid, .featured-grid, .recommended-grid, .team-grid, .testimonials-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 0.5fr;
    }
    
    .cart-quantity {
        display: none;
    }
    
    .cart-product {
        gap: 10px;
    }
    
    .cart-product img {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .product-tabs {
        overflow-x: auto;
    }
    
    .tab-headers {
        min-width: 600px;
    }
    
    .itinerary-item, .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-number {
        margin-bottom: 10px;
    }
}
