/* Variables & Base Styles - Clean / Light Theme */
:root {
    --primary: #2c2c2c; /* Dark Grey/Black for text */
    --accent: #b09e86; /* Soft Beige/Taupe */
    --accent-hover: #9e8c75;
    --light-bg: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-muted: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--primary);
    overflow-x: hidden;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

.text-muted-custom {
    color: var(--text-muted) !important;
}

.tracking-widest {
    letter-spacing: 0.15em;
}

.hover-accent:hover {
    color: var(--accent) !important;
}

.transition {
    transition: all 0.3s ease;
}

/* Custom Buttons */
.btn-accent {
    background-color: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--accent);
}

.btn-outline-accent {
    color: var(--accent);
    border: 2px solid var(--accent);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: #fff;
}

.btn-check:checked + .btn-outline-accent {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    color: var(--primary) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--primary);
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:not(.btn):hover::after,
.navbar-nav .nav-link.active:not(.btn):::after {
    width: 100%;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('../images/hero_kitchen_1787650790596.jpg') no-repeat center center/cover;
    position: relative;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* More transparent overlay so image is visible, with subtle blur for text readability */
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(3px);
    z-index: 1;
}

.hero .container {
    color: var(--primary);
}

/* Projects Section */
.project-card .card-img-wrapper {
    height: 300px;
}

.project-card img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.8s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Payment Methods */
.payment-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    border: 1px solid var(--medium-gray);
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
    border-color: var(--accent) !important;
}

/* Quiz Section */
.quiz-section .card {
    background-color: #fff;
    border: 1px solid var(--medium-gray);
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.quiz-step.active {
    display: block;
}

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

/* Form Controls */
.form-control {
    background-color: var(--light-gray);
    border: 1px solid var(--medium-gray);
    color: var(--primary);
}
.form-control:focus {
    background-color: #fff;
    border-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(176, 158, 134, 0.25);
}

/* Utility */
.max-w-md {
    max-width: 600px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

/* FAQ Section & Glassmorphism */
.font-script {
    font-family: 'Alex Brush', cursive;
    color: var(--primary);
}

.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/home_office_1787650835908.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    z-index: 1;
}

.faq-glass-box {
    background-color: rgba(240, 235, 230, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Custom Accordion */
.custom-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.custom-accordion .accordion-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15); /* Keep border on last item to match design */
}

.custom-accordion .accordion-button {
    background-color: transparent !important;
    color: var(--primary);
    box-shadow: none !important;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    outline: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: transparent;
    box-shadow: none;
}

.custom-accordion .accordion-body {
    padding: 0 0 1.5rem 0;
    background-color: transparent;
}
