/* ====================================
   DRIP PAGES COMMON STYLES
   ==================================== */

/* Main Header Section */
.dripmainheadingheadersection {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #2d7a7a 100%);
    padding: 10rem 0 4rem 0;
    text-align: center;
    margin-bottom: 0;
}

.dripmainheadingheadersection h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dripmainheadingheadersection h2 {
    color: var(--secondary-gold);
    font-size: 2rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(46, 125, 125, 0.05) 0%, rgba(46, 125, 125, 0.02) 100%);
    padding: 4rem 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    padding-right: 0;
}

.hero-content h3 {
    color: var(--primary-teal);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.hero-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-gold);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.pill {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #2d7a7a 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(46, 125, 125, 0.3);
}

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

/* Content Cards */
.content-card {
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-white {
    background: var(--white);
}

.card-gray {
    background: var(--light-gray);
}

.card-teal {
    background: linear-gradient(135deg, rgba(46, 125, 125, 0.1) 0%, rgba(46, 125, 125, 0.05) 100%);
    border-left: 4px solid var(--primary-teal);
}

/* Section Title */
.section-title {
    color: var(--primary-teal);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-gold);
}

/* Text Styles */
p.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(233, 196, 106, 0.1) 0%, rgba(233, 196, 106, 0.05) 100%);
    border-left: 4px solid var(--secondary-gold);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.highlight-box p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #2d7a7a 100%);
    border-radius: 15px;
    margin-top: 3rem;
}

.cta-section .btn-primary {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    background: var(--secondary-gold);
    color: var(--neutral-dark);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary-teal);
}

/* Stats Section */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.stat-title {
    font-size: 1.1rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: #666;
}

/* Divider */
.divider {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--secondary-gold) 50%, var(--primary-teal) 100%);
    margin: 4rem 0;
    border-radius: 2px;
}

/* Utility Classes */
.padding2rem {
    padding: 2rem;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image-wrapper {
        order: 1;
    }
    
    .dripmainheadingheadersection h1 {
        font-size: 2.5rem;
    }
    
    .dripmainheadingheadersection h2 {
        font-size: 1.5rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-pills {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h3 {
        font-size: 1.6rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section .btn-primary {
        font-size: 1rem;
        padding: 0.8rem 2rem;
        display: block;
        margin: 0.5rem auto;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .dripmainheadingheadersection {
        padding: 8rem 1rem 3rem 1rem;
    }
    
    .dripmainheadingheadersection h1 {
        font-size: 2rem;
    }
    
    .dripmainheadingheadersection h2 {
        font-size: 1.2rem;
    }
    
    .hero-content h3 {
        font-size: 1.4rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .pill {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}
