/* ==========================================================================
   Gusa Events - Modern Premium Design System & CSS Enhancements
   ========================================================================== */

:root {
    --gusa-primary: #e11975;
    --gusa-primary-dark: #b0105a;
    --gusa-primary-light: #ff3388;
    --gusa-secondary: #0f172a;
    --gusa-secondary-light: #1e293b;
    --gusa-accent: #f59e0b;
    --gusa-accent-hover: #d97706;
    --gusa-text-main: #1e293b;
    --gusa-text-muted: #64748b;
    --gusa-bg-light: #f8fafc;
    --gusa-card-bg: #ffffff;
    --gusa-glass-bg: rgba(255, 255, 255, 0.85);
    --gusa-glass-dark: rgba(15, 23, 42, 0.88);
    --gusa-border-color: rgba(226, 232, 240, 0.8);
    --gusa-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --gusa-shadow-md: 0 10px 30px rgba(225, 25, 117, 0.08), 0 4px 12px rgba(15, 23, 42, 0.05);
    --gusa-shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12), 0 8px 24px rgba(225, 25, 117, 0.15);
    --gusa-radius-sm: 8px;
    --gusa-radius-md: 16px;
    --gusa-radius-lg: 24px;
    --gusa-radius-full: 9999px;
    --gusa-font-sans: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --gusa-font-heading: 'Playfair Display', 'Poppins', Georgia, serif;
}

/* Global Font & Smooth Scroll Setup */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--gusa-font-sans);
    color: var(--gusa-text-main);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Header & Glassmorphism Nav */
.navbar-b {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    background: var(--gusa-glass-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-b.navbar-reduce {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-b .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    transition: all 0.25s ease;
    border-radius: var(--gusa-radius-full);
}

.navbar-b .nav-link:hover,
.navbar-b .nav-link.active {
    color: #ffffff !important;
    background: rgba(225, 25, 117, 0.2);
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--gusa-primary) 0%, var(--gusa-primary-dark) 100%);
    color: #ffffff !important;
    font-weight: 600;
    padding: 8px 20px !important;
    border-radius: var(--gusa-radius-full) !important;
    box-shadow: 0 4px 15px rgba(225, 25, 117, 0.35);
    transition: all 0.3s ease !important;
    white-space: nowrap;
    display: inline-block;
}


.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 25, 117, 0.5);
}

/* Gradient Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #e11975 0%, #ff529a 50%, #f59e0b 100%);
    -webkit-background-clip: text;
  
    display: inline-block;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Modern Section */
.hero-modern {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.88) 100%), url('../images/background/b5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 90px 0;
    color: #ffffff;
    overflow: hidden;
}

.hero-modern::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, #ffffff 100%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 25, 117, 0.15);
    border: 1px solid rgba(225, 25, 117, 0.35);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: var(--gusa-radius-full);
    color: #ff77b4;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--gusa-accent);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 720px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-gusa-primary {
    background: linear-gradient(135deg, var(--gusa-primary) 0%, var(--gusa-primary-dark) 100%);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--gusa-radius-full);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(225, 25, 117, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none !important;
}

.btn-gusa-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(225, 25, 117, 0.55);
}

.btn-gusa-outline {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    backdrop-filter: blur(8px);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 30px;
    border-radius: var(--gusa-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-gusa-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Feature Highlights Grid */
.hero-highlights-row {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    gap: 30px;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
}

.hero-highlight-item i {
    width: 36px;
    height: 36px;
    background: rgba(225, 25, 117, 0.2);
    color: #ff77b4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Modern Section Titles */
.gusa-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px auto;
}

.gusa-section-tag {
    display: inline-block;
    color: var(--gusa-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.gusa-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gusa-secondary);
    line-height: 1.25;
    margin-bottom: 16px;
}

.gusa-section-subtitle {
    font-size: 1.1rem;
    color: var(--gusa-text-muted);
    line-height: 1.6;
}

/* Feature Card Glass Box */
.modern-feature-card {
    background: var(--gusa-card-bg);
    border: 1px solid var(--gusa-border-color);
    border-radius: var(--gusa-radius-md);
    padding: 32px 28px;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--gusa-shadow-sm);
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gusa-primary), var(--gusa-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gusa-shadow-md);
    border-color: rgba(225, 25, 117, 0.3);
}

.modern-feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--gusa-radius-md);
    background: rgba(225, 25, 117, 0.08);
    color: var(--gusa-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.modern-feature-card:hover .feature-icon-wrapper {
    background: var(--gusa-primary);
    color: #ffffff;
    transform: scale(1.08);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gusa-secondary);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--gusa-text-muted);
    line-height: 1.6;
}

/* Event Category Cards */
.category-card {
    position: relative;
    border-radius: var(--gusa-radius-md);
    overflow: hidden;
    box-shadow: var(--gusa-shadow-sm);
    transition: all 0.35s ease;
    height: 320px;
    margin-bottom: 30px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.9) 80%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    transition: all 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(180deg, rgba(225, 25, 117, 0.2) 0%, rgba(15, 23, 42, 0.95) 85%);
}

.category-badge {
    background: var(--gusa-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--gusa-radius-full);
    display: inline-block;
    margin-bottom: 8px;
    width: fit-content;
}

.category-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.category-card-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Competitor Comparison Matrix Table */
.comparison-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 90px 0;
    position: relative;
}

.comparison-table-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--gusa-radius-lg);
    backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 22px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th.highlight-col {
    background: rgba(225, 25, 117, 0.25);
    color: #ff77b4;
    border-top: 3px solid var(--gusa-primary);
}

.comparison-table td {
    padding: 18px 24px;
    font-size: 0.95rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #ffffff;
}

.comparison-table td.highlight-col {
    background: rgba(225, 25, 117, 0.12);
    font-weight: 700;
    color: #ffffff;
}

.check-icon {
    color: #10b981;
    font-size: 18px;
}

.cross-icon {
    color: #ef4444;
    font-size: 18px;
}

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border: 1px solid var(--gusa-border-color);
    border-radius: var(--gusa-radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: var(--gusa-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--gusa-primary);
    box-shadow: var(--gusa-shadow-lg);
    transform: translateY(-8px);
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gusa-primary), var(--gusa-primary-dark));
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--gusa-radius-full);
}

.pricing-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gusa-secondary);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--gusa-text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gusa-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gusa-secondary);
}

.pricing-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gusa-text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--gusa-text-main);
    padding: 10px 0;
    border-bottom: 1px dashed #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #10b981;
    font-size: 14px;
}

/* Contact Form Modern Redesign */
.gusa-form-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    padding: 2.5rem;
}

.gusa-form-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px dashed #f1f5f9;
}

.gusa-form-section-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gusa-primary) 0%, var(--gusa-primary-dark) 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gusa-form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gusa-secondary);
    margin: 0;
    text-uppercase;
    letter-spacing: 0.5px;
}

.gusa-input-group {
    position: relative;
}

.gusa-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 15px;
    z-index: 4;
    transition: color 0.3s ease;
}

.gusa-textarea-icon {
    top: 20px !important;
    transform: none !important;
}

.gusa-input-control {
    width: 100%;
    padding: 12px 16px 12px 46px !important;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gusa-secondary);
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gusa-input-control:focus {
    background-color: #ffffff;
    border-color: var(--gusa-primary);
    box-shadow: 0 0 0 4px rgba(225, 25, 117, 0.12);
    outline: none;
}

.gusa-input-group:focus-within .gusa-input-icon {
    color: var(--gusa-primary);
}

.gusa-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
    display: block;
}

.gusa-submit-btn {
    background: linear-gradient(135deg, var(--gusa-primary) 0%, var(--gusa-primary-dark) 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 32px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 10px 25px rgba(225, 25, 117, 0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}

.gusa-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(225, 25, 117, 0.5);
}

.gusa-sidebar-card {
    background: linear-gradient(135deg, #090d16 0%, #111827 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.gusa-sidebar-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 25, 117, 0.22) 0%, rgba(225, 25, 117, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.gusa-sidebar-card::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Premium Badge Style */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(225, 25, 117, 0.12);
    border: 1px solid rgba(225, 25, 117, 0.25);
    color: #ff77b4;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 14px;
    border-radius: 9999px;
    z-index: 2;
    position: relative;
}

.badge-premium-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gusa-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--gusa-primary);
    animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px var(--gusa-primary);
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
        box-shadow: 0 0 12px var(--gusa-primary);
    }
}

/* Glowing Interactive Contact Tiles */
.gusa-contact-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    text-decoration: none !important;
}

.gusa-contact-tile:hover {
    background: rgba(255, 25, 117, 0.04);
    border-color: rgba(225, 25, 117, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.gusa-contact-tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(225, 25, 117, 0.15) 0%, rgba(225, 25, 117, 0.05) 100%);
    border: 1px solid rgba(225, 25, 117, 0.25);
    color: #ff77b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.gusa-contact-tile:hover .gusa-contact-tile-icon {
    background: linear-gradient(135deg, var(--gusa-primary) 0%, var(--gusa-primary-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(225, 25, 117, 0.4);
    transform: scale(1.05) rotate(5deg);
}

/* Premium Highlight List */
.gusa-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 2;
    position: relative;
}

.gusa-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    transition: color 0.25s ease;
}

.gusa-highlight-item:hover {
    color: #ffffff;
}

.gusa-highlight-icon {
    color: #10b981;
    font-size: 11px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    transition: all 0.25s ease;
}

.gusa-highlight-item:hover .gusa-highlight-icon {
    background: #10b981;
    color: #ffffff;
    transform: scale(1.1);
}

/* Enhanced Social Media Buttons */
.gusa-social-group {
    display: flex;
    gap: 12px;
    z-index: 2;
    position: relative;
}

.gusa-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.gusa-social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gusa-social-btn.facebook:hover {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.gusa-social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

.gusa-social-btn.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.gusa-social-btn.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}



/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
    border: 1px solid var(--gusa-border-color);
    border-radius: var(--gusa-radius-md) !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--gusa-shadow-sm);
}

.faq-accordion .accordion-button {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gusa-secondary);
    padding: 20px 24px;
    background: #ffffff;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--gusa-primary);
    background: rgba(225, 25, 117, 0.04);
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px 24px;
    color: var(--gusa-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-sub {
        font-size: 1.1rem;
    }
    .gusa-section-title {
        font-size: 2rem;
    }
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .btn-gusa-primary, .btn-gusa-outline {
        width: 100%;
        justify-content: center;
    }
    .gusa-section-title {
        font-size: 1.75rem;
    }
}

/* Modern Testimonials Styling */
.testimonial-card-modern {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.testimonial-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(225, 25, 117, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(225, 25, 117, 0.2) !important;
}

.testimonial-card-modern .testimonial-quote-bg {
    transition: all 0.35s ease;
}

.testimonial-card-modern:hover .testimonial-quote-bg {
    transform: scale(1.15) rotate(-5deg);
    opacity: 0.18 !important;
}

