:root {
    --white: #ffffff;
    --primary: #f9963c;
    --accent: #64786e;
    --light-gray: #ebebeb;
    --radius: 24px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: #333;
}

/* Utility */
.bg-custom-light {
    background-color: var(--light-gray);
}

.text-primary-color {
    color: var(--primary);
}

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background-color: #e8852d;
    color: white;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.rounded-card {
    border-radius: var(--radius);
    border: none;
    background: var(--white);
    transition: transform 0.2s;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #fef4eb 100%);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* Flat Illustration Placeholder */
.flat-illustration {
    background-color: var(--light-gray);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--accent);
    font-weight: bold;
    text-align: center;
    border: 2px dashed #ccc;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 24px;
}

#contact-us {
    background-color: var(--accent);
    color: white;
    border-radius: var(--radius) var(--radius) 0 0;
}

.form-control {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ddd;
}

/* Parallax */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-anim {
    animation: float 4s ease-in-out infinite;
}

/* Product Card Aesthetic */
.product-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    background: #fff;
}

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

.product-icon i {
    background: linear-gradient(135deg, var(--primary), #e8852d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pricing */
.pricing-card {
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: 0.3s;
    background: #fff;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(249, 150, 60, 0.15);
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: var(--primary);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Accordion Custom */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
}

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

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

/* Testimonial Avatar */
.testimony-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #e8852d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px auto;
}