/* This file now contains styles specific to the main landing page layout. */

nav {
    flex-direction: column;
  }
  
  .logo-motto-container {
    width: 100%;
  }
  
  .logo-image {
    height: 70px;
  }
  
  .header-motto {
    margin-left: 15px;
    font-size: 16px;
    border-left: 2px solid var(--mena-gold);
    padding-left: 15px;
  }
  
  .nav-links {
    justify-content: flex-end;
    gap: 25px;
    width: 100%;
    /*position: relative;
    top: -10px;
    margin-bottom: -10px;*/
  }

  @media (min-width: 769px) {
    .nav-links {
        position: relative;
        top: -10px;
        margin-bottom: -10px;
    }
  }


/* ===== HERO CAROUSEL ===== */
.hero-carousel, .carousel-container {
    position: relative;
    height: 70vh;
    overflow: hidden;
  }
  
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 1;
  }
  
  .carousel-slide.active {
    opacity: 1;
    z-index: 2;
  }
  
  .slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    /*modification*/
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh; /* Take full height */
    justify-content: center; /* Center the main content */
  }

  .slide-content h1.slide-title {
    line-height: 1.2;
  }

  /* Slide content mod start */
  /* Position the button at a fixed distance from bottom */
.slide-content .btn {
  position: absolute;
  bottom: 50px; /* Fixed distance from bottom (carousel-dots are at 2rem = 32px, so 120px gives good spacing) */
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
  
  /* Keep existing button styles */
  display: inline-block;
  background: linear-gradient(135deg, var(--mena-gold) 0%, #C19B30 100%);
  color: var(--mena-dark-navy);
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: none;
  min-width: 180px; /* Minimum width for consistent button sizing */
  text-align: center; /* Center text within the button */
}

/* Keep button hover effect */
.slide-content .btn:hover {
  background: linear-gradient(135deg, var(--mena-light-gold) 0%, var(--mena-gold) 100%);
  transform: translateX(-50%) translateY(-2px); /* Maintain centering while adding hover lift */
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Ensure the text content doesn't interfere with button positioning */
.slide-content > *:not(.btn) {
  position: relative;
  z-index: 1;
}
  /* Slide content mod end*/
  
  .slide-bg, .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slide-bg {
    z-index: -1;
  }
  
  .slide-overlay, .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
  }
  
  .slide-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }
  
  .slide-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  }
  
  .carousel-controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
  }
  
  .carousel-dots {
    display: flex;
    gap: 0.75rem;
  }
  
  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid white;
  }
  
  .carousel-dot.active {
    background-color: var(--mena-gold);
    border-color: var(--mena-gold);
    transform: scale(1.2);
  }
  
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(15, 18, 26, 0.6);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
  }
  
  .carousel-arrow:hover {
    background-color: var(--mena-gold);
    color: var(--mena-dark-navy);
  }
  
  .carousel-arrow.prev {
    left: 2rem;
  }
  
  .carousel-arrow.next {
    right: 2rem;
  }
  
  /* ===== BUTTONS & SECTIONS ===== */
  .btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--mena-gold) 0%, #C19B30 100%);
    color: var(--mena-dark-navy);
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: none;
  }
  
  .btn:hover {
    background: linear-gradient(135deg, var(--mena-light-gold) 0%, var(--mena-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  }
  
  section {
    padding: 50px 0px 60px;
    background-color: #f9f9f9;
    color: #333;
  }
  
  section:nth-child(even) {
    background-color: #f0f0f0;
  }
  section:nth-of-type(2) {

  }
  
  .section-title {
    color: var(--mena-navy);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 2.5rem;
  }

  section:nth-of-type(2) h2.section-title {
    line-height: 1.3;
  }
  
  .section-title:after, .cta-section h2:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--mena-gold);
  }
  
  .section-title:after {
    bottom: 0;
  }
  
  /* ===== FEATURED ITEMS ===== */
  .featured-items {
    margin-top: 2rem;
  }
  
  .item-row {
    display: flex;
    margin-bottom: 4rem;
    align-items: center;
  }
  
  .item-row:nth-child(even) {
    flex-direction: row-reverse;
  }
  .item-row:last-child {
    margin-bottom: 0;
  }
  
  .item-text {
    flex: 1;
    padding: 2rem;
  }
  
  .item-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }
  
  .item-visual:hover {
    transform: scale(1.03);
  }
  
  .item-visual img, .item-visual .gif-container {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  .item-title {
    color: var(--mena-navy);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 2rem;
  }
  
  .item-description {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .item-cta, .service-link {
    color: var(--mena-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .item-cta {
    margin-top: 15px;
  }
  
  .item-cta:after, .service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--mena-gold);
    transition: width 0.3s ease;
  }
  
  .item-cta:hover, .service-link:hover {
    color: var(--mena-light-gold);
  }
  
  .item-cta:hover:after, .service-link:hover::after {
    width: 100%;
  }
  
  /* ===== VIDEO CONTAINER ===== */
  .video-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  
  /* ===== CTA SECTION ===== */
  .cta-section {
    background-color: #b1b1b1;/*var(--mena-navy)  var(--mena-gold);*/
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    z-index: 1;
  }
  
  .cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(10,17,40,0.97) 0%, rgba(26,30,46,0.97) 100%); */
    z-index: -1;
  }
  
  .cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--mena-dark-navy);
    text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    position: relative;
  }
  
  .cta-section h2:after {
    bottom: -12px;
  }
  
  .cta-section p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 25px auto 2rem;
    max-width: 700px;
    color: #f0f0f0;
    font-weight: 400;
  }
  
  .cta-section .btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    border: none;
    background: linear-gradient(135deg, var(--mena-gold) 0%, #C19B30 100%);
    color: var(--mena-dark-navy);
  }
  
  /* ===== FOOTER ===== */
  footer {
    background: linear-gradient(135deg, rgba(10,17,40,0.97) 0%, rgba(26,30,46,0.97) 100%);
    /* background-color: var(--mena-navy); */
    color: #f9f9f9;
    padding: 3rem 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
  }
  
  .footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--mena-gold);
  }
  
  .footer-column p {
    margin-bottom: 0.8rem;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-column a:hover {
    color: var(--mena-gold);
  }
  
  .footer-logo {
    margin-bottom: 15px;
    display: inline-block;
    padding: 0;
    border-radius: 6px;
  }
  
  .footer-logo-image {
    height: 100px;
    width: auto;
  }
  
  .footer-motto {
    font-size: 18px;
    margin: 15px 0;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--mena-gold);
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: var(--mena-gold);
    color: var(--mena-dark-navy);
    transform: translateY(-2px);
  }
  
  .copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
  }
  
  /* ===== GALLERIES ===== */
  .gallery-item, .media-item {
    transition: transform 0.2s ease;
  }
  
  .gallery-item:hover, .media-item:hover {
    transform: translateY(-2px);
  }
  
  .gallery-thumbnail, .media-item-overlay {
    transition: opacity 0.2s ease;
  }
  
  .gallery-thumbnail:hover {
    opacity: 0.9;
  }
  
  .featured-item {
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 8px;
    background: linear-gradient(135deg, #fff9c4 0%, #ffffff 100%);
  }
  
  .btn-group-vertical .btn {
    opacity: 0.8;
  }
  
  .btn-group-vertical .btn:hover {
    opacity: 1;
  }
  
  .media-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    cursor: pointer;
    aspect-ratio: 1;
  }
  
  .media-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .media-item.selected {
    border: 3px solid #0d6efd;
    transform: scale(0.95);
  }
  
  .media-item img, .media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .media-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 10px;
  }
  
  .media-item:hover .media-item-overlay {
    opacity: 1;
  }
  
  .media-item-info {
    color: white;
    font-size: 0.875rem;
  }
  
  .media-item-badges, .media-item-actions {
    position: absolute;
    top: 8px;
    display: flex;
    gap: 4px;
  }
  
  .media-item-badges {
    left: 8px;
  }
  
  .media-item-actions {
    right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .media-item:hover .media-item-actions {
    opacity: 1;
  }
  
  .media-item-checkbox {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
  }
  
  .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .video-play-button:hover {
    background: rgba(0,0,0,0.9);
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .file-preview-item {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    background: white;
  }
  
  .file-preview-item img {
    max-width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .media-filter.active {
    background-color: var(--bs-primary);
    color: white !important;
    border-color: var(--bs-primary);
  }
  
  #media-grid[data-filter="image"] .media-item[data-type="video"],
  #media-grid[data-filter="video"] .media-item[data-type="image"] {
    display: none;
  }
  
  /* ===== SERVICES ===== */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    perspective: 1200px;
    padding: 2.5rem 0 3rem 2.5rem 0.3rem;
    margin-top: 1.2rem;
  }
  
  .service-card {
    will-change: transform;
    width: 100%;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    /* background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95)); */
    border: 1px solid rgba(26, 30, 46, 0.08);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    /* backdrop-filter: blur(10px); */
  }

  /* Add this new rule */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
  backdrop-filter: blur(10px);
  border-radius: 15px; /* Match the parent's border-radius */
  z-index: -1;
}

  .service-card.image-card {
    height: 500px;
  }
  .service-card.video-card {
    height: 550px;
  }
  
  .service-card[data-position="left"], 
  .service-card[data-position="right"] {
    transform: rotateX(-0.7deg) rotateY(0.5deg) rotateZ(0.05deg);
  }
  
  .service-card.single-item {
    grid-column: 1 / -1;
    width: 48%;
    margin: 0 auto;
    transform: rotateX(0deg) rotateY(0deg);
  }
  
  .service-card:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  }
  
  .service-title {
    color: var(--mena-navy);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  
  .service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .service-video {
    height: 350px;
    border-radius: 5px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    /* flex-shrink: 0; */
  }
  
  .service-card:hover .service-image img {
    transform: scale(1.08);
  }
  
  .service-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1.0rem;
    text-align: left;
    overflow: ellipsis;
  }
  
  .service-link {
    padding: 8px 0;
    margin-top: auto;
  }
  
  .service-link-left { align-self: flex-start; }
  .service-link-right { align-self: flex-end; }
  .service-link-center { align-self: center; }
  
  @keyframes serviceFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }
  
  .service-card[data-position="left"]:not(:hover),
  .service-card[data-position="right"]:not(:hover) {
    animation: serviceFloat 3.2s ease-in-out infinite;
  }
  
  .service-card.single-item:not(:hover) {
    animation: serviceFloat 3.2s ease-in-out infinite;
  }
  
  .service-card:nth-child(1) { animation-delay: 0s; }
  .service-card:nth-child(2) { animation-delay: 0.4s; }
  .service-card:nth-child(3) { animation-delay: 0.8s; }
  .service-card:nth-child(4) { animation-delay: 1.2s; }
  .service-card:nth-child(5) { animation-delay: 1.6s; }
  
  /* ===== PACKAGES SECTION ===== */
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .package-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 500px;
  }
  
  .package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  }
  
  .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mena-gold), var(--mena-light-gold), var(--mena-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .package-card:hover::before {
    transform: scaleX(1);
  }
  
  .package-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .package-card:hover .package-image {
    transform: scale(1.05);
  }
  
  .package-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mena-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .package-message {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
  }
  
  .package-link {
    color: var(--mena-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    padding: 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
  }
  
  .package-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--mena-gold);
    transition: width 0.3s ease;
  }
  
  .package-link:hover {
    color: var(--mena-light-gold);
  }
  
  .package-link:hover::after {
    width: 100%;
  }

  .package-link-left { align-self: flex-start; }
  .package-link-right { align-self: flex-end; }
  .package-link-center { align-self: center; }
  
  .package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
  }
  
  .package-badge.new {
    background: #27ae60;
    border-radius: 20px;
  }
  
  .package-badge.sale {
    background: #f39c12;
    border-radius: 20px;
  }
  
  .package-badge.hot {
    background: #e74c3c;
    border-radius: 20px;
  }
  
  .package-badge.star {
    background: var(--mena-gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    padding: 0;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .nav-links { gap: 15px; }
    .nav-links li a { font-size: 14px; }
  }
  
  @media (max-width: 900px) {
    .item-row, .item-row:nth-child(even) { flex-direction: column; }
    .item-text, .item-visual { width: 100%; }
    .slide-title { font-size: 2.5rem; }
    .slide-description { font-size: 1.2rem; }
    .carousel-arrow { width: 40px; height: 40px; }
    .carousel-arrow.prev { left: 1rem; }
    .carousel-arrow.next { right: 1rem; }
  }
  
  @media (max-width: 768px) {
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--mena-dark-navy);
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        margin: 0 !important;
        gap: 0 !important;
    }
    
    .nav-links.active {
        right: 0 !important;
    }
    .services-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2rem 0;
    }
    .service-card, .service-card.single-item {
      width: 100%;
      height: auto;
      min-height: 450px;
      animation: serviceFloat 3.2s ease-in-out infinite !important;
    }
    .service-card:hover { transform: scale(1.02); }
    
    .packages-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .package-card {
      min-height: 450px;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-column {
        min-width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-column p,
    .footer-column ul li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    footer {
        padding: 2rem 0;
    }
  }
  
  @media (max-width: 480px) {
    .service-card {
      padding: 1.5rem;
      min-height: 400px;
    }
    .service-image { height: 200px; }
    .service-title { font-size: 1.2rem; }
    .service-description { font-size: 0.9rem; }
    .footer-logo-image {
        height: 70px;
    }
    
    .footer-motto {
        font-size: 14px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
  }