/* === Import Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Poppins:wght@500;600;700&display=swap');

/* === CSS Variables === */
:root {
    --primary-color: #ff6d28; /* Orange */
    --secondary-color: #004a99; /* Darker Blue for contrast/prices */
    --accent-color: #007bff; /* Standard Blue for links/buttons if needed */
    --text-color: #333;
    --text-light: #666;
    --background-color: #fff;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --border-color-light: #eee;
    --header-height: 80px; /* Adjust as needed */

    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Poppins', sans-serif; /* For headings */

    --content-width: 1200px;
    --content-width-narrow: 960px;

    --box-shadow-light: 0 2px 5px rgba(0, 0, 0, 0.08);
    --box-shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);

    --transition-speed: 0.3s;
}

/* === Base & Reset === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Base font size */
    scroll-behavior: smooth;
    line-height: 1.6;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Utility Classes === */
.content-wrapper {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.content-wrapper-narrow {
    max-width: var(--content-width-narrow);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-title {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.bold-price {
    color: var(--secondary-color);
    font-weight: 700;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* Prevent line breaks */
}

/* === Links & Buttons === */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover, a:focus {
    color: darkorange;
    text-decoration: underline;
}

.button-base { /* Base styles for buttons */
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    text-decoration: none !important; /* Override link underline */
    white-space: nowrap;
}

.button-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.button-primary:hover, .button-primary:focus {
    background-color: darkorange;
    border-color: darkorange;
    color: #fff;
}

.button-secondary {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.button-secondary:hover, .button-secondary:focus {
    background-color: #003a75;
    border-color: #003a75;
    color: #fff;
}

.button-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button-outline:hover, .button-outline:focus {
    background-color: var(--primary-color);
    color: #fff;
}

/* === Header === */
.site-header-wrapper {
    width: 100%;
    border-bottom: 4px solid var(--primary-color);
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow-light);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.site-header .logo img {
    max-height: 60px; /* Adjust size */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Spacing between links */
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    text-decoration: none;
}

.nav-link::after { /* Underline effect */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after, .nav-link:focus::after {
    width: 100%;
}

.nav-link:hover, .nav-link:focus {
    color: darkorange; /* Slight hover change */
    text-decoration: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
}

/* === Hero Slider === */
.hero-slider-section {
    /* No extra padding needed if slider fills the space */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 75vh; /* Adjust height as needed */
    overflow: hidden;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex; /* Use flex to center content */
    justify-content: center;
    align-items: center;
}

.slider-image.active {
    opacity: 1;
    visibility: visible;
    z-index: 1; /* Ensure active slide is on top */
}

/* Background Images */
.img-1 { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(images/kairo1.jpg); }
.img-2 { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(images/sakkala.jpg); }
.img-3 { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(images/hur1.jpg); }
.img-4 { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(images/safari1.jpeg); }
.img-5 { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(images/luxor4.jpg); }


.slide-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    border-radius: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s; /* Delay animation */
}

.slider-image.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}
.slide-content h2 span { /* For Paradise Insel subtitle */
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.slide-button {
    /* Inherit from .button-base */
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid #fff; /* White border */
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
}

.slide-button:hover, .slide-button:focus {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}

/* Slider Navigation (Arrows & Dots) */
.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    transition: background-color var(--transition-speed) ease;
}
.slider-nav button:hover, .slider-nav button:focus {
    background-color: rgba(255, 255, 255, 1);
}
.slider-nav button i {
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1; /* Center icon */
}
.prev-btn { left: 1.5rem; }
.next-btn { right: 1.5rem; }

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color var(--transition-speed) ease, transform 0.2s ease;
}

.slider-dots .dot.active {
    background-color: #fff;
    transform: scale(1.1);
}

/* === Social Follow Widget === */
.social-follow-section {
    background-color: var(--light-gray); /* Subtle background */
    padding: 1rem 0;
    margin-top: -30px; /* Overlap slightly with slider */
    position: relative; /* Needed for z-index or overlap */
    z-index: 5;
}

.social-icons-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background-color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px; /* Pill shape */
    box-shadow: var(--box-shadow-medium);
    width: fit-content; /* Adjust to content size */
}

.social-icons-widget p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    margin-right: 0.5rem; /* Space before icons */
}

.social-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
    transition: color var(--transition-speed) ease, transform 0.2s ease;
}
.social-icon:hover i, .social-icon:focus i {
    transform: scale(1.1);
}
.social-icon:hover .fa-facebook, .social-icon:focus .fa-facebook { color: #1877F2; }
.social-icon:hover .fa-whatsapp, .social-icon:focus .fa-whatsapp { color: #25D366; }
.social-icon:hover .fa-instagram, .social-icon:focus .fa-instagram { color: #E4405F; }
.social-icon:hover .fa-telegram, .social-icon:focus .fa-telegram { color: #0088cc; }


/* === Welcome Section === */
.welcome-section {
    background-color: var(--light-gray); /* Slight contrast */
}
.welcome-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Adjust ratio */
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2rem;
}
.welcome-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow-medium);
}
.welcome-text h1 {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.welcome-text h1 span {
    color: var(--primary-color);
}
.welcome-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-light);
}
.welcome-text .highlight-text {
    font-size: 1.1rem;
    background-color: #ffeadd; /* Light orange background */
    padding: 0.8rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.welcome-section hr {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 2.5rem 0;
}

.welcome-guide {
    text-align: center;
}
.welcome-guide h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.welcome-guide > p { /* Target only the main paragraph */
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    color: var(--text-light);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}
.contact-item a {
    color: var(--secondary-color); /* Use secondary for contact links */
    font-weight: 500;
}
.contact-item a:hover, .contact-item a:focus {
    color: var(--primary-color);
}

/* === Info Sections (Kairo, Luxor, etc.) === */
.info-section {
    /* General padding applied by .section-padding */
}
.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Layout Variations */
.layout-image-left .info-image { order: 1; }
.layout-image-left .info-text { order: 2; }
.layout-image-right .info-image { order: 2; }
.layout-image-right .info-text { order: 1; }
.layout-image-center {
    grid-template-columns: 1fr; /* Single column */
    text-align: center;
}
.layout-image-center .info-image {
    max-width: 700px; /* Limit image width */
    margin: 0 auto 2rem auto; /* Center image */
}

.info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow-medium);
}
.info-text h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.info-text h2 span {
    color: var(--primary-color);
}
.info-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.05rem;
}
.text-center {
    text-align: center;
}

/* === Ausflüge Section (Trip Cards Slider) === */
.ausfluege-section {
    background-color: var(--light-gray);
}

.trip-cards-slider-container {
    /* Default: Show 3 cards */
    max-width: calc(3 * 330px + 2 * 1rem); /* 3 cards + 2 gaps */
    overflow: hidden;
    position: relative;
    margin: 0 auto; /* Center the container */
    padding: 0 1rem; /* Add padding for edge cards */
}

.trip-cards-slider {
    display: flex;
    /* Width calculated based on number of cards * card width */
    /* Let's assume 16 cards as per HTML */
    width: calc(16 * (330px + 1rem)); /* Card width + gap */
    transition: transform 0.5s ease-in-out;
    margin-left: -0.5rem; /* Adjust for gap */
}

.trip-card {
    background: var(--background-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    width: 330px; /* Fixed card width */
    flex-shrink: 0; /* Prevent cards from shrinking */
    margin: 0 0.5rem; /* Gap between cards */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    position: relative; /* For category tag */
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-medium);
}

.category-tag {
    position: absolute;
    top: 1rem;
    left: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.3rem 0.8rem 0.3rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 0 4px 4px 0;
    z-index: 2;
}

.trip-card-image {
    width: 100%;
    height: 200px; /* Fixed image height */
    overflow: hidden;
}
.trip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, cropping if needed */
    transition: transform 0.4s ease;
}
.trip-card:hover .trip-card-image img {
    transform: scale(1.05); /* Slight zoom on hover */
}

.trip-card-content {
    padding: 1.25rem;
    flex-grow: 1; /* Allow content to fill space */
}
.trip-card-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.trip-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem; /* Space between paragraphs if multiple */
}

.trip-card-footer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border-color-light);
    margin-top: auto; /* Push footer to bottom */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.trip-card-footer .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}
.button-rep { /* Specific button for cards */
    /* Inherit from .button-base */
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}
.button-rep:hover, .button-rep:focus {
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
}

/* Trip Slider Controls */
.trip-slider-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}
.trip-slider-dots {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 8px;
}
.trip-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background-color var(--transition-speed);
}
.trip-slider-dot.active {
    background: var(--primary-color);
}
.trip-slider-buttons {
    display: flex;
    gap: 1rem;
}
.trip-slider-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}
.trip-slider-btn i { font-size: 1.1rem; }
.trip-slider-btn:hover {
    background-color: darkorange;
}

/* === Cars Section === */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 2rem;
}
.car-card {
    background-color: var(--background-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    text-align: center;
    padding: 1.5rem;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.car-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}
.car-card img {
    max-width: 80%; /* Control image size within card */
    height: 150px; /* Fixed height */
    object-fit: contain; /* Fit image without distortion */
    margin-bottom: 1rem;
}
.car-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.car-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === Contact Section === */
.contact-section {
    background-color: var(--light-gray);
}
.contact-header {
    text-align: center;
    margin-bottom: 3rem; /* Increased margin for better spacing */
}
.contact-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.contact-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* MODIFY THIS RULE */
.contact-content-grid {
    /* display: grid; */ /* Remove or comment out */
    /* grid-template-columns: 1.5fr 1fr; */ /* Remove or comment out */
    /* gap: 3rem; */ /* Remove or comment out, gap is less relevant now */

    display: flex;          /* ADDED */
    justify-content: center; /* ADDED - This centers the child horizontally */
    align-items: start;      /* ADDED (Optional) - Aligns item to the top */
}

/* No changes needed for .contact-form-container styles if you remove the form */

/* ADD max-width to the info container for better appearance */
.contact-info-container {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow-light);
    max-width: 550px; /* ADDED - Adjust as needed */
    width: 100%;      /* ADDED - Makes it responsive */
    /* Existing styles below */
    /* ... */
}

.contact-info-container h4 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center; /* Optional: Center the heading */
}
.contact-info-container .contact-item {
    display: flex; /* Keep using flex for items inside the box */
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color-light);
}
.contact-info-container .contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.contact-info-container .icon {
    font-size: 1.5rem; /* Smaller icons here */
    width: 30px; /* Align text */
    text-align: center;
    color: var(--primary-color); /* Ensure icon color */
}
.contact-info-container hr { /* Remove default hrs if using border-bottom */
    display: none;
}
.contact-info-container a {
    color: var(--secondary-color); /* Keep links clear */
}
.contact-info-container a:hover,
.contact-info-container a:focus {
    color: var(--primary-color);
}
.contact-info-container p { /* For the address line */
    color: var(--text-color);
    margin: 0; /* Reset paragraph margin if needed */
}


/* Adjust responsiveness if the grid change affected it */
@media (max-width: 992px) {
    /* ... other rules ... */

    /* Ensure contact section still looks good */
    .contact-content-grid {
       /* No changes needed here, flex centering works */
    }

    .contact-info-container {
        max-width: 90%; /* Adjust max-width for tablets if needed */
    }
}

@media (max-width: 768px) {
   /* ... other rules ... */
    .contact-info-container {
        padding: 1.5rem; /* Slightly less padding on mobile */
    }
}
/* === Payment Section === */
.payment-info {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow-light);
    text-align: center;
}
.payment-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
}
.payment-info .highlight-text {
    font-size: 1.1rem;
    background-color: #e6f3ff; /* Light blue background */
    padding: 0.8rem;
    border-radius: 5px;
    border-left: 4px solid var(--secondary-color);
    color: var(--text-color); /* Normal text color */
}
.tel-link {
    font-weight: 700;
    color: var(--secondary-color);
}

/* === Footer === */
.site-footer {
    background-color: var(--text-color); /* Dark background */
    color: #ccc; /* Light text */
    padding: 2.5rem 0;
    margin-top: 4rem; /* Space before footer */
}
.footer-contact {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.footer-contact span {
    font-weight: 700;
}
.footer-contact a {
    color: #fff; /* White link */
    font-weight: 700;
}
.footer-contact a:hover, .footer-contact a:focus {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #444; /* Separator line */
    padding-top: 1.5rem;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 1rem;
}
.copyright {
    font-size: 0.9rem;
    color: #aaa;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social .social-icon i {
    font-size: 1.5rem;
    color: #aaa; /* Slightly lighter than footer text */
}
/* Use same hover colors as widget */
.footer-social .social-icon:hover .fa-facebook, .footer-social .social-icon:focus .fa-facebook { color: #1877F2; }
.footer-social .social-icon:hover .fa-whatsapp, .footer-social .social-icon:focus .fa-whatsapp { color: #25D366; }
.footer-social .social-icon:hover .fa-instagram, .footer-social .social-icon:focus .fa-instagram { color: #E4405F; }
.footer-social .social-icon:hover .fa-telegram, .footer-social .social-icon:focus .fa-telegram { color: #0088cc; }

/* === Responsive Design === */

/* Medium Devices (Tablets, etc.) */
@media (max-width: 992px) {
    html { font-size: 15px; }

    .section-title { font-size: 2.2rem; }
    .content-wrapper { padding-left: 1rem; padding-right: 1rem; }

    /* Header */
    .menu-toggle { display: block; z-index: 1001; }
    .nav-bar {
        display: none; /* Hide by default */
        position: absolute;
        top: calc(var(--header-height) + 4px); /* Below header border */
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        box-shadow: var(--box-shadow-medium);
        border-top: 1px solid var(--border-color-light);
        z-index: 999;
    }
    .nav-bar.active { display: block; }
    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    .nav-link {
        display: block;
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid var(--border-color-light);
    }
    .nav-link::after { display: none; } /* Remove underline effect on mobile */
    .nav-links li:last-child .nav-link { border-bottom: none; }

    /* Welcome & Info Sections */
    .welcome-intro, .info-content {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 2rem;
        text-align: center; /* Center text when stacked */
    }
    /* Reset order for stacking */
    .layout-image-left .info-image, .layout-image-right .info-image { order: 1; }
    .layout-image-left .info-text, .layout-image-right .info-text { order: 2; }
    .info-image { margin: 0 auto; }

    /* Trip Cards Slider: Show 2 cards */
    .trip-cards-slider-container {
        max-width: calc(2 * 330px + 1 * 1rem); /* 2 cards + 1 gap */
    }

    /* Contact */
    .contact-content-grid {
        grid-template-columns: 1fr; /* Stack columns */
    }
    .contact-info-container { margin-top: 2rem; }

    /* Footer */
    .footer-bottom { justify-content: center; text-align: center; }
    .copyright { order: 2; width: 100%; }
    .footer-social { order: 1; margin-bottom: 1rem; }
}

/* Small Devices (Phones) */
@media (max-width: 768px) {
    html { font-size: 14px; }
    .section-padding { padding-top: 3rem; padding-bottom: 3rem; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }

    /* Hero Slider */
    .slider-container { height: 65vh; }
    .slide-content h2 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }
    .slide-button { padding: 0.7rem 1.5rem; font-size: 1rem; }
    .slider-nav button { width: 40px; height: 40px; }
    .slider-nav button i { font-size: 1.2rem; }
    .prev-btn { left: 1rem; }
    .next-btn { right: 1rem; }
    .slider-dots .dot { width: 10px; height: 10px; }

    /* Social Widget */
     .social-icons-widget {
         flex-direction: column;
         gap: 0.5rem;
         padding: 0.8rem 1.5rem;
         border-radius: 10px;
     }
     .social-icons-widget p { margin: 0 0 0.5rem 0; }

    /* Trip Cards Slider: Show 1 card */
    .trip-cards-slider-container {
        max-width: 330px; /* Width of 1 card */
        padding: 0; /* No padding needed */
    }
    .trip-card { width: 300px; } /* Slightly smaller card on mobile */
     .trip-cards-slider {
        width: calc(16 * (300px + 1rem)); /* Adjust width calculation */
    }
    .trip-cards-slider-container {
        max-width: 300px;
    }


    /* Cars */
    .cars-grid { grid-template-columns: 1fr; } /* Stack car cards */

    /* Contact Form */
    #contact-form .form-row { flex-direction: column; gap: 0; }
    #contact-form .form-row input:not(:last-child) { margin-bottom: 1rem; }

}

@media (max-width: 480px) {
    /* Header */
    .site-header .logo img { max-height: 50px; }
    .menu-toggle { font-size: 1.6rem; }

    /* Hero Slider */
    .slider-container { height: 60vh; }
     .slide-content h2 { font-size: 1.6rem; }
    .slide-content p { font-size: 0.9rem; }
    .slide-button { padding: 0.6rem 1.2rem; font-size: 0.9rem; }

    /* Info Text */
    .welcome-text p, .info-text p { font-size: 1rem; }

     /* Trip Card */
    .trip-card-content h3 { font-size: 1.1rem; }
    .trip-card-content p { font-size: 0.9rem; }
    .trip-card-footer .price { font-size: 1.2rem; }
    .button-rep { padding: 0.4rem 1rem; font-size: 0.85rem; }

    /* Contact Form */
    .contact-info-container { padding: 1.5rem; }

}