/* ===== Responsive Styles ===== */

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .hero-content {
    max-width: 800px;
    padding: 60px;
  }
  
  .flight-booking {
    top: -80px;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-carousel .testimonial-slide {
    display: flex;
    gap: 30px;
    padding: 20px;
  }
  
  .testimonial-card {
    flex: 1;
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium Devices (992px - 1199px) */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  
  .flight-booking {
    padding: 30px;
    top: -60px;
  }
  
  .nav-links {
    gap: 10px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-carousel .testimonial-slide {
    gap: 20px;
    padding: 15px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .specialist-phone {
    font-size: 1.5rem;
  }
}

/* Small Devices (768px - 991px) */
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 100px 30px 30px;
    transition: var(--transition-slow);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-link {
    font-size: 18px;
  }
  
  .navbar.scrolled .nav-links {
    background-color: var(--white);
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2.3rem;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .carousel-controls {
    bottom: 30px;
  }
  
  .flight-booking {
    padding: 25px;
    top: -40px;
  }
  
  .flight-booking h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .testimonials-carousel .testimonial-slide {
    gap: 15px;
    padding: 10px;
  }
  
  .specialists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .specialist-card img {
    width: 120px;
    height: 120px;
  }
  
  .blog-post {
    padding: 20px;
  }
}

/* Extra Small Devices (576px - 767px) */
@media (max-width: 767px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info span {
    display: block;
    margin: 5px 0;
  }
  
  .social-links {
    margin-top: 10px;
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 10px;
  }
  
  .flight-booking {
    padding: 20px;
    top: -30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .trip-type-group {
    grid-column: span 1;
  }
  
  .trip-type-options {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .payment-methods {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-carousel .testimonial-slide {
    flex-direction: column;
    gap: 30px;
  }
  
  .testimonial-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .testimonials-carousel .carousel-controls {
    top: 40%;
  }
  
  .specialists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra Extra Small Devices (Below 576px) */
@media (max-width: 575px) {
  .logo img {
    height: 40px;
  }
  
  .hero {
    min-height: 400px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .carousel-controls {
    bottom: 20px;
  }
  
  .flight-booking {
    padding: 15px;
    top: -20px;
  }
  
  .flight-booking h2 {
    font-size: 1.3rem;
  }
  
  .form-group input,
  .form-group select {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    margin-top: 10px;
    justify-content: center;
  }
  
  .testimonial-image {
    width: 80px;
    height: 80px;
  }
  
  .specialists-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  
  .specialist-card img {
    width: 150px;
    height: 150px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    margin-top: 10px;
    justify-content: center;
  }
  
  .btn-cookie {
    margin-right: 10px;
    margin-left: 10px;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
}

/* Special Cases for Very Small Screens */
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .nav-links {
    width: 90%;
  }
  
  .flight-booking {
    padding: 10px;
  }
  
  .btn-request-quote {
    padding: 8px 15px;
    font-size: 14px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .specialist-phone {
    font-size: 1.3rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 350px;
    height: 100vh;
  }
  
  .hero-content {
    top: 45%;
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .hero-buttons .btn {
    padding: 8px 15px;
    font-size: 14px;
  }
  
  .navbar {
    padding: 10px 0;
  }
  
  .navbar.scrolled {
    padding: 8px 0;
  }
  
  .specialists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-carousel .testimonial-slide {
    flex-direction: row;
    gap: 15px;
  }
}

/* High DPI/Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img {
    height: 55px;
  }
  
  .hero-content h1 {
    font-weight: 600;
  }
  
  .btn {
    font-weight: 500;
  }
  
  .feature-icon {
    font-size: 32px;
  }
  
  .specialist-card img {
    border-width: 6px;
  }
  
  .testimonial-image img {
    border-width: 4px;
  }
}

/* Print Styles */
@media print {
  .top-bar,
  .navbar,
  .carousel-controls,
  .cookie-consent,
  .back-to-top {
    display: none !important;
  }
  
  .hero {
    height: auto;
    min-height: 0;
  }
  
  .hero-content {
    position: static;
    transform: none;
    color: var(--text-color);
    padding: 20px 0;
    background-color: transparent !important;
  }
  
  .hero-content h1 {
    color: var(--text-color);
    text-shadow: none;
  }
  
  .flight-booking {
    box-shadow: none;
    top: 0;
  }
  
  .footer {
    background-color: transparent !important;
    color: var(--text-color) !important;
    padding: 20px 0 !important;
  }
  
  .footer-column h4 {
    color: var(--text-color) !important;
  }
  
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }
  
  .btn, .feature-card, .testimonial-card {
    break-inside: avoid;
  }
  
  .testimonials-carousel .testimonial-slide {
    flex-direction: column !important;
  }
  
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
}
/* CONTACT PAGE RESPONSIVE STYLES */

@media (max-width: 1200px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container,
  .contact-info-card,
  .office-card {
    padding: 30px;
  }
  
  .contact-hero {
    padding: 100px 0 60px;
  }
  
  .contact-main-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
  
  .map-embed {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 80px 0 40px;
  }
  
  .contact-hero h1 {
    font-size: 1.8rem;
  }
  
  .contact-form-container,
  .contact-info-card,
  .office-card {
    padding: 25px;
  }
  
  .contact-main-section {
    padding: 40px 0;
  }
  
  .contact-cta-section {
    padding: 60px 0;
  }
  
  .contact-cta-section h2 {
    font-size: 1.8rem;
  }
  
  .map-embed {
    height: 300px;
  }
  
  .modal-content {
    padding: 30px 20px;
  }
  
  .modal h3 {
    font-size: 1.5rem;
  }
}

/* Responsive Mega Menu */
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .mega-menu-column {
    margin-bottom: 1rem;
  }
  
  .dropdown > .nav-link::after {
    content: '+';
    font-family: sans-serif;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .dropdown.active > .nav-link::after {
    content: '-';
  }
}

/* ===== Blog Post Responsive Styles ===== */

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .blog-post-container .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .blog-post-content {
    width: calc(100% - 400px);
  }
  
  .blog-sidebar {
    width: 350px;
    position: sticky;
    top: 100px;
  }
}

/* Medium Devices (992px - 1199px) */
@media (max-width: 1199px) {
  .blog-post-hero h1 {
    font-size: 2.5rem;
  }
  
  .blog-post-content {
    padding: 30px;
  }
  
  .blog-sidebar {
    width: 300px;
    padding-left: 30px;
  }
  
  .attraction-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* Small Devices (768px - 991px) */
@media (max-width: 991px) {
  .blog-post-hero {
    padding: 100px 0 40px;
  }
  
  .blog-post-hero h1 {
    font-size: 2.2rem;
  }
  
  .blog-post-container .container {
    flex-direction: column;
  }
  
  .blog-post-content {
    width: 100%;
    margin-bottom: 50px;
  }
  
  .blog-sidebar {
    width: 100%;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .post-section h2 {
    font-size: 1.6rem;
  }
  
  .feature-list li {
    flex-direction: column;
    gap: 10px;
  }
  
  .feature-list i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
}

/* Extra Small Devices (576px - 767px) */
@media (max-width: 767px) {
  .blog-post-hero {
    padding: 80px 0 30px;
    margin-top: 0;
  }
  
  .blog-post-hero h1 {
    font-size: 1.8rem;
  }
  
  .author {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .blog-post-content {
    padding: 25px;
  }
  
  .image-gallery {
    grid-template-columns: 1fr;
  }
  
  .strategy-cards,
  .transport-options,
  .savings-tips {
    grid-template-columns: 1fr;
  }
  
  .attraction-cards {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
  
  .price-comparison table {
    font-size: 0.9rem;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Extra Extra Small Devices (Below 576px) */
@media (max-width: 575px) {
  .blog-post-hero h1 {
    font-size: 1.6rem;
  }
  
  .breadcrumbs {
    font-size: 0.8rem;
  }
  
  .post-section {
    margin-bottom: 40px;
  }
  
  .post-section h2 {
    font-size: 1.4rem;
  }
  
  .content-highlights {
    padding: 15px;
  }
  
  .tip-box {
    padding: 15px;
  }
  
  .budget-calculator {
    padding: 20px;
  }
  
  .cta-box {
    padding: 20px;
  }
  
  .comments-section {
    margin: 40px 0;
  }
  
  .comment-form {
    padding: 20px;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .blog-post-hero {
    padding: 60px 0 30px;
  }
  
  .blog-post-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .blog-post-hero .meta {
    margin-bottom: 15px;
    font-size: 1rem;
  }
  
  .author {
    margin-top: 15px;
  }
}

/* ===== About Page Responsive Styles ===== */

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .about-hero h1 {
    font-size: 3.5rem;
  }
  
  .overview-content h2 {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Medium Devices (992px - 1199px) */
@media (max-width: 1199px) {
  .about-hero h1 {
    font-size: 2.8rem;
  }
  
  .overview-grid {
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-members {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* Small Devices (768px - 991px) */
@media (max-width: 991px) {
  .about-hero {
    padding: 120px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.3rem;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
  }
  
  .our-strategy .container {
    grid-template-columns: 1fr;
  }
  
  .strategy-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-year {
    left: 0 !important;
    right: auto !important;
  }
  
  .timeline-item::after {
    left: 20px !important;
  }
  
  .team-members {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }
  
  .about-cta h2 {
    font-size: 2rem;
  }
}

/* Extra Small Devices (576px - 767px) */
@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 40px;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .team-members {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .about-cta {
    padding: 80px 0;
  }
  
  .about-cta h2 {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Extra Extra Small Devices (Below 576px) */
@media (max-width: 575px) {
  .about-hero {
    padding: 80px 0 30px;
  }
  
  .about-hero h1 {
    font-size: 1.8rem;
  }
  
  .experience-badge {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
  
  .experience-badge span {
    font-size: 0.7rem;
  }
  
  .experience-badge strong {
    font-size: 1.2rem;
  }
  
  .team-tabs {
    flex-direction: column;
    border-bottom: none;
  }
  
  .tab-button {
    border-bottom: 1px solid var(--gray-medium);
  }
  
  .tab-button.active::after {
    display: none;
  }
  
  .team-members {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-cta h2 {
    font-size: 1.6rem;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .about-hero {
    padding: 60px 0 30px;
  }
  
  .about-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .about-hero p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* ===== Services Page Responsive Styles ===== */

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .services-hero h1 {
    font-size: 3.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonial-slide {
    padding: 30px;
  }
}

/* Medium Devices (992px - 1199px) */
@media (max-width: 1199px) {
  .services-hero h1 {
    font-size: 2.5rem;
  }
  
  .section-intro h2 {
    font-size: 2rem;
  }
  
  .content-grid {
    gap: 30px;
    padding: 30px;
  }
  
  .additional-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Devices (768px - 991px) */
@media (max-width: 991px) {
  .services-hero {
    padding: 120px 0 60px;
  }
  
  .services-hero h1 {
    font-size: 2.2rem;
  }
  
  .services-hero p {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .content-image {
    height: 300px;
    order: -1;
  }
  
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-slide {
    flex-direction: column;
  }
  
  .testimonial-card {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Extra Small Devices (576px - 767px) */
@media (max-width: 767px) {
  .services-hero {
    padding: 100px 0 40px;
  }
  
  .services-hero .hero-content {
    padding: 30px;
  }
  
  .services-hero h1 {
    font-size: 1.8rem;
  }
  
  .section-intro h2 {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-image {
    height: 220px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .details-header {
    padding: 15px 20px;
  }
  
  .details-header h3 {
    font-size: 1.1rem;
  }
  
  .details-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 15px;
  }
  
  .additional-services-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Extra Extra Small Devices (Below 576px) */
@media (max-width: 575px) {
  .services-hero {
    padding: 80px 0 30px;
  }
  
  .services-hero h1 {
    font-size: 1.6rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .content-text h4 {
    font-size: 1.3rem;
  }
  
  .carousel-control {
    width: 40px;
    height: 40px;
  }
  
  .services-cta h2 {
    font-size: 2rem;
  }
  
  .services-cta p {
    font-size: 1rem;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .services-hero {
    padding: 60px 0 30px;
  }
  
  .services-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .services-hero p {
    font-size: 1rem;
  }
  
  .service-image {
    height: 200px;
  }
}

/* ===== Packing List Responsive Styles ===== */

@media (max-width: 992px) {
  .method-card {
    flex-direction: column;
  }
  
  .method-card img {
    width: 100%;
    height: 250px;
  }
  
  .tech-essentials {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .toiletry-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .clothing-grid {
    grid-template-columns: 1fr;
  }
  
  .shoe-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-essentials {
    grid-template-columns: 1fr;
  }
  
  .toiletry-categories {
    grid-template-columns: 1fr;
  }
  
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .luggage-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .shoe-cards {
    grid-template-columns: 1fr;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .luggage-options {
    grid-template-columns: 1fr;
  }
  
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-comparison table {
    font-size: 0.9rem;
  }
  
  .method-content h4 {
    font-size: 1.2rem;
  }
}

/* ===== Blog Section Responsive Styles ===== */

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  }
  
  .featured-blog-post .post-title {
    font-size: 2rem;
  }
}

/* Medium Devices (992px - 1199px) */
@media (max-width: 1199px) {
  .featured-blog-post .post-content {
    padding: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

/* Small Devices (768px - 991px) */
@media (max-width: 991px) {
  .featured-blog-post {
    flex-direction: column;
  }
  
  .featured-blog-post .post-image {
    height: 350px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-post-card .post-image {
    height: 250px;
  }
}

/* Extra Small Devices (576px - 767px) */
@media (max-width: 767px) {
  .blog-section {
    padding: 4rem 0;
  }
  
  .featured-blog-post .post-image {
    height: 300px;
  }
  
  .featured-blog-post .post-content {
    padding: 1.5rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post-card .post-image {
    height: 220px;
  }
  
  .blog-cta {
    padding: 1.5rem;
  }
}

/* Extra Extra Small Devices (Below 576px) */
@media (max-width: 575px) {
  .blog-section .section-title {
    font-size: 1.8rem;
  }
  
  .featured-blog-post .post-image {
    height: 250px;
  }
  
  .featured-blog-post .post-title {
    font-size: 1.5rem;
  }
  
  .blog-post-card .post-image {
    height: 200px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .featured-blog-post .post-image {
    height: 250px;
  }
  
  .blog-post-card .post-image {
    height: 180px;
  }
}

/* ===== Destinations Page Responsive Styles ===== */

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .destinations-hero h1 {
    font-size: 3.5rem;
  }
  
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Medium Devices (992px - 1199px) */
@media (max-width: 1199px) {
  .destinations-hero h1 {
    font-size: 2.8rem;
  }
  
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Devices (768px - 991px) */
@media (max-width: 991px) {
  .destinations-hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .destinations-hero h1 {
    font-size: 2.3rem;
  }
  
  .destinations-hero p {
    font-size: 1.1rem;
  }
  
  .filter-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-group {
    width: 100%;
  }
  
  .filter-group select {
    width: 100%;
  }
  
  .btn-filter-reset {
    width: 100%;
    text-align: center;
  }
  
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* Extra Small Devices (576px - 767px) */
@media (max-width: 767px) {
  .destinations-hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .destinations-hero h1 {
    font-size: 2rem;
  }
  
  .featured-grid,
  .destinations-grid,
  .inspiration-grid {
    grid-template-columns: 1fr;
  }
  
  .card-image {
    height: 200px;
  }
  
  .destination-inspiration {
    padding: 60px 0;
  }
  
  .tab-buttons {
    flex-direction: column;
  }
  
  .tab-button {
    width: 100%;
  }
  
  .destinations-cta {
    padding: 80px 0;
  }
  
  .destinations-cta h2 {
    font-size: 2rem;
  }
}

/* Extra Extra Small Devices (Below 576px) */
@media (max-width: 575px) {
  .destinations-hero h1 {
    font-size: 1.8rem;
  }
  
  .destinations-hero p {
    font-size: 1rem;
  }
  
  .search-box input {
    padding: 12px 15px;
  }
  
  .featured-destinations,
  .all-destinations,
  .why-book,
  .destination-inspiration {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .destinations-cta h2 {
    font-size: 1.8rem;
  }
  
  .destinations-cta p {
    font-size: 1rem;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .destinations-hero {
    height: 100vh;
  }
  
  .destinations-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .destinations-hero p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .featured-card,
  .destination-card {
    height: 100%;
  }
  
  .card-image {
    height: 150px;
  }
}
/* ===== Transfers Page Responsive Styles ===== */

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .transfers-hero-content {
    padding: 80px;
  }
  
  .transfers-hero h1 {
    font-size: 3rem;
  }
  
  .calculator-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .meet-assist-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* Medium Devices (992px - 1199px) */
@media (max-width: 1199px) {
  .transfers-hero h1 {
    font-size: 2.5rem;
  }
  
  .calculator-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .meet-assist-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .testimonial-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Devices (768px - 991px) */
@media (max-width: 991px) {
  .transfers-hero {
    min-height: 500px;
  }
  
  .transfers-hero h1 {
    font-size: 2.2rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calculator-container {
    grid-template-columns: 1fr;
  }
  
  .results-placeholder {
    padding: 40px 20px;
  }
  
  .fleet-tabs {
    flex-wrap: wrap;
  }
  
  .meet-assist-content {
    grid-template-columns: 1fr;
  }
  
  .meet-assist-image {
    order: -1;
  }
  
  .testimonial-slide {
    grid-template-columns: 1fr;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
  }
}

/* Extra Small Devices (576px - 767px) */
@media (max-width: 767px) {
  .transfers-hero {
    min-height: 400px;
  }
  
  .transfers-hero h1 {
    font-size: 1.8rem;
  }
  
  .transfers-hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form-group {
    width: 100%;
  }
  
  .passenger-selector,
  .luggage-selector {
    width: 100%;
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  
  .service-features li {
    font-size: 0.9rem;
  }
  
  .testimonial-card {
    flex-direction: column;
  }
  
  .testimonial-image {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .transfers-cta .cta-buttons {
    flex-direction: column;
  }
  
  .transfers-cta .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Extra Extra Small Devices (Below 576px) */
@media (max-width: 575px) {
  .transfers-hero {
    min-height: 350px;
  }
  
  .transfers-hero h1 {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .calculator-form {
    padding: 20px;
  }
  
  .vehicle-card {
    flex-direction: column;
  }
  
  .vehicle-image {
    width: 100%;
  }
  
  .service-price {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-book-service {
    margin-top: 15px;
    width: 100%;
  }
  
  .faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .transfers-hero {
    min-height: 300px;
  }
  
  .transfers-hero-content {
    padding: 30px;
  }
  
  .transfers-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .benefit-card {
    padding: 15px;
  }
  
  .calculator-container {
    grid-template-columns: 1fr;
  }
}

/* Specific Transfer Calculator Responsive Styles */
@media (max-width: 991px) {
  .transfer-calculator-section {
    padding: 60px 0;
  }
  
  .calculator-results {
    padding: 30px;
  }
  
  .vehicle-option {
    flex-direction: column;
  }
  
  .vehicle-option-image {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .transfer-calculator-section {
    padding: 40px 0;
  }
  
  .calculator-form h2 {
    font-size: 1.5rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .results-content h3 {
    font-size: 1.3rem;
  }
  
  .total-price {
    font-size: 1.1rem;
  }
}

/* Fleet Section Responsive Adjustments */
@media (max-width: 1199px) {
  .fleet-section {
    padding: 80px 0;
  }
  
  .vehicle-card {
    flex-direction: column;
  }
  
  .vehicle-image {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .fleet-section {
    padding: 60px 0;
  }
  
  .fleet-tabs {
    flex-direction: column;
  }
  
  .tab-button {
    width: 100%;
    margin-bottom: 5px;
  }
  
  .vehicle-specs {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .vehicle-specs span {
    margin-bottom: 5px;
  }
}

/* Meet & Assist Section Responsive */
@media (max-width: 991px) {
  .meet-assist-section {
    padding: 60px 0;
  }
  
  .meet-assist-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .meet-assist-section {
    padding: 40px 0;
  }
  
  .service-features li {
    margin-bottom: 8px;
  }
  
  .service-price .price {
    font-size: 1.5rem;
  }
}

/* Testimonials Responsive */
@media (max-width: 1199px) {
  .testimonials-carousel .testimonial-slide {
    padding: 15px;
  }
  
  .testimonial-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .transfers-testimonials {
    padding: 60px 0;
  }
  
  .testimonial-image {
    width: 70px;
    height: 70px;
  }
  
  .client-info h4 {
    font-size: 1rem;
  }
}

/* FAQ Section Responsive */
@media (max-width: 991px) {
  .transfers-faq {
    padding: 60px 0;
  }
  
  .faq-cta {
    flex-direction: column;
  }
  
  .btn-contact {
    margin-top: 15px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .transfers-faq {
    padding: 40px 0;
  }
  
  .faq-question {
    padding: 12px 15px;
  }
  
  .faq-answer {
    padding: 15px;
  }
}

/* CTA Section Responsive */
@media (max-width: 767px) {
  .transfers-cta {
    padding: 60px 0;
  }
  
  .transfers-cta h2 {
    font-size: 1.8rem;
  }
  
  .transfers-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .transfers-cta {
    padding: 40px 0;
  }
  
  .transfers-cta h2 {
    font-size: 1.6rem;
  }
}


/* ===== Safari & Beach Page Responsive Styles ===== */

@media (max-width: 1200px) {
  .safari-beach-hero h1 {
    font-size: 3rem;
  }
  
  .overview-container {
    gap: 30px;
  }
  
  .highlight-item {
    gap: 10px;
  }
  
  .price-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 992px) {
  .safari-beach-hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .safari-beach-hero h1 {
    font-size: 2.5rem;
  }
  
  .safari-beach-hero p {
    font-size: 1.1rem;
  }
  
  .overview-container {
    flex-direction: column;
  }
  
  .overview-image,
  .overview-content {
    width: 100%;
  }
  
  .overview-highlights {
    grid-template-columns: 1fr 1fr;
  }
  
  .itinerary-tabs {
    flex-wrap: wrap;
  }
  
  .day-image {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  
  .accommodation-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .inclusions-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .testimonial-slide {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .safari-beach-hero {
    height: 60vh;
    min-height: 450px;
    margin-top: 0;
  }
  
  .safari-beach-hero h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .overview-highlights {
    grid-template-columns: 1fr;
  }
  
  .itinerary-tab {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .day-header h3 {
    font-size: 1.1rem;
  }
  
  .day-content-inner {
    padding: 20px;
  }
  
  .accommodation-image {
    height: 180px;
  }
  
  .price-cards {
    grid-template-columns: 1fr;
  }
  
  .package-booking {
    bottom: 20px;
    right: 20px;
  }
  
  .booking-form {
    width: 300px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .safari-beach-hero {
    height: 50vh;
  }
  
  .safari-beach-hero h1 {
    font-size: 1.8rem;
  }
  
  .safari-beach-hero p {
    font-size: 1rem;
  }
  
  .itinerary-tabs {
    flex-direction: column;
  }
  
  .itinerary-tab {
    width: 100%;
  }
  
  .inclusions-container {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    width: 280px;
    padding: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 400px) {
  .safari-beach-hero h1 {
    font-size: 1.5rem;
  }
  
  .package-booking {
    right: 10px;
    bottom: 10px;
  }
  
  .booking-form {
    width: 260px;
    padding: 15px;
  }
  
  .price-amount {
    font-size: 2rem;
  }
}

