/* ========================================
   MG EVENTS - Enhanced Homepage Styles
   ======================================== */

/* ========== PROFESSIONAL ENHANCEMENTS ========== */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Enhanced Shadows for Depth */
.card-shadow {
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-shadow:hover {
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

/* Premium Gold Gradient */
.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Stagger animations for lists */
.stagger-animation>* {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-animation>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-animation>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-animation>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-animation>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-animation>*:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-animation>*:nth-child(6) {
    animation-delay: 0.6s;
}

/* Professional Button Enhancements */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Card Hover Effects */
.service-card,
.pricing-card,
.blog-card,
.portfolio-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.pricing-card:hover,
.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Subtle Parallax Effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Professional Loading State */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg,
            #f0f0f0 0%,
            #e0e0e0 50%,
            #f0f0f0 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ========== HERO SECTION WITH VIDEO BACKGROUND ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 120px;
    overflow: hidden;
    justify-content: flex-start !important;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0;
    margin-left: 0 !important;
    padding-left: var(--space-6);
    display: block;
}

/* Video Background Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Light Overlay for Video - Just for text readability */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Decorative overlay pattern */
.hero-video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: shimmerOverlay 10s ease-in-out infinite;
}

@keyframes shimmerOverlay {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: left !important;
    margin-top: -80px !important;
}

.hero h1,
.hero p,
.hero-badge {
    text-align: left !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    margin-top: -100px !important;
    animation: fadeInUp 0.6s ease, glow 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: var(--secondary-400);
    animation: sparkle 2s ease-in-out infinite;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    line-height: 1.8;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
    justify-content: flex-start;
}

.hero-buttons .btn {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    position: relative;
    overflow: hidden;
    border: none !important;
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: none !important;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border: none !important;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn-secondary {
    display: none;
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-600);
    border-color: white;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.hero-image {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

/* ========== STATS SECTION ========== */
.stats {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-300), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.stat-card {
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-600), var(--secondary-500));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.2) 100%);
    color: #d4af37;
    font-size: 2rem;
    position: relative;
    transition: all var(--transition-base);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: var(--space-24) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-header>div {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-6);
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    margin-right: var(--space-4);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
    vertical-align: middle;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-500), var(--accent-500));
    border-radius: var(--radius-full);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.service-card {
    position: relative;
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(128, 0, 32, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.15) 100%);
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: var(--space-4);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
    font-size: 0.9375rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-600);
    font-weight: 600;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.service-link i {
    transition: transform var(--transition-base);
}

.service-link:hover {
    gap: var(--space-3);
    color: var(--primary-900);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(245, 158, 11, 0.2));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.15);
}

.portfolio-category {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--secondary-500), var(--secondary-700));
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.portfolio-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.testimonials .section-badge {
    background: linear-gradient(135deg, var(--secondary-500), var(--secondary-700));
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-title::after {
    background: linear-gradient(90deg, var(--secondary-500), var(--accent-500));
}

.testimonials .section-description {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: var(--space-12);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.15));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease, slideUp 0.5s ease;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: rgba(245, 158, 11, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--secondary-500);
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.testimonial-info p {
    color: var(--secondary-400);
    font-size: 0.9375rem;
}

.testimonial-rating {
    margin-top: var(--space-2);
    color: var(--secondary-500);
    font-size: 1.125rem;
}

/* ========== CTA SECTION ========== */
.cta {
    display: none;
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: var(--space-8);
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta .btn {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    position: relative;
    z-index: 1;
}

.cta .btn-secondary {
    background: white;
    color: var(--primary-600);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta .btn-secondary:hover {
    background: var(--secondary-500);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.cta .hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-outline:hover {
    background: white;
    color: var(--primary-600);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-20px);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes particleFloat {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
    }
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: var(--space-12) 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.125rem;
    }

    .testimonial-quote {
        font-size: 1.25rem;
    }
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-us {
    padding: var(--space-24) 0;
    background: white;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-600), var(--secondary-500));
    transition: width var(--transition-base);
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(26, 26, 26, 0.1));
    color: #000000;
    font-size: 2rem;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ========== OUR PROCESS SECTION ========== */
.our-process {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.our-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    position: relative;
}

.process-step {
    position: relative;
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.process-number {
    position: absolute;
    top: -20px;
    left: var(--space-6);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-900));
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    z-index: 1;
}

.process-content {
    padding-top: var(--space-8);
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 var(--space-4) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(245, 158, 11, 0.1));
    color: var(--primary-600);
    font-size: 1.75rem;
    transition: all var(--transition-base);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(245, 158, 11, 0.2));
}

.process-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.process-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ========== CITIES SECTION ========== */
.cities-section {
    padding: var(--space-24) 0;
    background: white;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.city-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.city-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.city-card:hover .city-image img {
    transform: scale(1.1);
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.city-card:hover .city-overlay {
    opacity: 1;
}

.city-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    animation: bounceIn 0.5s ease;
}

.city-content {
    padding: var(--space-6);
}

.city-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.city-content>p {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    font-size: 0.9375rem;
}

.city-features {
    list-style: none;
    margin-bottom: var(--space-6);
}

.city-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.city-features i {
    color: var(--success);
    font-size: 1rem;
}

.city-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-600);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
}

.city-link i {
    transition: transform var(--transition-base);
}

.city-link:hover {
    gap: var(--space-3);
    color: var(--primary-900);
}

.city-link:hover i {
    transform: translateX(5px);
}

/* ========== ADDITIONAL ANIMATIONS ========== */
@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========== RESPONSIVE FOR NEW SECTIONS ========== */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.faq-question {
    padding: var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-600);
    font-size: 1.25rem;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    padding: var(--space-24) 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.partner-logo {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.partner-logo:hover {
    border-color: var(--primary-600);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.partner-placeholder {
    text-align: center;
    color: var(--gray-400);
}

.partner-placeholder i {
    font-size: 3rem;
    margin-bottom: var(--space-2);
    display: block;
    color: var(--primary-300);
}

.partner-placeholder span {
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4);
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--secondary-500);
    margin-bottom: var(--space-2);
}

.trust-badge span {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

/* ========== VIDEO SECTION ========== */
.video-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.video-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: var(--space-4) 0 var(--space-6);
    line-height: 1.2;
}

.video-text p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.video-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.video-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: 1.0625rem;
    color: var(--gray-700);
}

.video-features i {
    color: var(--success);
    font-size: 1.25rem;
}

.video-player {
    position: relative;
}

.video-placeholder {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/9;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.play-button i {
    font-size: 2rem;
    color: var(--primary-600);
    margin-left: 5px;
}

/* ========== BLOG PREVIEW SECTION ========== */
.blog-preview {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-900));
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: var(--space-6);
}

.blog-meta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    font-size: 0.875rem;
    color: var(--gray-500);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.blog-meta i {
    color: var(--primary-600);
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    font-size: 0.9375rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-600);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
}

.blog-link i {
    transition: transform var(--transition-base);
}

.blog-link:hover {
    gap: var(--space-3);
    color: var(--primary-900);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* ========== RESPONSIVE FOR NEW SECTIONS ========== */
@media (max-width: 1024px) {
    .video-content {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .video-text h2 {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        gap: var(--space-4);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* ========== EVENT TYPES SECTION ========== */
.event-types {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.event-type-card {
    text-align: center;
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    cursor: pointer;
}

.event-type-card:hover {
    border-color: var(--primary-600);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.event-type-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(245, 158, 11, 0.1));
    color: var(--primary-600);
    font-size: 1.75rem;
    transition: all var(--transition-base);
}

.event-type-card:hover .event-type-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-600), var(--secondary-500));
    color: white;
}

.event-type-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.event-type-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ========== SUCCESS METRICS SECTION ========== */
.success-metrics {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.success-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots2" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots2)"/></svg>');
    opacity: 0.5;
}

.metrics-content {
    position: relative;
    z-index: 1;
}

.metrics-text {
    text-align: center;
    margin-bottom: var(--space-12);
}

.metrics-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin: var(--space-4) 0 var(--space-3);
}

.metrics-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.metric-item {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
}

.metric-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
    margin-left: var(--space-2);
}

.metric-label {
    font-size: 1.125rem;
    margin-top: var(--space-3);
    opacity: 0.9;
}

/* ========== TEAM PREVIEW SECTION ========== */
.team-preview {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 25%, #d4af37 50%, #b8860b 75%, #d4af37 100%);
    background-size: 200% 200%;
    animation: goldShimmer 8s ease infinite;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-24);
}

/* Shiny overlay effect */
.team-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    animation: shine 3s infinite;
    z-index: 1;
}

/* Decorative pattern overlay */
.team-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.2) 0%, transparent 50%);
    z-index: 0;
}

/* Gold shimmer animation */
@keyframes goldShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Shine animation */
@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

/* Team section header styling for gold background */
.team-preview .section-header {
    position: relative;
    z-index: 2;
}

.team-preview .section-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-preview .section-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.team-preview .section-title::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
}

.team-preview .section-description {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.team-preview .container {
    position: relative;
    z-index: 2;
}

/* Team section button styling */
.team-preview .btn {
    background: white;
    color: #d4af37;
    border: 2px solid white;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-preview .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-12);
    position: relative;
    z-index: 2;
    padding: var(--space-8) 0;
}

.team-member {
    text-align: center;
    transition: transform var(--transition-base);
    position: relative;
    z-index: 2;
    padding: var(--space-4);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-4);
    aspect-ratio: 5/2;
    width: 100%;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-6);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.team-member:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: var(--space-3);
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-base);
}

.team-social a:hover {
    background: var(--primary-600);
    transform: translateY(-3px);
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.team-role {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: var(--space-2);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.team-bio {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* ========== PRICING SECTION ========== */
.pricing-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
    color: white;
    margin-top: var(--space-24);
    margin-bottom: var(--space-24);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-600);
}

.pricing-card.featured {
    border-color: var(--primary-600);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-6);
    background: linear-gradient(135deg, var(--secondary-500), var(--secondary-700));
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--gray-200);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.pricing-price {
    margin-bottom: var(--space-3);
}

.pricing-price .currency {
    font-size: 1.25rem;
    color: var(--gray-600);
    vertical-align: top;
}

.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-600);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray-600);
}

.pricing-header p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.pricing-features li {
    padding: var(--space-3) 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-700);
}

.pricing-features li i {
    color: var(--success);
    font-size: 1.125rem;
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--gray-400);
}

.pricing-card .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    padding: var(--space-6);
    background: rgba(99, 102, 241, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-600);
}

.pricing-note p {
    color: var(--gray-700);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
}

.pricing-note i {
    color: var(--primary-600);
    font-size: 1.25rem;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
    color: white;
    margin-bottom: var(--space-24);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.newsletter-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.newsletter-form .form-group {
    display: flex;
    gap: var(--space-3);
    max-width: 600px;
    margin: 0 auto var(--space-4);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-4) var(--space-6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    white-space: nowrap;
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

/* ========== RESPONSIVE FOR ALL NEW SECTIONS ========== */
@media (max-width: 1024px) {
    .event-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .event-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .metric-value {
        font-size: 3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .event-types-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: var(--space-8);
}

.mt-12 {
    margin-top: var(--space-12);
}

/* Center buttons in their container */
.text-center .btn {
    margin: 0 auto;
}

/* ========== GRID UTILITIES ========== */
/* 3 columns grid for cards */
.grid-3-cols,
.industries-grid,
.clients-grid,
.partners-grid,
.categories-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-6) !important;
}

@media (max-width: 768px) {

    .grid-3-cols,
    .industries-grid,
    .clients-grid,
    .partners-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {

    .grid-3-cols,
    .industries-grid,
    .clients-grid,
    .partners-grid,
    .categories-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========== PROCESS/HOW WE WORK SECTION ========== */
.process-timeline {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-8) !important;
    margin-top: var(--space-12) !important;
}

.process-step {
    position: relative;
    background: white;
    padding: var(--space-8);
    padding-top: var(--space-12);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.process-number {
    position: absolute;
    top: -25px;
    left: var(--space-6);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.process-content {
    display: flex;
    flex-direction: column;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.15));
    color: var(--gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--space-4);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.process-step p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        top: -20px;
    }
}

/* ========== FEATURE/BENEFITS CARDS (Image 1 Style) ========== */
.features-grid,
.benefits-grid,
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.feature-card,
.benefit-card,
.why-choose-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.feature-card:hover,
.benefit-card:hover,
.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.feature-icon,
.benefit-icon,
.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.25));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    position: relative;
}

.feature-icon::before,
.benefit-icon::before,
.why-choose-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover .feature-icon::before,
.benefit-card:hover .benefit-icon::before,
.why-choose-card:hover .why-choose-icon::before {
    opacity: 0.1;
}

.feature-card h3,
.benefit-card h3,
.why-choose-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.feature-card p,
.benefit-card p,
.why-choose-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ========== INDUSTRY/CLIENT CARDS (Image 2 Style - Make like Image 1) ========== */
.industries-grid,
.clients-grid,
.partners-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-6) !important;
}

.industry-card,
.client-card,
.partner-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.industry-card:hover,
.client-card:hover,
.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.industry-icon,
.client-icon,
.partner-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.25));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
}

.industry-card h3,
.client-card h3,
.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: var(--space-2);
}

@media (max-width: 992px) {

    .features-grid,
    .benefits-grid,
    .why-choose-grid,
    .industries-grid,
    .clients-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {

    .features-grid,
    .benefits-grid,
    .why-choose-grid,
    .industries-grid,
    .clients-grid,
    .partners-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========== EVENT TYPE CARDS (Image 2 - Make like Image 1) ========== */
.event-types-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-6) !important;
}

.event-type-card {
    background: white !important;
    padding: var(--space-8) !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all var(--transition-base) !important;
    border: 1px solid var(--gray-200) !important;
    text-align: center !important;
}

.event-type-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15) !important;
    border-color: var(--gold) !important;
}

.event-type-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto var(--space-4) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.25)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    color: var(--gold) !important;
    border: none !important;
}

.event-type-card h3 {
    font-family: var(--font-heading) !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    color: var(--gray-700) !important;
    margin-top: var(--space-2) !important;
    margin-bottom: var(--space-2) !important;
}

.event-type-card p {
    color: var(--gray-600) !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
}

@media (max-width: 992px) {
    .event-types-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .event-types-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========== TESTIMONIALS SECTION (Force Black) ========== */
.testimonials {
    background: #000000 !important;
    background-color: #000000 !important;
    color: white !important;
}

.testimonial-quote {
    color: white !important;
}

.testimonial-author h4 {
    color: white !important;
}

.testimonial-author p {
    color: #cccccc !important;
}

.testimonial-rating i {
    color: #dc2626 !important;
    /* Red stars */
}