:root {
    /* Color Palette - Light Theme */
    --primary-color: #0a192f;
    /* Deep Navy Blue (Brand Color) */
    --secondary-color: #ffb400;
    /* Construction Gold */
    --text-main: #333333;
    /* Dark Grey for body text */
    --text-muted: #666666;
    --background-body: #ffffff;
    --background-alt: #f4f7f6;
    /* Light Grey for alternate sections */
    --white: #ffffff;
    --card-bg: #ffffff;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.3s ease-in-out;

    /* Spacing */
    --section-spacing: 100px;
    --border-radius: 8px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    /* Headings in Navy Blue */
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: var(--section-spacing) 0;
}

.text-gold {
    color: var(--secondary-color);
}

.text-center {
    text-align: center;
}

.sub-heading {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: var(--glass);
    padding: 15px 0;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    /* For light theme, logo needs to be visible always. 
       If hero is dark overlay, logo might need to be white initially.
       Let's handle that mix. */
}

/* Force Logo White on initial transparent header if hero is dark, else dark */
.header:not(.scrolled) .logo {
    color: var(--white);
}

.header.scrolled .logo {
    color: var(--primary-color);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}


.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
    /* Align items vertically */
}

.nav-list li {
    position: relative;
    /* Context for dropdown */
    padding: 10px 0;
    /* Increase hit area */
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    text-align: left;
}

.nav-list li.dropdown-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
    text-transform: capitalize;
}

.dropdown-menu li a:hover {
    background-color: var(--background-alt);
    color: var(--secondary-color);
    padding-left: 25px;
    /* Indent effect */
}

/* Ensure arrow icon has space */
.fa-chevron-down {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: var(--transition);
}

.nav-list li.dropdown-active .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    /* White on dark hero overlay */
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--primary-color);
    /* Dark on scrolled light header */
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.get-quote-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    /* White initially */
    cursor: pointer;
}

.header.scrolled .hamburger {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&amp;w=2070&amp;auto=format&amp;fit=crop') no-repeat center center/cover;
}

/* Reusing image but maybe different one or lighter overlay? 
   No, hero usually looks good with dark overlay even in light themes for text contrast. 
   Keeping the overlay dark for the white Hero Text. */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    color: var(--white);
    /* Explicitly white on hero */
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    color: #e6e6e6;
    /* Light grey text for hero */
}

.hero-btns {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-btns .btn {
    margin-right: 15px;
}

/* Stats Section */
.stats {
    background-color: var(--secondary-color);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    color: var(--primary-color);
}

.stat-item {
    padding: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0;
}

/* About Section */
.about {
    background-color: var(--background-body);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 20px 20px 0 var(--secondary-color);
    transition: var(--transition);
}

.about-image:hover img {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0 var(--secondary-color);
}

.about-list {
    margin: 25px 0;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-main);
}

/* Services Section */
.services {
    background-color: var(--background-alt);
    /* Light Grey bg */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.btn-text {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--white);
    /* White card */
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: left;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary-color);
    background-color: var(--white);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Projects Section */
.projects {
    background-color: var(--background-body);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.project-item:hover .project-info {
    transform: translateY(0);
}

.project-info h3,
.project-info p {
    color: var(--white);
    /* Text on image overlay must be white always */
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 15px;
}

.reviewer-info h3 {
    font-size: 1rem;
    margin: 0 0 5px 0;
    color: var(--primary-color);
}

.stars {
    color: #f1c40f;
    font-size: 0.85rem;
}

.google-logo {
    margin-left: auto;
}

.google-logo img {
    width: 70px;
    height: auto;
    opacity: 0.8;
}

.review-text {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    /* Dark Footer */
    padding-top: 80px;
    color: #ffffff;
}

.footer p {
    color: #ffffff;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-col h3 {
    color: #ffffff;
}

.footer-col ul li a {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Social Icon Brand Colors */
.social-links a.facebook i {
    color: #1877F2;
}

.social-links a.instagram i {
    color: #E4405F;
}

.social-links a.youtube i {
    color: #FF0000;
}

.social-links a.whatsapp i {
    color: #25D366;
}

.social-links a.facebook {
    border-color: #1877F2;
}

.social-links a.instagram {
    border-color: #E4405F;
}

.social-links a.youtube {
    border-color: #FF0000;
}

.social-links a.whatsapp {
    border-color: #25D366;
}

.social-links a.facebook:hover {
    background-color: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.social-links a.instagram:hover {
    background-color: #E4405F;
    color: #fff;
    border-color: #E4405F;
}

.social-links a.youtube:hover {
    background-color: #FF0000;
    color: #fff;
    border-color: #FF0000;
}

.social-links a.whatsapp:hover {
    background-color: #25D366;
    color: #fff;
    border-color: #25D366;
}

.social-links a.facebook:hover i,
.social-links a.instagram:hover i,
.social-links a.youtube:hover i,
.social-links a.whatsapp:hover i {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #010812;
    color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--white);
        /* Light menu bg */
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        padding-bottom: 50px;
        gap: 0;
        overflow-y: auto;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-link {
        color: var(--primary-color);
        /* Dark links on mobile menu */
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    /* Fixed hamburger color issue on mobile open */
    .nav-list.active~.hamburger,
    .hamburger.active {
        color: var(--primary-color);
    }

    .get-quote-btn {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-container {
        gap: 30px;
    }

    /* Fix Hero Buttons on Mobile */
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-btns .btn {
        margin-right: 0;
        width: 100%;
        text-align: center;
    }

    /* Fix Dropdown Menu on Mobile */
    .nav-list .dropdown-menu {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        box-shadow: none;
        background-color: transparent;
        transform: none;
        opacity: 1;
        visibility: visible;
        text-align: center;
        padding: 0;
        max-height: 0;
        /* Collapsed by default */
        overflow: hidden;
        transition: max-height 0.8s ease;
    }

    .nav-list li.dropdown-active .dropdown-menu {
        max-height: 1000px;
    }

    .dropdown-menu li a {
        color: var(--primary-color);
        padding: 10px;
    }

    .dropdown-menu li a:hover {
        background-color: transparent;
        color: var(--secondary-color);
        padding-left: 0;
    }

    /* Rotate chevron to show expanded state */
    .nav-list li.dropdown-active .fa-chevron-down {
        transform: rotate(180deg);
        margin-left: 10px;
    }
}

/* ============================
   Page Header (About.html)
   ============================ */
.page-header {
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&amp;w=2031&amp;auto=format&amp;fit=crop') no-repeat center center/cover;
    text-align: center;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #e6e6e6;
}

/* ============================
   Mission & Values
   ============================ */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.values-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.value-item i {
    font-size: 2rem;
    margin-top: 5px;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.value-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ============================
   Goals Section
   ============================ */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.goal-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goal-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.goal-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 180, 0, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.goal-card:hover .goal-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.project-summary-box {
    max-width: 800px;
    margin: 0 auto;
}

.mt-20 {
    margin-top: 20px;
}

.bg-light {
    background-color: var(--background-alt);
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

/* ============================
   Projects Page Gallery
   ============================ */
.masonry-grid {
    column-count: 4;
    column-gap: 15px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    border: 2px solid var(--white);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

/* Responsive Masonry */
@media (max-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }
}

/* ============================
   Contact Page
   ============================ */
.contact-wrapper {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 180, 0, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-details p {
    font-size: 1rem;
    margin-bottom: 0;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form */
.contact-form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Residential Packages (Accordion Style)
   ============================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.package-column {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e1e1e1;
}

.package-header-dark {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.package-header-dark h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.package-header-dark .package-sub {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
    font-weight: 400;
}

.specs-list {
    padding: 0;
    background: #fff;
}

.spec-item {
    border-bottom: 1px solid #eee;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-btn {
    width: 100%;
    text-align: left;
    background-color: #f8f9fa;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.spec-btn:hover {
    background-color: #e9ecef;
}

.spec-btn.active {
    background-color: #e2e6ea;
    color: var(--secondary-color);
}

.spec-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: #888;
}

.spec-btn.active i {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.spec-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.spec-content p {
    margin: 0;
    padding: 15px 20px;
    color: #555;
    font-size: 0.95rem;
    border-top: 1px solid #f1f1f1;
}

/* Responsive Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Floating Social Icons
   ============================ */
.floating-social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-icon-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.social-icon-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.whatsapp-float {
    background-color: #25D366;
}

.instagram-float {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Specific pulse colors */
.whatsapp-float {
    animation: pulse-green 2s infinite;
}

.instagram-float {
    animation: pulse-purple 2s infinite;
}

.facebook-float {
    background-color: #1877F2;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 36, 159, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(214, 36, 159, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(214, 36, 159, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(24, 119, 242, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(24, 119, 242, 0);
    }
}

@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 36, 159, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(214, 36, 159, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(214, 36, 159, 0);
    }
}