:root {
    --color-violet: #513897;
    --color-blue: #2b83be;
    --color-grey: #d8e1dd; /* Cool Grey I approximation */
    --color-charcoal: #3c3c3c;
    --color-white: #ffffff;
    --color-black: #000000;

    /* Font setup - using system sans-serif as placeholder */
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Placeholder for 29LT Bukra */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-charcoal);
    line-height: 1.6;
    background-color: var(--color-white);
    direction: ltr; /* Default to LTR, adjust if needed for Arabic */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: normal; /* Adjust based on Bukra weights if available */
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem; /* Adjust as needed */
    color: var(--color-violet);
}

h2 {
     font-size: 1.1rem;
     color: var(--color-violet);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 0.5rem;
}

h3 {
    font-size: 2rem;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Header & Navigation */
header {
    background-color: var(--color-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Slightly softer shadow initially */
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0; /* Increase initial padding slightly */
    transition: padding 0.3s ease-out, box-shadow 0.3s ease-out; /* Add transitions */
}

/* Add scrolled state for header */
header.scrolled {
    padding: 8px 0; /* Reduced padding when scrolled */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Enhance shadow when scrolled */
}

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

.logo {
    height: 60px; /* Initial LARGER height */
    transition: height 0.3s ease-out; /* Add transition */
}

/* Logo size when header is scrolled */
header.scrolled .logo {
    height: 40px; /* Smaller height */
}

nav ul {
    list-style: none;
    display: flex;
}

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

nav ul li a {
    color: var(--color-charcoal);
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

/* Basic underline effect for nav links (optional) */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--color-violet);
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
    background-color: var(--color-violet);
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold; /* Adjust based on Bukra */
}

.btn:hover {
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Enhance shadow on hover */
}

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

.btn-primary:hover {
    filter: brightness(90%); /* Slightly darken */
    /* Ensure text remains white - already set by .btn-primary */
}

.btn-secondary {
    background-color: var(--color-blue);
    color: var(--color-white);
    border: 2px solid var(--color-blue);
    margin-left: 10px;
}

.btn-secondary:hover {
    filter: brightness(90%); /* Slightly darken */
    /* Ensure text remains white - already set by .btn-secondary */
}

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

.btn-outline:hover {
    background-color: var(--color-violet);
    color: var(--color-white);
}


/* Hero Section */
.hero {
    padding: 80px 0;
    /* Add background image/gradient if needed */
    background-color: #f8f9fa; /* Light background */
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center; /* Or adjust alignment */
}

.hero-image img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-height: 400px; /* Limit max height */
}

.hero-buttons {
    margin-top: 20px;
}

/* New Footer Styling */
footer {
    opacity: 0; /* Start hidden */
    transition: opacity 0.8s ease-out; /* Add transition for fade-in */
    background-color: var(--color-violet);
    color: var(--color-white);
    padding-top: 50px; /* Add padding only to the top */
    margin-top: 60px; /* Space above footer */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 40px;
    padding-bottom: 40px; /* Space before bottom bar */
}

.footer-about .footer-logo {
    max-width: 180px; /* Adjust logo size */
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* Attempt to make the logo white */
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-grey); /* Use light grey */
    margin-bottom: 20px;
}

.footer-about address {
    font-style: normal;
    line-height: 1.7;
}

.footer-about address p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--color-grey);
}

.footer-about address i {
    margin-right: 10px;
    width: 15px; /* Align icons */
    text-align: center;
    color: var(--color-blue); /* Accent color for icons */
}

.footer-about address a {
    color: var(--color-grey);
    text-decoration: none;
}

.footer-about address a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-blue); /* Accent line */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2; /* Display links in two columns */
    column-gap: 20px;
}

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

.footer-links a {
    color: var(--color-grey);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-social a {
    color: var(--color-grey);
    font-size: 1.8rem; /* Social icon size */
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-blue);
}

.footer-bottom {
    background-color: darken(var(--color-violet), 10%); /* Darker shade for bottom bar */
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-grey);
}

/* Animations (Placeholder) */
/* Example: Fade in sections on scroll */
section {
    opacity: 0;
}

/* Apply Animations when Sections become visible */
section.visible {
    opacity: 1; /* Ensure final state is visible */
    animation-fill-mode: forwards; /* Keep final state */
    animation-duration: 0.8s; /* Default duration */
    animation-timing-function: ease-out; /* Default easing */
}

/* Assign specific animations */
#about.visible {
    animation-name: fadeInUp;
}

#how-it-works.visible {
     animation-name: zoomIn;
     /* Adjust duration if needed */
     /* animation-duration: 1s; */
}

#packages.visible {
     animation-name: fadeInLeft;
}

/* Note: The #home section (hero) is usually visible on load, so */
/*       applying an entrance animation might require JS or */
/*       different handling if you want it to animate in. */

/* Vision & Mission Section Styling */
.about-section {
    text-align: center; /* Center align section content if needed */
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr; /* Start with single column */
    gap: 40px;
    margin-top: 2rem; /* Space from top of section */
    text-align: left; /* Align text left within grid items */
}

.vm-item {
    display: flex;
    align-items: flex-start; /* Align icon top with text */
    gap: 20px;
}

.vm-icon {
    font-size: 2.5rem; /* Icon size */
    color: var(--color-violet); /* Icon color */
    flex-shrink: 0;
    width: 50px; /* Ensure consistent spacing */
    text-align: center;
}

.vm-content h3 {
    margin-top: 0; /* Reset margin from default h3 */
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
    font-size: 1.5rem;
}

.vm-content p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Layout for wider screens */
@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on desktop */
        gap: 60px;
    }
}

.vm-icon:hover {
    transform: scale(1.1); /* Slightly enlarge icon on hover */
    transition: transform 0.3s ease;
}

/* Keyframe Animations for Sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Content Sections */
.about-section,
.how-it-works-section {
    padding: 60px 0;
}

.about-section h3 {
    margin-top: 2rem; /* Add space above Vision/Mission */
    font-size: 1.5rem; /* Slightly smaller than main section titles */
}

.services-alt h3 {
     margin-top: 2rem;
     font-size: 1.5rem;
}

.services-alt h4 {
    font-size: 1.1rem;
    font-weight: bold; /* Make sub-steps bold */
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Alternating Backgrounds for Sections */
.about-section {
    background-color: #f8f9fa;
}

/* White Background Sections */
.how-it-works-section {
    background-color: var(--color-white);
}

/* How it Works Steps (Inside Accordion) */
.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 3rem; /* More space below section title */
    color: var(--color-charcoal); /* Maybe use charcoal for this title */
    font-size: 2rem;
    text-transform: none; /* Override default uppercase for h2 */
}

.how-it-works-steps {
    display: flex;
    flex-direction: column; /* Start vertical for mobile-first */
}

.step {
    transition: opacity 0.5s ease-out 0.2s, transform 0.5s ease-out 0.2s; /* Add base transition for stagger */
    opacity: 0; /* Start hidden for stagger */
    transform: translateY(20px); /* Start slightly lower for stagger */
    display: flex;
    align-items: flex-start; /* Align icon top with text */
    position: relative;
    margin-bottom: 20px; /* Space between vertical steps */
}

.step:last-child {
    margin-bottom: 0;
}

.step-icon-container {
    display: flex;
    flex-direction: column; /* Icon above path */
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-icon {
    background-color: var(--color-violet);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 10px; /* Space between icon and path */
    flex-shrink: 0; /* Prevent the container from shrinking */
}

.step-icon i {
    line-height: 1; /* Ensure icon itself doesn't add extra height */
}

/* Hide connector arrow by default */
.step-connector-arrow {
    display: none;
}

.step-content h4 {
    margin-top: 0; /* Reset margin */
    margin-bottom: 0.5rem;
    color: var(--color-charcoal); /* Match regular text maybe */
    font-size: 1.1rem;
}

.step-content p {
    margin-bottom: 0; /* Reset margin */
    color: #6c757d;
}

/* Stagger animation for steps when section is visible */
section.visible .step {
    opacity: 1;
    transform: translateY(0);
}

/* Apply individual delays */
section.visible .step:nth-child(1) { transition-delay: 0.3s; }
section.visible .step:nth-child(2) { transition-delay: 0.5s; }
section.visible .step:nth-child(3) { transition-delay: 0.7s; }
section.visible .step:nth-child(4) { transition-delay: 0.9s; }

/* Desktop layout for steps */
@media (min-width: 768px) {
    .how-it-works-steps {
        flex-direction: row; /* Horizontal layout */
        justify-content: space-between;
    }

    .step {
        flex-direction: column; /* Stack icon/path/text vertically */
        align-items: center; /* Center step content horizontally */
        text-align: center;
        margin-bottom: 0;
        flex: 1; /* Distribute space evenly */
        padding: 0 10px;
    }

    .step-icon-container {
        flex-direction: row; /* Icon beside path */
        align-items: center;
        margin-right: 0; /* Reset margin */
        margin-bottom: 15px; /* Space below icon/path */
        width: 100%; /* Allow path to span */
    }

    .step-icon {
        margin-bottom: 0; /* Reset margin */
        margin-right: 0; /* Reset margin */
    }

    /* Style and show the arrow connector on desktop */
    .step-connector-arrow {
        display: inline-block;
        font-size: 2rem; /* Adjust arrow size */
        color: var(--color-violet);
        margin: 0 15px; /* Space around the arrow */
        flex-grow: 1; /* Allow arrow container to fill space */
        text-align: center; /* Center the arrow icon */
        line-height: 50px; /* Align vertically with icons */
    }
}

/* Packages Section */
.packages-section {
    background-color: var(--color-white); /* Or alternate like #f8f9fa */
}

.packages-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    font-size: 2rem;
    text-transform: none;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #6c757d;
}

.packages-grid {
    display: flex; /* Change to flex */
    overflow-x: auto; /* Enable horizontal scroll */
    padding: 20px 0 40px 0; /* Add padding for visual spacing and scroll */
    gap: 25px;

    /* Hide scrollbar */
    scroll-behavior: smooth; /* Enable smooth programmatic scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */

    /* Optional: Snap scrolling */
    scroll-snap-type: x mandatory;
}

.packages-grid.active-drag {
    cursor: grabbing; /* Indicate dragging is active */
    cursor: -webkit-grabbing;
}

.packages-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.package-card {
    border: 1px solid var(--color-grey);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: var(--color-white);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    position: relative; /* Needed for popular tag */
    overflow: hidden; /* Needed for popular tag */
    flex: 0 0 300px; /* Set a fixed base width for cards */
    scroll-snap-align: center; /* Snap items to center */
    opacity: 0.7; /* Make non-centered items slightly faded */
    transform: scale(0.9); /* Make non-centered items slightly smaller */
}

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

/* Style for the centered card */
.package-card.is-center {
    opacity: 1;
    transform: scale(1.05); /* Scale up the centered card */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--color-violet); /* Optional: Highlight border */
}

/* Adjust popular card border for centered state */
.package-card.popular.is-center {
     border-color: var(--color-blue);
}

/* Popular Tag */
.package-card.popular {
    border-width: 2px;
}

.package-header {
    padding: 25px 20px;
    border-bottom: 1px solid var(--color-grey);
}

.package-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--color-charcoal);
    line-height: 1.3;
}

.package-header h3 strong {
    display: block;
    font-size: 1.8rem;
    color: var(--color-violet);
    font-weight: bold; /* Ensure boldness */
}

.package-bags {
    color: #6c757d;
    font-size: 0.9rem;
}

.package-body {
    padding: 25px 20px;
    flex-grow: 1; /* Allow body to grow */
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.package-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.package-features i {
    color: var(--color-violet);
    margin-right: 10px;
    margin-top: 3px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.package-price small {
    font-size: 1rem;
    font-weight: normal;
    color: #6c757d;
}

.package-includes {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0;
}

.package-footer {
    padding: 25px 20px;
    background-color: #f8f9fa; /* Slightly different footer bg */
    border-top: 1px solid var(--color-grey);
}

.package-footer .btn {
    width: 100%; /* Make button full width */
}

/* Responsive (Basic Example) */
@media (max-width: 768px) {
    nav.container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
        margin-bottom: 10px;
    }
    nav ul li {
        margin: 0 10px;
    }
    .hero-content, .services-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-image, .service-image {
        margin-top: 30px;
    }
    .service-image {
         order: -1; /* Move image above text on small screens */
    }
    h1 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.8rem;
    }

    /* Adjust services grid layout for mobile */
    .services-content-grid {
        grid-template-columns: 1fr; /* Stack columns */
    }

    .service-visual {
        order: -1; /* Move image above text */
        margin-bottom: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr; /* Stack columns */
    }

    /* Center footer content on mobile */
    .footer-about,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    /* Center the underline for footer headings */
    .footer-links h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Adjust link list columns for center alignment */
    .footer-links ul {
        columns: 1; /* Single column for easier centering */
        /* Optional: If you kept 2 columns, centering list items is harder */
    }

     .footer-about address p {
        display: flex; /* Use flex for icon centering */
        justify-content: center; /* Center icon + text block */
        align-items: flex-start;
    }

     .footer-about address i {
         margin-top: 3px; /* Align icon better */
     }
}

/* Content Sections */
.about-section,
.how-it-works-section {
    padding: 60px 0;
}

.about-section h3 {
    margin-top: 2rem; /* Add space above Vision/Mission */
    font-size: 1.5rem; /* Slightly smaller than main section titles */
}

.services-alt h3 {
     margin-top: 2rem;
     font-size: 1.5rem;
}

.services-alt h4 {
    font-size: 1.1rem;
    font-weight: bold; /* Make sub-steps bold */
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Alternating Backgrounds for Sections */
.about-section {
    background-color: #f8f9fa;
}

/* White Background Sections */
.how-it-works-section {
    background-color: var(--color-white);
}

/* How it Works Steps (Inside Accordion) */
.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 3rem; /* More space below section title */
    color: var(--color-charcoal); /* Maybe use charcoal for this title */
    font-size: 2rem;
    text-transform: none; /* Override default uppercase for h2 */
}

.how-it-works-steps {
    display: flex;
    flex-direction: column; /* Start vertical for mobile-first */
}

.step {
    transition: opacity 0.5s ease-out 0.2s, transform 0.5s ease-out 0.2s; /* Add base transition for stagger */
    opacity: 0; /* Start hidden for stagger */
    transform: translateY(20px); /* Start slightly lower for stagger */
    display: flex;
    align-items: flex-start; /* Align icon top with text */
    position: relative;
    margin-bottom: 20px; /* Space between vertical steps */
}

.step:last-child {
    margin-bottom: 0;
}

.step-icon-container {
    display: flex;
    flex-direction: column; /* Icon above path */
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-icon {
    background-color: var(--color-violet);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 10px; /* Space between icon and path */
    flex-shrink: 0; /* Prevent the container from shrinking */
}

.step-icon i {
    line-height: 1; /* Ensure icon itself doesn't add extra height */
}

/* Hide connector arrow by default */
.step-connector-arrow {
    display: none;
}

.step-content h4 {
    margin-top: 0; /* Reset margin */
    margin-bottom: 0.5rem;
    color: var(--color-charcoal); /* Match regular text maybe */
    font-size: 1.1rem;
}

.step-content p {
    margin-bottom: 0; /* Reset margin */
    color: #6c757d;
}

/* Stagger animation for steps when section is visible */
section.visible .step {
    opacity: 1;
    transform: translateY(0);
}

/* Apply individual delays */
section.visible .step:nth-child(1) { transition-delay: 0.3s; }
section.visible .step:nth-child(2) { transition-delay: 0.5s; }
section.visible .step:nth-child(3) { transition-delay: 0.7s; }
section.visible .step:nth-child(4) { transition-delay: 0.9s; }

/* Desktop layout for steps */
@media (min-width: 768px) {
    .how-it-works-steps {
        flex-direction: row; /* Horizontal layout */
        justify-content: space-between;
    }

    .step {
        flex-direction: column; /* Stack icon/path/text vertically */
        align-items: center; /* Center step content horizontally */
        text-align: center;
        margin-bottom: 0;
        flex: 1; /* Distribute space evenly */
        padding: 0 10px;
    }

    .step-icon-container {
        flex-direction: row; /* Icon beside path */
        align-items: center;
        margin-right: 0; /* Reset margin */
        margin-bottom: 15px; /* Space below icon/path */
        width: 100%; /* Allow path to span */
    }

    .step-icon {
        margin-bottom: 0; /* Reset margin */
        margin-right: 0; /* Reset margin */
    }

    /* Style and show the arrow connector on desktop */
    .step-connector-arrow {
        display: inline-block;
        font-size: 2rem; /* Adjust arrow size */
        color: var(--color-violet);
        margin: 0 15px; /* Space around the arrow */
        flex-grow: 1; /* Allow arrow container to fill space */
        text-align: center; /* Center the arrow icon */
        line-height: 50px; /* Align vertically with icons */
    }
}

/* Packages Section */
.packages-section {
    background-color: var(--color-white); /* Or alternate like #f8f9fa */
}

.packages-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    font-size: 2rem;
    text-transform: none;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #6c757d;
}

.packages-grid {
    display: flex; /* Change to flex */
    overflow-x: auto; /* Enable horizontal scroll */
    padding: 20px 0 40px 0; /* Add padding for visual spacing and scroll */
    gap: 25px;

    /* Hide scrollbar */
    scroll-behavior: smooth; /* Enable smooth programmatic scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */

    /* Optional: Snap scrolling */
    scroll-snap-type: x mandatory;
}

.packages-grid.active-drag {
    cursor: grabbing; /* Indicate dragging is active */
    cursor: -webkit-grabbing;
}

.packages-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.package-card {
    border: 1px solid var(--color-grey);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: var(--color-white);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    position: relative; /* Needed for popular tag */
    overflow: hidden; /* Needed for popular tag */
    flex: 0 0 300px; /* Set a fixed base width for cards */
    scroll-snap-align: center; /* Snap items to center */
    opacity: 0.7; /* Make non-centered items slightly faded */
    transform: scale(0.9); /* Make non-centered items slightly smaller */
}

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

/* Style for the centered card */
.package-card.is-center {
    opacity: 1;
    transform: scale(1.05); /* Scale up the centered card */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--color-violet); /* Optional: Highlight border */
}

/* Adjust popular card border for centered state */
.package-card.popular.is-center {
     border-color: var(--color-blue);
}

/* Popular Tag */
.package-card.popular {
    border-width: 2px;
}

.package-header {
    padding: 25px 20px;
    border-bottom: 1px solid var(--color-grey);
}

.package-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--color-charcoal);
    line-height: 1.3;
}

.package-header h3 strong {
    display: block;
    font-size: 1.8rem;
    color: var(--color-violet);
    font-weight: bold; /* Ensure boldness */
}

.package-bags {
    color: #6c757d;
    font-size: 0.9rem;
}

.package-body {
    padding: 25px 20px;
    flex-grow: 1; /* Allow body to grow */
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.package-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.package-features i {
    color: var(--color-violet);
    margin-right: 10px;
    margin-top: 3px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.package-price small {
    font-size: 1rem;
    font-weight: normal;
    color: #6c757d;
}

.package-includes {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0;
}

.package-footer {
    padding: 25px 20px;
    background-color: #f8f9fa; /* Slightly different footer bg */
    border-top: 1px solid var(--color-grey);
}

.package-footer .btn {
    width: 100%; /* Make button full width */
}

/* Vision & Mission Section Styling */
.about-section {
    text-align: center; /* Center align section content if needed */
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr; /* Start with single column */
    gap: 40px;
    margin-top: 2rem; /* Space from top of section */
    text-align: left; /* Align text left within grid items */
}

.vm-item {
    display: flex;
    align-items: flex-start; /* Align icon top with text */
    gap: 20px;
}

.vm-icon {
    font-size: 2.5rem; /* Icon size */
    color: var(--color-violet); /* Icon color */
    flex-shrink: 0;
    width: 50px; /* Ensure consistent spacing */
    text-align: center;
}

.vm-content h3 {
    margin-top: 0; /* Reset margin from default h3 */
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
    font-size: 1.5rem;
}

.vm-content p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Layout for wider screens */
@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on desktop */
        gap: 60px;
    }
}

.vm-icon:hover {
    transform: scale(1.1); /* Slightly enlarge icon on hover */
    transition: transform 0.3s ease;
}

/* Keyframe Animations for Sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animation to footer when visible */
footer.visible {
    opacity: 1;
    /* Optional: Add a slight slide up if desired */
    /* animation: fadeInUp 0.8s ease-out forwards; */
}

/* Dot Navigation for Packages */
.packages-dots {
    text-align: center;
    margin-top: 20px; /* Space above dots */
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--color-grey);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: var(--color-violet);
    transform: scale(1.2);
} 