/* ===== ACC BRAND COLORS ===== */
:root {
    --peach: #FDA26C;
    --peach-dark: #fd8033;
    --beige: #FFF8C7;
    --willow: #8BCA74;
    --willow-dark: #6bb34e;
    --amethyst: #AF82CA;
    --amethyst-dark: #9b68ba;
}

/* ===== CARD STYLES ===== */
.destination-card, .blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.destination-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ===== PILLAR CARDS ===== */
.pillar-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--peach);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--peach), var(--peach-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pillar-icon i {
    font-size: 2.5rem;
    color: white;
}

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--amethyst);
}

/* ===== TEAM CARDS ===== */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ===== BADGES ===== */
.badge-primary {
    background-color: var(--peach) !important;
}

.badge-success {
    background-color: var(--willow) !important;
}

.badge-warning {
    background-color: var(--beige-dark) !important;
    color: #5a4a2e !important;
}

.badge-info {
    background-color: var(--amethyst) !important;
}

.category-badge {
    background: #f0f0f0;
    color: var(--amethyst);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: var(--peach);
    color: white;
}

/* ===== COMMENT STYLES ===== */
.comment-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.2s;
}

.comment-card:hover {
    transform: translateX(5px);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--amethyst) 0%, var(--peach) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    width: 100%;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--beige) !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* ===== ABOUT HEADER ===== */
.about-header {
    background: linear-gradient(135deg, var(--willow) 0%, var(--amethyst) 100%);
    color: white;
    padding: 3rem 0;
    border-radius: 20px;
    margin-bottom: 2rem;
}

/* ===== VALUE BADGES ===== */
.value-badge {
    background: #e8f5e9;
    color: var(--willow-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    margin: 0.5rem;
    display: inline-block;
}

/* ===== DIFFERENCE CARDS ===== */
.difference-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--peach);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.difference-card i {
    font-size: 2.5rem;
    color: var(--peach);
    margin-bottom: 1rem;
}

.difference-card h4 {
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--amethyst);
}

/* ===== AUDIENCE TAGS ===== */
.audience-tag {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.audience-tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.audience-tag i {
    font-size: 2rem;
    color: var(--peach);
    margin-bottom: 1rem;
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--peach);
    margin-bottom: 0.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--amethyst) 0%, var(--peach) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}