/* Wintrust Elementor Addons Base Styles */
:root {
    --primary: #cba876;
    --primary-dark: #b8925e;
    --secondary: #e9edc9;
    --accent: #5e6b54;
    --dark: #2a2c26;
    --text: #4a4a4a;
    --light-bg: #fdfdfb;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wintrust-section {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    padding: 6rem 0;
    line-height: 1.6;
}

.wintrust-section * { box-sizing: border-box; }

/* Grid systems */
.wintrust-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .wintrust-grid-2 { grid-template-columns: 1fr; text-align: center; }
}

/* Global Button */
.wt-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}
.wt-btn-primary { background: var(--primary); color: #fff; }
.wt-btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.wt-btn-secondary { background: transparent; color: var(--dark); border-color: var(--dark); }
.wt-btn-secondary:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }

/* Typography */
.wt-tagline { font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 1rem; }
.wt-title { font-size: 3.5rem; color: var(--dark); margin-bottom: 1rem; line-height: 1.2; font-weight: 600; }
.wt-subtitle { font-size: 1.5rem; color: var(--accent); margin-bottom: 1.5rem; font-weight: 500; }
.wt-desc { font-size: 1.1rem; margin-bottom: 2.5rem; color: var(--text); }
@media screen and (max-width: 768px) {
    .wt-title { font-size: 2.2rem; }
    .wt-subtitle { font-size: 1.2rem; }
}

/* Hero Extra */
.hero-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); transition: transform 0.8s ease; }
.hero-image:hover img { transform: scale(1.05); }

/* About Exta */
.trust-points { display: flex; flex-direction: column; gap: 1rem; list-style: none; padding: 0; }
.trust-points li { display: flex; align-items: center; gap: 15px; font-size: 1.1rem; font-weight: 500; color: var(--dark); }
.trust-points li i { color: var(--primary); font-size: 1.3rem; }
.experience-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); padding: 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); text-align: center; z-index: 2; }
.experience-badge span { font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; }

/* Formulations */
.formulations-tabs { max-width: 800px; margin: 0 auto; }
.tab-icons-row { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.tab-icon { width: 85px; height: 85px; background: var(--white); border: 2px solid rgba(203, 168, 118, 0.3); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-sm); }
.tab-icon.active, .tab-icon:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-5px); }
.tab-content-container { background: var(--white); padding: 3.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-md); border-top: 4px solid var(--primary); }
.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.tab-content h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--dark); }
.card-desc { margin-bottom: 2rem; font-size: 1.15rem; color: var(--text); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; list-style: none; padding: 0; }
.feature-list li { font-size: 1.05rem; position: relative; padding-left: 2rem; }
.feature-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--accent); font-size: 1.1rem; top: 3px; }

/* Why choose us */
.feature-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; text-align: left; }
.feature-item .feature-icon { width: 50px; height: 50px; border-radius: 12px; background-color: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; box-shadow: var(--shadow-sm); }

/* CTA */
.wt-cta { padding: 100px 0; position: relative; background-size: cover; background-position: center; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.accordion-item { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin-bottom: 1rem; overflow: hidden; }
.accordion-header { padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: var(--white); font-weight: 500; font-size: 1.1rem; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.accordion-content p { padding: 0 2rem 1.5rem; color: var(--text); margin: 0; }
