/* =============================================================================
   DESIGN TOKENS
   ============================================================================= */
:root {
    --primary: #B39755;
    --primary-light: #d6c7a0;
    --primary-dark: #9a8249;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --darker-gray: #495057;
    --secondary: #1a2a3a;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    --gradient: linear-gradient(135deg, #B39755, #9a8249);
    --section-radius: 18px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--darker-gray);
    background-color: var(--light-gray);
    overflow-x: clip;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}


/* =============================================================================
   HERO
   ============================================================================= */
.hero {
    background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80')
        no-repeat center center / cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.92;
    animation: fadeInUp 0.8s 0.2s ease-out both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.4s ease-out both;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; max-width: 300px; margin: 0 auto; }
}


/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(179, 151, 85, 0.4);
}
.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 25px rgba(179, 151, 85, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-light);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.btn-light {
    background: white;
    color: var(--primary-dark);
    padding: 1.2rem 3rem;
    font-weight: 700;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    font-size: 1.05rem;
    letter-spacing: 1.2px;
}
.btn-light:hover {
    background: rgba(255,255,255,0.92);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .btn { width: 100%; }
}


/* =============================================================================
   SECTIONS
   ============================================================================= */
section { padding: 8rem 0; }

.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--secondary);
}
.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--gradient);
    margin: 1.5rem auto;
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto 4rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .section-title { font-size: 2.3rem; }
}


/* =============================================================================
   STRATEGY CARDS
   ============================================================================= */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.strategy-card {
    background: white;
    border-radius: var(--section-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    border: none;
    transform: translateY(0);
}
.strategy-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}
.strategy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.strategy-card:hover::before { transform: scaleX(1); }

.card-icon {
    width: 80px; height: 80px;
    border-radius: 20px;
    background: rgba(179, 151, 85, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
}
.strategy-card:hover .card-icon {
    background: rgba(179, 151, 85, 0.2);
    transform: scale(1.1);
}

.strategy-card h3 { font-size: 1.7rem; margin-bottom: 1.2rem; color: var(--secondary); }
.strategy-card p  { color: var(--dark-gray); margin-bottom: 1.8rem; font-weight: 300; }

.strategy-card ul { list-style: none; padding-left: 0; }
.strategy-card ul li {
    margin-bottom: 0.9rem;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}
.strategy-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}


/* =============================================================================
   TIMELINE
   ============================================================================= */
.process-section {
    background: linear-gradient(135deg, #f0f9ff, #e6f4ff);
    border-radius: var(--section-radius);
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3rem;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 4px;
    background: var(--primary-light);
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    width: 46%;
    padding: 2.5rem;
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.timeline-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.timeline-item:nth-child(odd)  { left: 0; text-align: left; border-left: none; border-right: 4px solid var(--primary); }
.timeline-item:nth-child(even) { left: 54%; }

.timeline-item::after {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
    background: var(--gradient);
    border: 5px solid white;
    border-radius: 50%;
    top: 2.5rem;
    box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item:nth-child(odd)::after  { right: -15px; }
.timeline-item:nth-child(even)::after { left: -15px; }

.timeline-item h3 { color: var(--primary); margin-bottom: 0.8rem; font-size: 1.5rem; }
.timeline-item p  { color: var(--dark-gray); }

@media (max-width: 992px) {
    .timeline::before { left: 30px; }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        margin-left: 70px;
        text-align: left !important;
        border-left: 4px solid var(--primary) !important;
        border-right: none !important;
    }
    .timeline-item:nth-child(even)::after,
    .timeline-item:nth-child(odd)::after { left: -15px; right: auto; }
}


/* =============================================================================
   STATS
   ============================================================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary);
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}
.stat-label {
    font-size: 1.15rem;
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    z-index: 2;
}
.stat-card::after {
    content: attr(data-stat);
    position: absolute;
    bottom: -30px; right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(179, 151, 85, 0.05);
    z-index: 1;
}

@media (max-width: 768px) {
    .stat-number { font-size: 2.8rem; }
}


/* =============================================================================
   TESTIMONIALS
   ============================================================================= */
.testimonials {
    background-color: #f1f5f9;
    border-radius: var(--section-radius);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 1.5rem; left: 1.8rem;
    font-size: 5rem;
    color: rgba(179, 151, 85, 0.1);
    line-height: 1;
}

.testimonial-content { position: relative; z-index: 2; }

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--darker-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    padding-left: 2rem;
}
.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%; width: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.testimonial-author { display: flex; align-items: center; padding-left: 2rem; }

.author-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 3px solid var(--primary-light);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h4 { margin-bottom: 0.3rem; color: var(--secondary); }
.author-info p  { color: var(--primary); font-size: 0.95rem; font-weight: 500; }

@media (max-width: 768px) {
    .testimonial-card { padding: 30px 20px; }
}


/* =============================================================================
   CTA SECTION
   ============================================================================= */
.cta-section {
    background: var(--gradient);
    color: white;
    text-align: center;
    border-radius: var(--section-radius);
    padding: 5rem 2rem;
    margin: 6rem auto;
    max-width: 950px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.cta-section::before { top: -80px; right: -80px; width: 300px; height: 300px; }
.cta-section::after  { bottom: -100px; left: -100px; width: 350px; height: 350px; }

.cta-content { position: relative; z-index: 5; }
.cta-section h2 { font-size: 2.8rem; margin-bottom: 1.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.cta-section p  { font-size: 1.3rem; opacity: 0.92; max-width: 650px; margin: 0 auto 3rem; font-weight: 300; }


/* =============================================================================
   FOOTER
   ============================================================================= */
.footer-dark {
    background-color: var(--secondary);
    color: white;
    position: relative;
    overflow: hidden;
}
.footer-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.social-icon {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
    width: 45px; height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
}
.social-icon:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
}


/* =============================================================================
   UTILITIES & ANIMATIONS
   ============================================================================= */
.highlight { position: relative; z-index: 1; }
.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0;
    width: 100%; height: 12px;
    background: rgba(231, 200, 115, 0.3);
    z-index: -1;
    transform: skewX(-15deg);
}

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

.bg-custom-light { background-color: var(--light-gray) !important; }
.bg-deep-blue    { background-color: var(--secondary); }
.ptb-6           { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.mb-6            { margin-bottom: 3rem !important; }
.lead            { font-size: 1.25rem; font-weight: 400; }

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

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