/*
Theme Name: Good Flooring
Theme URI: https://goodflooring.com.au
Description: Custom theme for Good Flooring - Professional Floor Sanding Melbourne
Author: Good Flooring
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: goodflooring
*/

:root {
    --primary: #2C1810;
    --secondary: #8B6F47;
    --accent: #C19A6B;
    --light: #F5F1E8;
    --white: #FFFFFF;
    --text: #3A3A3A;
    --green: #4A7C59;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*1. 배경색을 흰색으로 */
    background: #FFFFFF !important;
    z-index: 1000;
    padding: 2.5rem 5% 1.5rem 5% !important; /*위아래 모두 2 동일하게설정*/
    /*3. 그림자를 더 부드럽게 (경계선이 더 자연스러워짐) */
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-link svg {
    transition: opacity 0.3s;
}

.logo-link:hover svg {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-phone {
    background: #2C7A3A;
    color: #FFFFFF !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(44, 122, 58, 0.4);
    letter-spacing: 0.5px;
}

.cta-phone:hover {
    background: #1e5c2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 122, 58, 0.5);
    color: #FFFFFF !important;
}

/* Hero Section */
.hero {
    margin-top: 0px !important;
    padding-top: 120px !importatn;
    height: 90vh;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.9), rgba(139, 111, 71, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23C19A6B" width="1200" height="600"/><path fill="%238B6F47" opacity="0.3" d="M0 300L50 320L100 280L150 310L200 290L250 315L300 285L350 305L400 295L450 318L500 288L550 308L600 292L650 312L700 298L750 320L800 285L850 305L900 295L950 315L1000 290L1050 310L1100 300L1150 318L1200 295V600H0Z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="none"/><path fill="rgba(255,255,255,0.03)" d="M0 0h50v50H0zM50 50h50v50H50z"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-features {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--light);
    font-size: 1.2rem;
}

.hero-feature::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--green);
    border-radius: 50%;
    font-weight: 700;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.3);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Trust Bar */
.trust-bar {
    background: var(--primary);
    padding: 2.5rem 5%;
    text-align: center;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.trust-item {
    color: var(--light);
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    color: var(--secondary);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text);
    line-height: 1.8;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 5%;
    background: var(--white);
}

.gallery-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.gallery-item {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.before-after-pair .comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.before-section,
.after-section {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.before-section {
    border-right: 3px solid var(--white);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.ba-badge {
    position: absolute;
    top: 15px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    z-index: 2;
    font-family: 'Playfair Display', serif;
}

.before-badge {
    left: 15px;
    background: rgba(139, 111, 71, 0.95);
    color: var(--white);
}

.after-badge {
    right: 15px;
    background: rgba(74, 124, 89, 0.95);
    color: var(--white);
}

.standalone .comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.completed-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    z-index: 2;
    font-family: 'Playfair Display', serif;
}

.gallery-info {
    padding: 2rem;
}

.gallery-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gallery-info p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-item {
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text);
    border: 1px solid rgba(139, 111, 71, 0.2);
}

.gallery-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    min-height: 450px;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gallery-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 90%;
}

.cta-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat strong {
    font-size: 2rem;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.stat span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.gallery-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.gallery-cta .btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Eco Section */
.eco-section {
    padding: 6rem 5%;
    background: var(--green);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.eco-section::before {
    content: '�뙼';
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.eco-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eco-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.eco-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.eco-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.eco-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.eco-feature-icon {
    font-size: 2rem;
}

/* 본문 텍스트(p)의 대비를 높이기 위해 새로 추가하는 코드 */
.eco-feature p {
    color: #FFFFFF !important; /* 가장 밝은 흰색으로 설정 */
    opacity: 1 !important;    /* 투명도가 있다면 제거 */
}

.eco-feature-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A1A !important;
}

/* Areas Section */
.areas {
    padding: 6rem 5%;
    background: var(--white);
}

.areas-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.area-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.area-card:hover {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.area-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.area-card p {
    color: var(--text);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-info p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.3rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.8;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary);
    color: var(--white);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cormorant Garamond', serif;
}

.submit-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Contact Form Messages */
.contact-message {
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.contact-message.success {
    background: rgba(74, 124, 89, 0.2);
    border: 2px solid var(--green);
    color: var(--white);
}

.contact-message.error {
    background: rgba(200, 50, 50, 0.2);
    border: 2px solid #c83232;
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--light);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.footer-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.8;
    font-size: 1rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .contact-container,
    .eco-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
    }
    
    .main-nav.active .nav-links li {
        animation: fadeInUp 0.5s ease forwards;
    }
    
    .nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links li:nth-child(6) { animation-delay: 0.35s; }
    .nav-links li:nth-child(7) { animation-delay: 0.4s; }
    .nav-links li:nth-child(8) { animation-delay: 0.45s; }
    
    .nav-links a {
        font-size: 1.4rem;
    }
    
    .cta-phone {
        font-size: 1.2rem !important;
        padding: 1rem 2rem !important;
    }
    
    .logo-link svg {
        width: 180px;
        height: 42px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero {
        height: auto;
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .trust-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .areas-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-pair .comparison-container {
        grid-template-columns: 1fr;
    }
    
    .before-section {
        border-right: none;
        border-bottom: 3px solid var(--white);
    }
    
    .cta-stats {
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* ������ WCAG AA Contrast Fixes ������������������������������������������������������������������������������������������������ */

/* section-label: #8B6F47 on #F5F1E8 = 2.8:1 (fail) �� #5C3D1E = 4.6:1 (pass) */
.section-label {
    color: #5C3D1E !important;
}

/* ba-badge: 異⑸텇�� ��鍮� �좎� */
.before-badge {
    background: rgba(44, 24, 16, 0.92) !important;
    color: #FFFFFF !important;
}

.after-badge {
    background: rgba(34, 85, 50, 0.92) !important;
    color: #FFFFFF !important;
}

/* eco-feature-text: �뱀깋 諛곌꼍(--green: #4A7C59)�먯꽌 �곗깋 = 4.6:1 (pass) */
.eco-section .eco-feature-text {
    color: #FFFFFF !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0,2);
}