/* Custom Variables */
:root {
    --brand-green: #1b8a33;
    --brand-gold: #c29a43;
    --brand-light-green: #e8f3ea;
    --brand-dark-green: #126123;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Utility Colors */
.text-brand-green { color: var(--brand-green) !important; }
.text-brand-gold { color: var(--brand-gold) !important; }
.bg-brand-green { background-color: var(--brand-green) !important; }
.bg-brand-gold { background-color: var(--brand-gold) !important; }
.bg-brand-light-green { background-color: var(--brand-light-green) !important; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--brand-green); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-dark-green); }

html { scroll-behavior: smooth; }

/* Background pattern */
.bg-pattern {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b8a33' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Buttons */
.btn-brand-gold {
    background-color: var(--brand-gold);
    color: white;
    border: none;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
}
.btn-brand-gold:hover {
    background-color: #a8853a;
    color: white;
    transform: scale(1.05);
}
.btn-outline-brand {
    background-color: white;
    color: var(--brand-green);
    border: 2px solid var(--brand-green);
    font-weight: bold;
    transition: all 0.2s;
}
.btn-outline-brand:hover {
    background-color: var(--brand-green);
    color: white;
}
.hover-text-gold:hover { color: var(--brand-gold) !important; }

/* Hero Section */
.hero-section, .page-hero {
    background-color: var(--brand-green);
    color: white;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.page-hero {
    padding: 4rem 0;
    text-align: center;
}
.page-hero h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.hero-text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Guarantees Box in Hero */
.hero-guarantees-box {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    transform: rotate(3deg);
    transition: transform 0.3s;
}
.hero-guarantees-box:hover {
    transform: rotate(0deg);
}
.guarantee-item {
    background: var(--brand-light-green);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(27, 138, 51, 0.1);
}
.guarantee-icon {
    background: var(--brand-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.25rem;
}
.check-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: var(--brand-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 4px solid var(--brand-green);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 3;
}

/* Service & Value Cards */
.service-card {
    border-top: 4px solid var(--brand-green);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}
.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: var(--brand-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.service-card:hover .service-icon-wrapper {
    background-color: var(--brand-green);
}
.service-card:hover .service-icon-wrapper i {
    color: white !important;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
    border-bottom: 4px solid var(--brand-gold);
}
.value-card:hover {
    transform: translateY(-5px);
}
.value-icon {
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
}
.service-icon-large {
    font-size: 4rem;
    color: var(--brand-green);
    background: rgba(27, 138, 51, 0.1);
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}
.feature-list {
    list-style: none;
    padding-left: 0;
}
.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}
.feature-list i {
    color: var(--brand-gold);
    margin-top: 0.3rem;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Forms Styling */
.form-control, .form-select {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding-left: 2.5rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 0.25rem rgba(27, 138, 51, 0.25);
}
.input-group-text-custom {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    color: #6c757d;
    background: transparent;
    border: none;
}

/* Custom Radio Buttons */
.contact-method-radio {
    display: none;
}
.contact-method-label {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: white;
}
.contact-method-label:hover {
    background-color: #f8f9fa;
}
.contact-method-radio:checked + .contact-method-label {
    border-color: var(--brand-green);
    background-color: var(--brand-light-green);
    color: var(--brand-green);
    font-weight: bold;
}

/* Legal & Policy Pages */
.policy-content {
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--brand-gold);
}
.policy-content h2 {
    color: var(--brand-green);
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--brand-light-green);
    padding-bottom: 0.5rem;
}
.policy-content p, .policy-content li {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}
.policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
}

/* FAQ Accordion Styling */
.accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 0.75rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.accordion-button {
    font-weight: 600;
    color: #333;
    padding: 1.25rem 1.5rem;
}
.accordion-button:not(.collapsed) {
    background-color: var(--brand-light-green);
    color: var(--brand-green);
    font-weight: 700;
    box-shadow: none;
}
.accordion-button:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 0.25rem rgba(27, 138, 51, 0.25);
}
.accordion-button::after {
    background-size: 1.25rem;
}
.accordion-body {
    color: #555;
    line-height: 1.7;
    padding: 1.5rem;
    background-color: #fff;
}