/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-red: #C41E3A;
    --dark-red: #8B0000;
    --light-red: #DC143C;
    --primary-gold: #FFD700;
    --dark-gold: #DAA520;
    --light-gold: #FFF8DC;
    
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --bg-light: #FFF9F0;
    --white: #ffffff;
    
    --shadow-sm: 0 2px 10px rgba(196, 30, 58, 0.1);
    --shadow-md: 0 5px 20px rgba(196, 30, 58, 0.15);
    --shadow-lg: 0 10px 40px rgba(196, 30, 58, 0.2);
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* ==================== UTILITIES ==================== */
.text-gold {
    color: var(--primary-gold);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.text-red {
    color: #FF6B6B;
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

.bg-light {
    background-color: var(--bg-light);
}

.mt-4 {
    margin-top: 2rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a:hover {
    opacity: 0.8;
}

.logo i {
    color: var(--primary-gold);
    font-size: 32px;
    animation: rotate 10s linear infinite;
}

.logo img {
    height: 50px;
    width: auto;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-gold);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFD700" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation-delay: 0.2s;
}

.hero-badge i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation-delay: 0.8s;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.animate-fade-in-up:nth-child(1) { animation-delay: 0.2s; }
.animate-fade-in-up:nth-child(2) { animation-delay: 0.4s; }
.animate-fade-in-up:nth-child(3) { animation-delay: 0.6s; }
.animate-fade-in-up:nth-child(4) { animation-delay: 0.8s; }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 18px;
}

/* ==================== ABOUT SECTION ==================== */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.about-image-landscape {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.image-wrapper-landscape {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper-landscape img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.image-wrapper-landscape:hover img {
    transform: scale(1.02);
}

.about-text-center {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.about-story-title {
    font-size: 56px;
    margin-bottom: 40px;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

.about-intro {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text-center p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-text-center p strong {
    color: var(--primary-red);
}

/* ==================== SPECIALIST SECTION ==================== */
.specialist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.specialist-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.specialist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.specialist-card:hover .card-icon {
    transform: rotateY(360deg);
}

.card-icon i {
    font-size: 36px;
    color: var(--white);
}

.specialist-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.specialist-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ==================== TOPICS SECTION ==================== */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.topic-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-gold);
}

.topic-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-width: 8px;
}

.topic-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topic-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.topic-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ==================== ACTIVE SECTION ==================== */
.active-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.active-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.active-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.active-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.active-description {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

/* ==================== MEDIA SECTION ==================== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.media-item {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 2px solid transparent;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.media-item img {
    max-width: 140%;
    max-height: 140%;
    object-fit: contain;
    transition: var(--transition);
}

.media-item:hover img {
    transform: scale(1.1);
}

/* ==================== BRAND COLLABORATION SECTION ==================== */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.brand-item {
    background: var(--white);
    border-radius: 10px;
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border: 2px solid transparent;
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.brand-item:hover img {
    transform: scale(1.05);
}

/* ==================== ACHIEVEMENT SECTION ==================== */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.achievement-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.achievement-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.achievement-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.achievement-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.achievement-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.achievement-year {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ==================== SPEAKER SECTION ==================== */
.speaker-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.speaker-enhanced {
    padding: 120px 0;
}

.speaker-section-header {
    text-align: center;
    margin: 50px 0 15px 0;
}

.speaker-section-header h2 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.speaker-section-header .title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.speaker-category {
    margin-bottom: 10px;
    text-align: center;
}

.speaker-category h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.speaker-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.speaker-images img {
    width: auto;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.content-creator-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.content-creator-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.speaker-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* ==================== SERVICES SECTION ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.service-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.service-header i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    color: var(--primary-gold);
}

.service-header h3 {
    font-size: 24px;
}

.service-body {
    padding: 30px;
}

.service-body p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.service-body ul {
    list-style: none;
}

.service-body ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    border-bottom: 1px solid #f0f0f0;
}

.service-body ul li:last-child {
    border-bottom: none;
}

.service-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 18px;
}

.service-link {
    display: inline-block;
    margin: 0 30px 30px 30px;
    color: var(--primary-red);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--dark-red);
    transform: translateX(5px);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ==================== MEDIA SECTION ==================== */
.media-carousel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.media-item {
    background: var(--white);
    padding: 35px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.media-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.media-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.media-item:hover .media-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.media-icon i {
    font-size: 32px;
    color: var(--primary-red);
    transition: var(--transition);
}

.media-item:hover .media-icon i {
    color: var(--white);
}

.media-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.media-item p {
    font-size: 13px;
    color: var(--text-gray);
}

/* ==================== BRANDS SECTION ==================== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.brand-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.brand-card:hover {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.brand-card i {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 15px;
    display: block;
}

.brand-card p {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.collaboration-cta {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.collaboration-cta h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.collaboration-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-gold);
}

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

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--primary-gold);
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.client-info span {
    font-size: 14px;
    color: var(--text-light);
}

/* ==================== CONTACT SECTION ==================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-gray);
    font-size: 15px;
    margin-top: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-links-container {
    width: 100%;
    margin-top: 30px;
}

.social-links-group {
    margin-bottom: 25px;
}

.social-links-group:last-child {
    margin-bottom: 0;
}

.social-group-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: center;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--primary-red);
    font-size: 20px;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    transform: translateY(-5px);
}

.marketplace-link {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 25px;
    min-width: auto;
}

.marketplace-link:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    transform: translateY(-5px);
}

.marketplace-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.marketplace-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-red);
    white-space: nowrap;
    transition: var(--transition);
}

.tokopedia-link,
.shopee-link {
    width: auto;
    min-width: 100px;
    padding: 8px 15px;
    border-radius: 8px;
}

.tokopedia-link:hover {
    background: #F0FFF4;
}

.shopee-link:hover {
    background: #FFF5F5;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
    min-height: 18px;
    visibility: hidden;
}

.error-message.show {
    visibility: visible;
}

.input-error {
    border-color: #e74c3c !important;
}

.input-error:focus {
    border-color: #c0392b !important;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #000);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-text {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ==================== AOS ANIMATIONS ==================== */
[data-aos] {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
}

[data-aos="flip-left"] {
    opacity: 0;
    transform: rotateY(-30deg);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .specialist-grid,
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .brand-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .speaker-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .media-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 50px 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .speaker-section-header h2 {
        font-size: 36px;
    }
    
    .about-story-title {
        font-size: 36px;
    }
    
    .about-image-landscape {
        max-width: 100%;
    }
    
    .about-content,
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form {
        display: block !important;
        width: 100%;
        padding: 30px 20px;
    }
    
    .specialist-grid,
    .topics-grid,
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .testimonials-slider,
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .speaker-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .speaker-images {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 3px;
    }
    
    .brand-item {
        height: 100px;
    }
    
    .media-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .media-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .media-item {
        height: 100px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .navbar {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .logo {
        max-width: calc(100vw - 80px);
    }
    
    .hero-title {
        font-size: 32px;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .speaker-section-header h2 {
        font-size: 28px;
    }
    
    .topic-card {
        padding: 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .media-carousel,
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    .active-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .active-image img {
        height: 150px;
    }
    
    .speaker-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .speaker-images {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .speaker-images img {
        width: auto;
        height: 120px;
        object-fit: cover;
    }
    
    .content-creator-images {
        padding: 0 15px;
    }
    
    .contact-form {
        display: block !important;
        width: 100%;
        padding: 20px 15px;
    }
    
    .contact-info,
    .contact-content {
        display: flex !important;
        flex-direction: column;
    }
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-img {
    transition: var(--transition);
}

.lightbox-img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

@keyframes floatOrnament {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.ornament-float {
    animation: floatOrnament 4s ease-in-out infinite;
}

/* ==================== SECTION ORNAMENTS ==================== */
.section-ornament {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
    width: 250px;
    height: auto;
}

.ornament-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.ornament-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.ornament-top-right {
    right: 20px;
    top: 20px;
    transform: none;
}

.section-padding {
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .section-ornament {
        width: 120px;
        opacity: 0.3;
    }
}
