/* ===========================
   Global Styles & Variables
   =========================== */
:root {
    --primary-blue: #1a4d8f;
    --deep-blue: #0a2342;
    --dark-blue: #0d1b2a;
    --accent-blue: #00d4ff;
    --light-blue: #4a90e2;
    --gold: #ffa500;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --gradient-1: linear-gradient(135deg, #1a4d8f 0%, #0a2342 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #1a4d8f 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
    overflow: hidden;
}

.py-6 {
    padding: 6rem 0;
}

.mt-6 {
    margin-top: 6rem;
}

/* ===========================
   Navigation
   =========================== */
#mainNav {
    background: rgba(10, 35, 66, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#mainNav.scrolled {
    background: rgba(10, 35, 66, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light) !important;
}

.navbar-brand i {
    color: var(--accent-blue);
}

.brand-text {
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link.btn {
    background: var(--gradient-2);
    color: white !important;
    border-radius: 50px;
    padding: 0.6rem 1.5rem !important;
    margin: 0 0.5rem;
}

.nav-link.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    background: var(--gradient-1);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 77, 143, 0.2) 0%, transparent 50%);
    animation: pulseBackground 10s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path fill="rgba(255,255,255,0.02)" d="M0,0 L1200,0 L1200,800 L0,800 Z M100,100 L1100,100 L1100,700 L100,700 Z" /></svg>');
    opacity: 0.3;
}

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

.badge.bg-gradient-primary {
    background: var(--gradient-2);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.hero-meta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn {
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Floating Icons Animation */
.hero-image-container {
    position: relative;
    height: 500px;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-blue);
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon.icon-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===========================
   Organizers Section
   =========================== */
.organizers-section {
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.organizer-logo-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
}

.organizer-logo-img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

/* Old organizer-logo class - keeping for backward compatibility */
.organizer-logo {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.organizer-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* ===========================
   Section Tags & Headers
   =========================== */
.section-tag {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    background: white;
}

.about-image-wrapper {
    position: relative;
}

.about-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 2rem;
    width: 90%;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h3 {
    line-height: 1;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

/* ===========================
   Quote Section
   =========================== */
.quote-section {
    background: var(--gradient-1);
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><circle cx="100" cy="100" r="50" fill="rgba(255,255,255,0.05)"/><circle cx="1100" cy="300" r="80" fill="rgba(255,255,255,0.05)"/></svg>');
}

.bg-gradient-dark {
    background: var(--gradient-1);
}

/* ===========================
   Program Timeline
   =========================== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-marker {
    position: absolute;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-time {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--deep-blue);
}

.timeline-badge {
    display: inline-block;
    background: rgba(26, 77, 143, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ===========================
   Pricing Cards
   =========================== */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: var(--gradient-1);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-features li,
.pricing-card.featured .price-usd,
.pricing-card.featured .price-inr {
    color: white;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-usd {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-inr {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* ===========================
   Benefit Cards
   =========================== */
.benefit-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* ===========================
   Venue Section
   =========================== */
.venue-section {
    background: var(--bg-light);
}

.venue-image-wrapper {
    position: relative;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.venue-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.venue-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.venue-feature i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.venue-address {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-blue);
}

/* ===========================
   Committee Section
   =========================== */
.committee-card,
.organizer-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.committee-card:hover,
.organizer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Large Patron Card */
.committee-card-large {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 3px solid var(--primary-blue);
}

.committee-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(26, 77, 143, 0.3);
}

.committee-avatar-img-large {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-blue);
    box-shadow: 0 6px 20px rgba(26, 77, 143, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.committee-avatar-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.committee-card-large h4 {
    color: var(--deep-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

.committee-avatar,
.organizer-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: white;
}

.organizer-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Image Avatar Styles */
.committee-avatar-img,
.organizer-avatar-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(26, 77, 143, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.organizer-avatar-img {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-blue);
}

.committee-avatar-img:hover,
.organizer-avatar-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(26, 77, 143, 0.4);
}

.committee-avatar-img img,
.organizer-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

/* Fallback for icon-based avatars */
.committee-avatar-img i,
.organizer-avatar-img i {
    font-size: 3rem;
    color: var(--primary-blue);
}

/* Operational Committee Cards */
.operational-team-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.operational-team-card h4 {
    font-weight: 600;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.75rem;
}

.small-member-card {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.small-member-card:hover {
    background: rgba(26, 77, 143, 0.05);
    transform: translateY(-3px);
}

.small-avatar-img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 2px 10px rgba(26, 77, 143, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.small-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.small-member-card h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===========================
   Register Section
   =========================== */
.register-section {
    position: relative;
    background: var(--gradient-1);
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><polygon points="0,100 300,0 600,80 900,20 1200,100 1200,400 0,400" fill="rgba(255,255,255,0.03)"/></svg>');
}

/* ===========================
   Contact Section
   =========================== */
.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.contact-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-card a {
    color: var(--text-dark);
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-card a:hover {
    color: var(--primary-blue);
}

.contact-card p {
    font-size: 0.95rem;
}

/* Responsive adjustments for 3-4 cards */
@media (min-width: 992px) {
    .contact-section .col-lg-4 {
        max-width: 32%;
    }
}

@media (max-width: 991px) {
    .contact-card {
        margin-bottom: 1rem;
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-marker {
        left: 0;
    }
    
    .about-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-image-container {
        height: 300px;
        margin-top: 3rem;
    }
    
    .py-6 {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .venue-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ===========================
   Utility Classes
   =========================== */
.btn-primary {
    background: var(--gradient-2);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
}

.text-primary {
    color: var(--primary-blue) !important;
}

.bg-gradient-primary {
    background: var(--gradient-2);
}
