/* Start custom CSS for html, class: .elementor-element-fed3e80 *//* BRAND COLORS */
:root{
    --primary:#8e5ea2;
    --primary-dark:#6f3f85;
    --accent:#d19a5b;
    --light:#f8f5fb;
    --text:#333;
}

/* HERO SECTION */

.hero-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:80px 20px;
    max-width:1200px;
    margin:auto;
}

.hero-content{
    flex:1;
}

.hero-tag{
    display:inline-block;
    background:#f3e8ff;
    color:var(--primary);
    padding:6px 14px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:15px;
    font-weight:600;
}

.hero-content h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
    color:var(--text);
}

.hero-content h1 span{
    color:var(--primary);
}

.hero-content p{
    font-size:18px;
    line-height:1.7;
    color:#555;
    margin-bottom:30px;
    max-width:500px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
    padding:14px 26px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

.btn-secondary{
    background:var(--accent);
    color:#fff;
    padding:14px 26px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-secondary:hover{
    opacity:0.9;
}

/* IMAGE */

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-section{
        flex-direction:column;
        text-align:center;
    }

    .hero-content p{
        max-width:100%;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-content h1{
        font-size:34px;
    }
}
/* =====================================================
   SEWING ROOM HERO — BUTTON FIX
   ===================================================== */

.hero-section .btn-primary {

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 255px !important;
    min-height: 58px !important;

    padding: 16px 30px !important;

    background: linear-gradient(
        135deg,
        #a35499 0%,
        #c9955b 100%
    ) !important;

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;

    border: none !important;
    border-radius: 12px !important;

    font-size: 17px !important;
    font-weight: 700 !important;

    line-height: 1.2 !important;
    text-decoration: none !important;

    box-shadow: 0 8px 20px rgba(163, 84, 153, 0.15) !important;

    transition: all 0.25s ease !important;
}


/* TEXT COLOR — IMPORTANT */
.hero-section .btn-primary:hover,
.hero-section .btn-primary:focus,
.hero-section .btn-primary:active {

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #91468a 0%,
        #bd864d 100%
    ) !important;

    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(163, 84, 153, 0.20) !important;
}


/* REMOVE THEME BUTTON EFFECTS */
.hero-section .btn-primary::before,
.hero-section .btn-primary::after {
    display: none !important;
}


/* MOBILE */
@media (max-width: 768px) {

    .hero-section .btn-primary {

        min-width: 220px !important;

        min-height: 54px !important;

        padding: 15px 24px !important;

        font-size: 16px !important;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-829c7ee *//* ===== FAQ SECTION MAIN ===== */
.faq-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f3f0ff, #ffffff);
    border-radius: 12px;
}

/* ===== HEADING ===== */
.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 35px;
    color: #5a4fcf;
    font-weight: 600;
}

/* ===== FAQ ITEM BOX ===== */
.faq-item {
    max-width: 800px;
    margin: 15px auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* ===== QUESTION BUTTON ===== */
.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: #f9f7ff;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    color: #333; /* FIXED TEXT COLOR */
    position: relative;
}

/* ===== PLUS ICON ===== */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #6a5acd;
    font-weight: 600;
}

/* ===== ACTIVE MINUS ICON ===== */
.faq-item.active .faq-question::after {
    content: "-";
}

/* ===== HOVER EFFECT ===== */
.faq-question:hover {
    background: #f1edff;
}

/* ===== ANSWER TEXT ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #ffffff;
    color: #555; /* FIXED TEXT COLOR */
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* ===== SHOW ANSWER ===== */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

/* ===== ACTIVE SHADOW ===== */
.faq-item.active {
    box-shadow: 0 10px 25px rgba(106, 90, 205, 0.15);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
    .faq-section h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px;
    }

    .faq-answer {
        font-size: 13px;
    }
}/* End custom CSS */