/* Color Palette 
#f2e9e0 - Primary Background
#DEAD6F - Accent (Gold)
#FFFFFF - Pure White
#FEF3E6 - Secondary Light
*/

:root {
    --bg-main: #f2e9e0;
    --accent: #DEAD6F;
    --white: #FFFFFF;
    --bg-secondary: #FEF3E6;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, .section-title {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-section {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1516733725897-1aa73b87c8e8?q=80&w=2070') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.badge-custom {
    background: var(--accent);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.text-accent { color: var(--accent); }

/* Buttons */
.btn-main {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 0;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background-color: var(--white);
    color: var(--accent);
    transform: translateY(-5px);
}

/* Sections */
.bg-main { background-color: var(--bg-main); }
.bg-secondary-light { background-color: var(--bg-secondary); }

.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.title-underline {
    width: 60px; height: 3px;
    background: var(--accent);
    margin: 0 auto;
}

/* Cards */
.feature-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.icon-square {
    width: 60px; height: 60px;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem;
}

/* Testimonial Slider */
.testimonial-slider-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}

.testimonial-card {
    min-width: 350px;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Accordion */
.custom-accordion .accordion-item { border: none; margin-bottom: 10px; }
.custom-accordion .accordion-button {
    background: var(--bg-secondary);
    font-weight: 600;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--accent);
    color: var(--white);
}

/* Form */
.form-container {
    background: var(--white);
    padding: 50px;
}

.form-control {
    background: var(--bg-secondary);
    border: none;
    border-radius: 0;
    padding: 15px;
}

.form-control:focus {
    background: var(--white);
    box-shadow: none;
    border: 1px solid var(--accent);
}

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(50px); transition: 1s all ease; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: 1s all ease; }
.reveal.active, .reveal-left.active { opacity: 1; transform: translate(0); }

/* Responsive */
@media (max-width: 768px) {
    .hero-section { height: 70vh; }
    .display-3 { font-size: 2.5rem; }
    .form-container { padding: 30px 15px; }
}