/* Basic Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Primary font for headings */
    line-height: 1.6;
    color: #333;
    background-color: #f8fafd; /* Very light, slightly blue-tinted background for freshness */
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif; /* Secondary font for body text/smaller headings */
    margin-bottom: 15px;
    color: #263238; /* Darker almost-black for strong headings */
}

p {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #00BCD4; /* New primary link color (Teal/Aqua) */
}

a:hover {
    color: #00838F; /* Darker teal on hover */
}

/* Global Container for content width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px; /* Slightly larger buttons */
    border-radius: 50px; /* More rounded, pill-like buttons */
    font-weight: 600;
    font-size: 1.1em; /* Slightly larger text */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer; /* Indicate button is clickable */
}

.btn-primary {
    background-color: #00BCD4; /* New primary button color (Teal/Aqua) */
    color: #fff;
    border: 2px solid #00BCD4;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3); /* Soft shadow matching button color */
}

.btn-primary:hover {
    background-color: #00838F; /* Darker teal on hover */
    border-color: #00838F;
    transform: translateY(-3px); /* More pronounced lift on hover */
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.4); /* Enhanced shadow on hover */
}

/* New: Secondary button style for "view" button */
.btn-secondary {
    background-color: #FF7043; /* Orange color for view buttons */
    color: #fff;
    border: 2px solid #FF7043;
    padding: 10px 25px; /* Smaller padding than primary button */
    font-size: 0.9em;
    border-radius: 5px; /* Slightly less rounded than main buttons */
    text-transform: none; /* Keep text as is, not uppercase */
    box-shadow: 0 3px 8px rgba(255, 112, 67, 0.3);
}

.btn-secondary:hover {
    background-color: #F4511E; /* Darker orange on hover */
    border-color: #F4511E;
    transform: translateY(-2px); /* Slight lift */
    box-shadow: 0 4px 10px rgba(255, 112, 67, 0.4);
}


/* Header Section */
.header {
    background-color: #ffffff; /* Clean white header */
    padding: 20px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08); /* More subtle, spread-out shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 30px; /* Slightly larger logo */
    font-weight: 700;
    color: #263238; /* Darker logo for contrast */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-menu {
    position: relative;
}

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

.nav-list li {
    margin-left: 35px; /* More space between navigation items */
}

.nav-list a {
    font-size: 18px; /* Slightly larger nav links */
    font-weight: 600;
    color: #546E7A; /* Muted dark gray for nav links */
    transition: color 0.3s ease;
    padding: 5px 0; /* Add padding for a larger click area */
}

.nav-list a:hover {
    color: #00BCD4; /* New primary color on hover */
}

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #263238; /* Darker color for hamburger lines */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section (Main Banner) - Adjusted for <img> tag */
.hero-section {
    position: relative; /* Crucial for positioning child elements (image and overlay) */
    color: #fff;
    text-align: center;
    padding: 120px 20px; /* More padding for a grander feel */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh; /* Taller hero section */
    overflow: hidden; /* Hide any overflow from the image */
}

/* Styling for the <img> tag within the hero section */
.hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area without distortion */
    z-index: 1; /* Place image below overlay and content */
}

/* Styling for the overlay div */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 2; /* Place overlay above image, below content */
}

/* Content within the hero section must be above the image and overlay */
.hero-content {
    position: relative; /* Make content relative to hero-section, ensures it's above image/overlay */
    z-index: 3; /* Place content on top */
}

.hero-content h1 {
    font-size: 64px; /* Larger hero heading */
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4); /* Subtle text shadow for readability over image */
}

.hero-content p {
    font-size: 22px; /* Larger hero paragraph */
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3); /* Subtle text shadow */
}

/* Services Section (Existing) */
.services-section {
    padding: 90px 0; /* More padding */
    text-align: center;
}

.services-section h2 {
    font-size: 44px; /* Slightly larger section heading */
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

/* Underline effect for section headings (new color) */
.services-section h2::after,
.packages-section h2::after { /* Apply to packages section too */
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px; /* Moved slightly lower */
    transform: translateX(-50%);
    width: 100px; /* Wider underline */
    height: 5px; /* Thicker underline */
    background-color: #00BCD4; /* New primary color for underline */
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; /* More space between grid items */
    margin-top: 50px;
}

.service-card {
    background-color: #ffffff; /* Clean white cards */
    padding: 35px; /* More padding */
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* More prominent shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease; /* Added border transition */
    text-align: center;
    border: 1px solid transparent; /* Subtle border to transition to */
}

.service-card:hover {
    transform: translateY(-12px); /* More pronounced lift */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
    border: 1px solid #00BCD4; /* Teal border on hover */
}

.service-card i {
    font-size: 60px; /* Larger icons */
    color: #00BCD4; /* New primary color for icons */
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 26px; /* Larger service card headings */
    margin-bottom: 15px;
    color: #263238;
}

.service-card p {
    font-size: 17px; /* Slightly larger service card text */
    color: #546E7A;
}


/* New: Packages Section Styling (Matching example image) */
.packages-section {
    padding: 90px 0;
    text-align: center;
    background-color: #edf5f7; /* Slightly different background for contrast */
}

.packages-section h2 {
    font-size: 44px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax to match example's layout */
    gap: 30px; /* Gap between cards */
    margin-top: 50px;
}

.package-card {
    background-color: #ffffff;
    padding: 25px; /* Adjusted padding to be closer to example */
    border-radius: 8px; /* Slightly less rounded corners as per example */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Lighter shadow as per example */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
    border: 1px solid #eee; /* Subtle border */
}

.package-card:hover {
    transform: translateY(-8px); /* Subtle lift on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
}

.package-image-wrapper {
    width: 100px; /* Diameter of the circle */
    height: 100px; /* Diameter of the circle */
    border-radius: 50%; /* Makes it circular */
    overflow: hidden; /* Hides parts of the image outside the circle */
    margin-bottom: 20px;
    border: 3px solid #FF7043; /* Orange border as seen in example */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Small shadow for the circle */
}

.package-icon {
    width: 100%; /* Make image fill the circular wrapper */
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
    object-position: center; /* Center the image within the circle */
}

.package-card h3 {
    font-size: 24px; /* Adjusted heading size */
    margin-bottom: 10px;
    color: #263238;
}

.package-card .package-price {
    font-size: 20px; /* Price font size */
    font-weight: 600;
    color: #FF7043; /* Orange color for price as in example */
    margin-bottom: 25px; /* Space before button */
}

.package-card .btn-secondary {
    width: auto; /* Allow button to size based on content */
    min-width: 120px; /* Minimum width for consistency */
    margin-top: auto; /* Pushes button to the bottom if content varies */
}


/* Footer Section */
.footer {
    background-color: #263238; /* Darker, almost black footer */
    color: #E0F2F7; /* Very light blue-white text for footer */
    padding: 50px 0; /* More padding */
    text-align: center;
    font-size: 16px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer p {
    margin-bottom: 20px;
}

.social-links a {
    color: #E0F2F7; /* Light color for footer social icons */
    font-size: 22px; /* Larger icons */
    margin: 0 12px; /* More space */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00BCD4; /* New primary color on hover for footer icons */
}

/* Floating Social Buttons (WhatsApp & Facebook & Instagram) */
.social-float-buttons {
    position: fixed;
    bottom: 25px; /* Slightly higher from bottom */
    right: 25px; /* Slightly further from right */
    display: flex;
    flex-direction: column;
    gap: 18px; /* Slightly more space */
    z-index: 1000;
}

.social-float-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px; /* Slightly larger buttons */
    height: 65px;
    border-radius: 50%;
    color: #fff;
    font-size: 32px; /* Slightly larger icons */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25); /* More prominent shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-float-buttons a:hover {
    transform: scale(1.1) translateY(-5px); /* Scale up and lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); /* Stronger shadow on hover */
}

.whatsapp-float {
    background-color: #25D366; /* Standard WhatsApp green */
}

.facebook-float {
    background-color: #1877F2; /* Standard Facebook blue */
}

.instagram-float {
    background-color: #E4405F; /* Instagram's brand color */
}


/* --- Responsive Design (Media Queries) --- */

/* Tablets and smaller desktops (769px to 1024px) */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .services-section h2,
    .packages-section h2 {
        font-size: 38px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .package-card h3 {
        font-size: 22px; /* Adjusted heading size */
    }

    .package-card .package-price {
        font-size: 18px; /* Adjusted price size */
    }
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-menu {
        width: 100%;
        order: 3;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: #ffffff; /* White background for mobile nav */
        position: absolute;
        top: 80px;
        left: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .nav-list li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-list a {
        padding: 10px 0;
        display: block;
        font-size: 17px;
    }

    .hero-section {
        padding: 100px 15px;
        min-height: 55vh;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .services-section,
    .packages-section {
        padding: 70px 0;
    }

    .services-section h2,
    .packages-section h2 {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .services-section h2::after,
    .packages-section h2::after {
        width: 80px;
        height: 4px;
        bottom: -10px;
    }

    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px;
    }

    .service-card i {
        font-size: 50px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .package-card {
        padding: 20px; /* Adjusted padding */
    }

    .package-image-wrapper {
        width: 80px; /* Smaller icon size for mobile */
        height: 80px;
    }

    .package-card h3 {
        font-size: 20px;
    }

    .package-card .package-price {
        font-size: 16px;
    }

    .btn-secondary {
        padding: 8px 20px;
        font-size: 0.8em;
    }

    .footer .container {
        padding: 0 15px;
    }

    .footer p {
        font-size: 15px;
    }

    .social-links {
        margin-top: 20px;
    }

    .social-float-buttons {
        bottom: 18px;
        right: 18px;
        gap: 12px;
    }

    .social-float-buttons a {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

/* Smaller mobile devices (up to 480px) */
@media (max-width: 480px) {
    .logo a {
        font-size: 26px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .services-section h2,
    .packages-section h2 {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .package-card h3 {
        font-size: 20px;
    }

    .package-card .package-price {
        font-size: 15px;
    }

    .social-float-buttons a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}