:root { --oa-green: #1B4D3E; --oa-gold: #D4AF37; --oa-dark: #0f172a; --oa-border: #e2e8f0; }

body { background: #fdfdfe; font-family: 'Poppins', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 1. Hero Section */
.cp-hero { background: var(--oa-green); padding: 80px 0; color: #fff; text-align: center; }
.cp-label { color: var(--oa-gold); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 2px; }
.cp-hero h1 { font-size: 40px; margin: 15px 0; line-height: 1.2; font-weight: 700; }
.cp-hero h1 span { color: var(--oa-gold); font-style: italic; }
.cp-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; font-size: 15px; }

/* 2. Main Grid Layout */
.cp-main-grid { display: grid; grid-template-columns: 350px 1fr; gap: 50px; margin: -50px auto 80px; }

/* Info Sidebar */
.info-card, .policy-brief { background: #fff; padding: 30px; border-radius: 16px; border: 1px solid var(--oa-border); box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 25px; }
.info-card h3, .policy-brief h3 { font-size: 18px; margin-bottom: 25px; color: var(--oa-green); font-weight: 700; border-bottom: 2px solid var(--oa-gold); display: inline-block; padding-bottom: 5px; }

.info-item { display: flex; gap: 15px; margin-bottom: 20px; }
.info-item i { color: var(--oa-gold); font-size: 20px; margin-top: 5px; }
.info-item strong { display: block; font-size: 14px; color: var(--oa-dark); }
.info-item p { font-size: 13px; color: #64748b; margin: 0; }

.policy-brief ul { list-style: none; padding: 0; }
.policy-brief li { margin-bottom: 12px; }
.policy-brief a { text-decoration: none; color: #475569; font-size: 14px; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.policy-brief a:hover { color: var(--oa-green); padding-left: 5px; }

/* Form Area */
.cp-form-wrapper { background: #fff; padding: 40px; border-radius: 20px; border: 1px solid var(--oa-border); box-shadow: 0 15px 40px rgba(0,0,0,0.05); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-box { margin-bottom: 20px; }
.input-box label { font-size: 13px; font-weight: 600; color: #1e293b; display: block; margin-bottom: 8px; }
.input-box input, .input-box select, .input-box textarea { width: 100%; padding: 12px 15px; border: 2px solid #f1f5f9; border-radius: 8px; font-size: 14px; outline: none; background: #f8fafc; transition: 0.3s; font-family: 'Poppins'; }
.input-box input:focus, .input-box textarea:focus { border-color: var(--oa-gold); background: #fff; box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1); }

.btn-submit-contact { width: 100%; padding: 16px; background: var(--oa-green); color: #fff; border: none; border-radius: 12px; font-weight: 700; cursor: pointer; transition: 0.3s; position: relative; }
.btn-submit-contact:hover { background: var(--oa-gold); color: #000; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(27,77,62,0.2); }

/* Most Selling Section */
.cp-most-selling { padding: 80px 0; background: #fff; border-top: 1px solid #f1f5f9; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 24px; color: var(--oa-green); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.ms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ms-card { text-decoration: none; text-align: center; display: block; group: hover; }
.ms-img { width: 100%; aspect-ratio: 1; border-radius: 15px; overflow: hidden; background: #f8fafc; margin-bottom: 15px; border: 1px solid #eee; }
.ms-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.ms-card:hover .ms-img img { transform: scale(1.1); }
.ms-card h4 { color: #333; font-size: 16px; margin: 0 0 8px 0; }
.ms-link { font-size: 12px; font-weight: 700; color: var(--oa-gold); text-transform: uppercase; }

/* Status Msgs */
.success-txt { color: #10b981; font-weight: 600; margin-top: 15px; text-align: center; }
.error-txt { color: #ef4444; font-weight: 600; margin-top: 15px; text-align: center; }

@media (max-width: 992px) {
    .cp-main-grid, .form-row, .ms-grid { grid-template-columns: 1fr; }
    .cp-hero h1 { font-size: 30px; }
    .cp-main-grid { margin-top: 30px; }
}