﻿:root {
    --primary-green: #0c2b1d; /* Deep Forest Green */
    --primary-green-dark: #071911;
    --gold: #c49a45; /* Soft Luxury Gold */
    --gold-light: #e6c875;
    --text-light: #fdfbf7; /* Creamy White */
    --text-white: #ffffff;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-body);
    background-color: var(--primary-green);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Fixes horizontal scroll on mobile */
    width: 100%;
    
    /* Anti-Copy (Showcase Protection) */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= Navbar ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(7, 25, 17, 0.9) 0%, transparent 100%);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out, padding 0.3s ease;
}

.navbar--hidden {
    transform: translateY(-100%);
}

.navbar--solid {
    background: rgba(7, 25, 17, 0.95);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-white);
    font-weight: 400;
    margin-top: 5px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #b3883b 100%);
    color: var(--primary-green-dark) !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(196, 154, 69, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 154, 69, 0.5);
    background: linear-gradient(135deg, #e8c678 0%, var(--gold) 100%);
}

.menu-toggle {
    display: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--primary-green-dark);
        flex-direction: column;
        padding: 80px 0 30px 0;
        gap: 25px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        z-index: 100;
    }
    .menu-toggle:checked ~ .nav-links {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .nav-btn {
        margin-top: 15px;
    }
    
    /* Hamburger Animation */
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ================= Hero Section ================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px; /* Offset for fixed navbar to center content perfectly */
    /* We use the generated luxury spa background */
    background: url('images/hero-bg.webp') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay to make text pop while keeping a luxurious feel */
    background: linear-gradient(to bottom, rgba(7, 25, 17, 0.7) 0%, rgba(12, 43, 29, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 25px;
    animation: fadeInUp 1.5s ease-out;
}

/* Sub-heading */
.sub-heading {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.sub-heading::before,
.sub-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.7;
}

.sub-heading::before {
    left: -80px;
}

.sub-heading::after {
    right: -80px;
}

/* Main Heading */
.main-heading {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.05;
    margin-bottom: 30px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.main-heading span {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--gold);
    display: block;
    margin-top: 15px;
    letter-spacing: 8px;
}

/* Description */
.description {
    font-size: 1.15rem;
    font-weight: 300;
    color: #e8e6e1;
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1.5px;
}

.btn i {
    font-size: 1.2rem;
}

.btn-call {
    background-color: var(--gold);
    color: var(--primary-green-dark);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(196, 154, 69, 0.2);
}

.btn-call:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 4px 20px rgba(196, 154, 69, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-whatsapp:hover {
    background-color: #25D366; /* Official WhatsApp Green */
    border-color: #25D366;
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* ================= Responsive Design ================= */
@media (max-width: 992px) {
    .main-heading {
        font-size: 4.5rem;
    }
    .main-heading span {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 3.5rem;
    }
    
    .main-heading span {
        font-size: 1.4rem;
        letter-spacing: 5px;
    }

    .sub-heading {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .sub-heading::before,
    .sub-heading::after {
        width: 30px;
    }

    .sub-heading::before {
        left: -45px;
    }

    .sub-heading::after {
        right: -45px;
    }

    .description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2.8rem;
    }
    .main-heading span {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
}

/* ================= Animations ================= */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= Features Section ================= */
.features-section {
    background-color: var(--primary-green-dark);
    padding: 60px 0;
    border-top: 1px solid rgba(196, 154, 69, 0.2);
    border-bottom: 1px solid rgba(196, 154, 69, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    flex: 0 0 calc(25% - 22.5px); /* 4 in a row */
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
}

/* ================= Benefits Section ================= */
.benefits-section {
    padding: 80px 0;
    background-color: var(--text-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, rgba(196, 154, 69, 0.03) 0%, rgba(196, 154, 69, 0.08) 100%);
    transition: height 0.4s ease;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid var(--gold);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-icon {
    width: 75px;
    height: 75px;
    background: rgba(196, 154, 69, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--gold);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(196, 154, 69, 0.3);
}

.benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    line-height: 1.4;
    margin: 0;
}

/* ================= Services Section ================= */
.services-section {
    background-color: #f9f6f0; /* Soft creamy background for contrast */
    color: #333333;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-heading.dark-theme {
    color: var(--primary-green);
}

.sub-heading.dark-theme::before,
.sub-heading.dark-theme::after {
    background-color: var(--primary-green);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-green-dark);
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px); /* 3 cards per row */
    background-color: var(--text-white);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--gold);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.08);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    background-color: #3f2a1d; /* Deep golden-brown matching reference */
    color: var(--text-white);
    text-align: center;
    margin: -25px -25px 20px -25px;
    padding: 12px 15px;
    letter-spacing: 1px;
}

.card-desc {
    font-size: 0.95rem;
    color: #666666;
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes pricing to bottom */
}

.card-pricing {
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #444444;
}

.pricing-row:last-child {
    margin-bottom: 0;
}

.price {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.05rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
}

.service-list li {
    font-size: 0.95rem;
    color: #444444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--gold);
}

/* Services Responsive */
@media (max-width: 1200px) {
    .feature-card,
    .service-card {
        flex: 0 0 calc(33.333% - 20px); /* 3 in a row */
    }
}

@media (max-width: 900px) {
    .feature-card,
    .service-card {
        flex: 0 0 calc(50% - 15px); /* 2 in a row */
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .feature-card,
    .service-card {
        flex: 0 0 100%; /* 1 in a row */
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ================= Benefits Section ================= */
.benefits-section {
    background-color: var(--text-white);
    padding: 80px 0;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    flex: 0 0 calc(25% - 22.5px);
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--gold);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-green-dark);
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    color: var(--text-white);
}

.benefit-card h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    line-height: 1.4;
}

/* Benefits Responsive */
@media (max-width: 900px) {
    .benefit-card {
        flex: 0 0 calc(50% - 15px);
    }
}
@media (max-width: 600px) {
    .benefit-card {
        flex: 0 0 100%;
    }
}

/* ================= Gallery Section ================= */
.gallery-section {
    background-color: var(--primary-green);
    padding: 80px 0;
}

.section-title.light-theme {
    color: var(--text-white);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 13.33px); /* 3 in a row */
    background-color: var(--primary-green-dark);
    padding: 10px;
    border: 1px solid rgba(196, 154, 69, 0.3); /* Subtle gold border */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(196, 154, 69, 0.25); /* Subtle gold glow */
    border-color: var(--gold); /* Highlight border on hover */
}

.gallery-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    background-color: var(--primary-green-dark);
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out; /* Slight hover zoom */
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.06); /* Slight zoom inside the wrapper */
}

/* Gallery Responsive */
@media (max-width: 900px) {
    .gallery-item {
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 600px) {
    .gallery-item {
        flex: 0 0 100%;
    }
}

/* ================= CTA & Location Section ================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, #0d2a1b 100%);
    padding: 60px 0;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(196, 154, 69, 0.05) 0%, transparent 40%);
    z-index: -1;
}

.cta-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.cta-content {
    flex: 1;
}

.cta-map {
    flex: 1;
    height: 350px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(196, 154, 69, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.contact-info {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(196, 154, 69, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(196, 154, 69, 0.3);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--gold);
    background: rgba(196, 154, 69, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: var(--gold);
    color: var(--primary-green-dark);
}

.contact-item h4 {
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.contact-item p {
    color: #e8e6e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Enhanced CTA Button */
.btn-cta {
    background: linear-gradient(135deg, var(--gold) 0%, #b3883b 100%);
    color: var(--primary-green-dark) !important;
    padding: 14px 35px;
    border-radius: 50px; /* Modern Pill Shape */
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(196, 154, 69, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s infinite;
}

.btn-cta i {
    font-size: 1.2rem;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(196, 154, 69, 0.5);
    background: linear-gradient(135deg, #e8c678 0%, var(--gold) 100%);
    color: var(--primary-green-dark) !important;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(196, 154, 69, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(196, 154, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 154, 69, 0); }
}

/* Footer */
.footer {
    background-color: #08140c; /* Extra dark */
    padding: 30px 0;
    color: #a0a5a1;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer p {
    margin: 0;
}
.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: var(--text-white) !important;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: #a0a5a1;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--gold);
    color: var(--primary-green-dark) !important;
    transform: translateY(-3px);
}

/* CTA Responsive */
.cta-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 25px;
}

@media (max-width: 900px) {
    .cta-grid {
        flex-direction: column;
        gap: 40px;
    }
    .cta-map {
        width: 100%;
        height: 400px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .cta-actions {
        justify-content: center;
    }
    .btn-cta {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    .cta-map {
        height: 300px;
    }
}

/* ================= Floating Actions ================= */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: #fff !important;
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.float-whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.float-call {
    background: linear-gradient(135deg, var(--gold) 0%, #b3883b 100%);
}
.float-call:hover {
    box-shadow: 0 8px 25px rgba(196, 154, 69, 0.5);
}

.float-location {
    background: linear-gradient(135deg, #4285F4 0%, #0d47a1 100%);
}
.float-location:hover {
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
}

@media (max-width: 600px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* ================= Problems Section ================= */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: rgba(196, 154, 69, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.problem-card:hover .problem-icon {
    background: var(--gold);
    color: #ffffff;
    transform: scale(1.1);
}

.problem-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 25px;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.problem-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.problem-list li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 4px;
}

.explore-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-green-dark);
    color: var(--text-white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.explore-btn:hover {
    background: var(--gold);
    color: var(--primary-green-dark);
}
