:root {
    --primary-color: #D9232D;
    /* Brand Red */
    --secondary-color: #333333;
    /* Dark Grey/Black */
    --accent-color: #FFEBEE;
    /* Light Red for backgrounds */
    --text-color: #333333;
    --light-text: #666666;
    --background-color: #FFFFFF;
    --light-bg: #FAFAFA;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

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

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    transition: var(--transition);
}

.top-bar-item a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
}

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

.logo-img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Desktop Search */
.search-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 350px;
    margin: 0 1.5rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 0.3rem 0.5rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.search-box:focus-within {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 35, 45, 0.1);
}

.search-box input {
    border: none;
    background: transparent;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    color: var(--text-color);
}

.search-box button {
    background: var(--primary-color);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: #b91d26;
    transform: scale(1.05);
}

.search-dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #edf2f7;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}

.search-dropdown.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

.search-item {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background-color: #f8fafc;
}

.search-item h4 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--secondary-color);
}

.search-item span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Search Container */
.mobile-search-container {
    display: none;
    margin-top: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    background: #fff;
    padding-bottom: 1rem;
}

.mobile-search-wrapper {
    max-width: 100%;
    margin: 0;
}

.mobile-search-wrapper .search-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.no-results {
    padding: 1rem;
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    transform-origin: left;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .header {
        padding: 0.8rem 0 0 0;
    }

    .header-container {
        padding-bottom: 0.8rem;
        /* Align perfectly */
    }

    .nav {
        display: none;
        /* Hide default nav */
        position: fixed;
        top: 0;
        left: -100%;
        /* Slide from left */
        width: 80%;
        /* Classic drawer width */
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 4rem;
        transition: 0.3s ease;
        z-index: 1001;
    }

    .nav.active {
        left: 0;
        display: flex;
    }

    /* Overlay when menu is open */
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 100%;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        align-items: flex-start;
    }

    .nav-list a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #f1f5f9;
        color: var(--secondary-color);
    }

    .nav-list a:hover {
        background-color: #f8fafc;
        color: var(--primary-color);
    }

    .nav-list a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .desktop-search {
        display: none;
        /* Hide desktop search */
    }

    .header-actions {
        margin-left: auto;
        display: flex;
        /* Ensure it is displayed */
    }

    /* Mobile Search Specifics */
    .mobile-search-container {
        display: block !important;
    }

    .btn-call span {
        display: inline-block;
        /* Show text */
        font-size: 0.9rem;
    }

    .btn-call {
        padding: 0.4rem 1rem;
        border-radius: 6px;
        /* Rectangular button */
        width: auto;
        height: auto;
        justify-content: center;
        background-color: var(--primary-color);
        color: white !important;
        border: none;
    }

    .btn-call i {
        display: none;
        /* Hide icon on mobile to save space if needed, or keep it. User ref has text button. Let's hide icon for cleanest "Sign In" look-alike, or keep both? Text "Call" is short. Let's start with just text to match "Sign in" look. */
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #b91d26;
    border-color: #b91d26;
    transform: translateY(-2px);
}

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

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

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: #fff;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--accent-color);
    /* Creative decorative shadow */
}

/* Features */
.features {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

/* General Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--secondary-color);
}

.section-header p {
    color: var(--light-text);
}

section {
    padding: 4rem 0;
}

/* Services */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* About & Contact */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: 20px 20px 0px var(--accent-color);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text {
    padding: 1rem;
}

.about-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.about-features {
    margin-bottom: 2rem;
    list-style: none;
}

.about-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
    color: var(--secondary-color);
}

.about-features li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.map-container iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-brand h3 {
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

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

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    /* Nav styles handled by 992px query */
    /* Header actions btn should not be hidden */

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
        /* Image first on mobile? Or standard: content first. Let's keep standard content first for SEO importance, but visually maybe image is nice. Keeping standard for now. */
    }
}

/* Why Choose Section */
.why-choose {
    background-color: white;
    padding: 4rem 0;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-choose-content p {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.why-choose-content strong {
    color: var(--secondary-color);
}

.video-card {
    display: flex;
    background: white;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    align-items: center;
    gap: 2rem;
}

.video-text {
    flex: 1;
}

.video-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: black;
}

.video-text p {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-youtube {
    background: #D9232D;
    color: white;
    border: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    text-decoration: none;
}

.btn-youtube:hover {
    background: #b91d26;
    color: white;
    transform: translateY(-2px);
}

.video-embed {
    width: 250px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    /* Transparent PNGs often don't want a border-radius if they are cutouts, 
       but if it's a square photo, border-radius is good. 
       The user image likely is a cutout based on the design ref. */
}

@media (max-width: 900px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-image {
        text-align: center;
        order: -1;
    }

    .why-choose-image img {
        max-width: 80%;
        margin: 0 auto;
    }

    .video-card {
        flex-direction: column;
        text-align: center;
    }

    .video-embed {
        width: 100%;
    }
}

/* Packages Section */
.packages-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid #e0e0e0;
    background: white;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff5f5;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(217, 35, 45, 0.25);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* Package Card */
.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #ffeaea;
}

.pkg-header {
    background: linear-gradient(to right, #ffffff, #fafafa);
    padding: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-top: 2.5rem;
    /* Space for badge */
}

.pkg-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
    line-height: 1.4;
}

.badg {
    position: absolute;
    top: 0;
    right: 0;
    background: #e6f4ea;
    color: #1e8e3e;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-bottom-left-radius: 12px;
    border-top-right-radius: 12px;
    /* Ensure it sticks to corner */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Different badge colors for different scenarios if needed */
.badg.popular {
    background: #fff0f0;
    color: var(--primary-color);
}

.pkg-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pkg-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.old-price {
    font-size: 0.9rem;
    color: #a0aec0;
    text-decoration: line-through;
    font-weight: 500;
}

.test-count-info {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 1rem;
    background: #f7fafc;
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.pkg-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pkg-features li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

.pkg-features li::before {
    content: "✓";
    color: #38a169;
    /* Green checkmark looks more positive */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 0.9rem;
}

.pkg-footer {
    padding: 1.25rem;
    background: white;
    border-top: 1px solid #f7fafc;
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

.btn-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.btn-book {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-book:hover {
    background-color: #b91c25;
    color: white;
}

.btn-details {
    background-color: white;
    color: var(--secondary-color);
    border: 1px solid #e2e8f0;
    padding: 0.7rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.btn-details:hover {
    border-color: var(--secondary-color);
    background-color: #f7fafc;
}

/* FAQ Section */
.faq {
    background-color: white;
    padding: 5rem 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.faq-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: #94a3b8;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1rem;
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1rem;
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-image {
        order: -1;
        /* Image on top on mobile */
    }

    .faq-image img {
        max-width: 300px;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--primary-color);
}



/* Home Collection Section */
.home-collection {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.collection-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.collection-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.collection-image-wrapper:hover .collection-image {
    transform: scale(1.02);
}

.collection-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking-form-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.booking-form-card h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.btn-whatsapp-book {
    width: 100%;
    padding: 1rem;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-whatsapp-book:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.form-note {
    font-size: 0.85rem;
    color: #a0aec0;
    text-align: center;
}

@media (max-width: 992px) {
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .collection-content {
        order: -1;
        /* Text first on mobile? Or image? Let's keep image first visually or allow normal stacking. Normal stacking puts image first. */
    }
}

/* Reviews Section */
.reviews {
    background-color: var(--background-color);
    padding: 5rem 0;
}

.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
}

.reviews-track-container {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    padding: 1rem 0;
    /* Space for shadow */
}

.review-card {
    min-width: calc(33.333% - 1.35rem);
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-info {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.user-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--secondary-color);
}

.user-info span {
    font-size: 0.8rem;
    color: #a0aec0;
}

.google-logo {
    width: 24px;
    height: 24px;
}

.rating {
    color: #FFC107;
    font-size: 0.9rem;
}

.review-text {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.slider-btn {
    background: white;
    border: 1px solid #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s;
    position: absolute;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 992px) {
    .review-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: 100%;
    }

    .reviews-slider-container {
        padding: 0;
    }

    .slider-btn {
        display: none;
    }

    .reviews-track-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
    }

    .reviews-track {
        gap: 1rem;
    }

    .review-card {
        scroll-snap-align: center;
    }
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-info {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.user-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--secondary-color);
}

.user-info span {
    font-size: 0.8rem;
    color: #a0aec0;
}

.google-logo {
    width: 24px;
    height: 24px;
}

.rating {
    color: #FFC107;
    font-size: 0.9rem;
}

.review-text {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.slider-btn {
    background: white;
    border: 1px solid #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s;
    position: absolute;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 992px) {
    .review-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: 100%;
    }

    .reviews-slider-container {
        padding: 0;
    }

    .slider-btn {
        display: none;
        /* Hide arrows on mobile, allow swipe scrolling concept */
    }

    .reviews-track-container {
        /* Enable horizontal scrolling for mobile if arrows are hidden */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
    }

    .reviews-track {
        gap: 1rem;
    }

    .review-card {
        scroll-snap-align: center;
    }
}

/* Footer Styling */
.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 0 2rem 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: #a0aec0;
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #a0aec0;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.btn-book:hover {
    background-color: #b91c25;
    color: white;
}

.btn-details {
    background-color: white;
    color: var(--secondary-color);
    border: 1px solid #e2e8f0;
    padding: 0.7rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.btn-details:hover {
    border-color: var(--secondary-color);
    background-color: #f7fafc;
}

/* About Page Styles */
.about-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('about_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.about-hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background-color: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid.reverse .about-img-wrapper {
    order: 2;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.02);
}

.sub-heading {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-text-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1;
}

.stat-item span {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.25rem;
}

/* Vision Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.vm-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.vm-card p {
    color: var(--light-text);
}

/* Tech List */
.tech-list {
    list-style: none;
    margin-bottom: 2rem;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.tech-list i {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .about-page-hero {
        height: 50vh;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-grid.reverse .about-img-wrapper {
        order: -1;
        /* Image first on mobile usually looks better */
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 1.5rem;
    }
}

/* --- Contact Page Styles --- */
.contact-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('about_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.contact-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-section {
    padding-bottom: 4rem;
}

.contact-grid-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info-card,
.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-card h2,
.contact-form-card h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-info-card>p {
    color: #a0aec0;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item .icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(239, 83, 80, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.info-text p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.5;
}

.info-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.info-text .sub-text {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-top: 0.2rem;
}

.contact-form-card .btn-block {
    width: 100%;
    margin-top: 1rem;
}

.map-container-page {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact-grid-page {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Packages Page Styles --- */
.packages-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('about_hero.png');
    /* Consistent Hero */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.packages-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.package-category-section {
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.package-category-section:last-child {
    border-bottom: none;
}

.category-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--primary-color);
}

.packages-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card-page {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.package-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.package-card-page .pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.package-card-page h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.4;
    padding-right: 1rem;
}

.package-card-page .pkg-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    white-space: nowrap;
}

.package-card-page .pkg-body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.pkg-features-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 0.25rem;
}

.pkg-features-text {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.5;
}

.package-card-page .pkg-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}