/* ==========================================
   TextConferences - Conference Website
   Main Stylesheet
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.custom-navbar {
    background-color: #ba5017 !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}

.navbar-nav {
    gap: 2rem;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-toggle:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(217, 119, 66, 0.6);
    /* animation: bounce 0.6s ease-in-out; */
    border-bottom: 1px solid #ffffff;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(-4px); }
    75% { transform: translateY(-6px); }
}

.dropdown-menu {
    background-color: #2a2a2a;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.dropdown-item:hover {
    background-color: #3a3a3a;
    color: #ba5017;
    transform: translateX(5px);
}

.navbar-toggler {
    border-color: #ba5017 !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #1a1a1a;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-image {
        height: 38px;
    }

    .brand-text {
        font-size: 1.1rem;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
                      url('https://images.unsplash.com/photo-1607748825003-e5868d49fc33?crop=entropy&cs=srgb&fm=jpg&ixid=M3w4NjA1NzR8MHwxfHNlYXJjaHwxfHxkaXZlcnNlJTIwd29tZW4lMjBzbWlsaW5nJTIwaGFwcHklMjBncm91cCUyMGxlYWRlcnN8ZW58MHx8fHwxNzc1NjU3NDY5fDA&ixlib=rb-4.1.0&q=85');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(217, 119, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative; z-index: 1;
}

.hero-date {
    font-size: 2rem;
    font-weight: 600;
    color: #ba5017;
    margin-bottom: 1rem;
    position: relative; z-index: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-venue {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative; z-index: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    background-color: transparent !important;
    border: 2px solid #ba5017 !important;
    color: #ffffff !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    margin: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative; z-index: 1;
}

.hero-btn:hover {
    background-color: #ba5017 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 119, 66, 0.4);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-date { font-size: 1.5rem; }
    .hero-venue { font-size: 1.1rem; }
    .hero-section { padding: 4rem 1.5rem; min-height: 60vh; background-attachment: scroll; }
}

/* ==========================================
   WELCOME NOTE SECTION
   ========================================== */
.welcome-note-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fef9f3 0%, #ffffff 100%);
    border-bottom: 2px solid #f0e6d8;
}

.welcome-content {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ba5017;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 2rem;
    text-align: center;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.welcome-text strong {
    color: #ba5017;
    font-weight: 600;
}

.welcome-signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f0e6d8;
}

.signature-line {
    font-size: 1rem;
    color: #7a7a7a;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.signature-name {
    font-size: 1.1rem;
    color: #2a2a2a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .welcome-content { padding: 2rem 1.5rem; }
    .welcome-title { font-size: 1.8rem; }
    .welcome-text p { font-size: 1rem; text-align: left; }
}

/* ==========================================
   SPEAKERS SECTION
   ========================================== */
.speakers-section {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.speakers-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #7a7a7a;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.5px;
}

.speaker-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease;
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 66, 0.1), transparent);
    transition: left 0.6s ease;
}

.speaker-card:hover::before { left: 100%; }

.speaker-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.speaker-image-wrapper {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.speaker-photo {
    width: 150px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-photo { transform: scale(1.08); }

.speaker-name {
    font-size: 1.5rem;
    font-weight: 400;
    color: #6a6a6a;
    margin-bottom: 0.3rem;
}

.speaker-card:hover .speaker-name { color: #3a3a3a; }

.speaker-position {
    font-size: 0.95rem;
    color: #b0b0b0;
    font-weight: 300;
    margin-bottom: 0.3rem;
}

.speaker-company {
    font-size: 1.1rem;
    color: #5a5a5a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.speaker-card:hover .speaker-company { color: #ba5017; }

.speaker-topic {
    font-size: 1rem;
    color: #0066cc;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.speaker-card:hover .speaker-topic { transform: translateX(5px); }

@media (max-width: 768px) {
    .speaker-card { flex-direction: column; text-align: center; align-items: center; }
    .speaker-photo { width: 120px; height: 150px; }
    .speakers-title { font-size: 2rem; }
}

/* ==========================================
   SPEAKER SEARCH SECTION
   ========================================== */
.speaker-search-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    border-top: 3px solid #e0e0e0;
}

.speaker-search-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2a2a2a;
    text-align: center;
    margin-bottom: 1rem;
}

.speaker-search-subtitle {
    font-size: 1.2rem;
    color: #7a7a7a;
    text-align: center;
    font-style: italic;
    margin-bottom: 3rem;
}

.search-controls {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.recorded-label { font-weight: 600; color: #2a2a2a; }
.recorded-count { font-weight: 700; color: #ba5017; }

.popular-label, .search-label { font-weight: 600; color: #2a2a2a; }

.search-tags { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.8rem; }

.search-tag {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    color: #4a4a4a;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.search-tag:hover, .search-tag.active {
    background-color: #ba5017;
    color: white;
    border-color: #ba5017;
    transform: translateY(-2px);
}

.keyword-search {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.keyword-input { flex: 1; border: 1px solid #ced4da; padding: 0.5rem 1rem; border-radius: 6px; }

.search-btn, .clear-btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn { border: 1px solid #2a2a2a; background: white; color: #2a2a2a; }
.search-btn:hover { background-color: #2a2a2a; color: white; }
.clear-btn { border: 1px solid #6c757d; background: white; color: #6c757d; }
.clear-btn:hover { background-color: #6c757d; color: white; }

.talk-result {
    background-color: #ffffff;
    border-left: 4px solid #ba5017;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.talk-result:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); transform: translateX(5px); }

.talk-title { font-size: 1.8rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1.5rem; }

.talk-content { display: flex; gap: 1.5rem; align-items: flex-start; }

.talk-speaker-photo { width: 100px; height: 120px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }

.talk-speaker-name { font-size: 1rem; color: #5a5a5a; font-style: italic; margin-bottom: 1rem; }

.talk-link { color: #0066cc; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.talk-link:hover { color: #0052a3; text-decoration: underline; }

.talk-summary-link, .talk-certificate-link {
    color: #0066cc; text-decoration: none; font-weight: 500; display: block; margin-top: 0.5rem;
}
.talk-summary-link:hover, .talk-certificate-link:hover { color: #0052a3; text-decoration: underline; }

.certificate-note { font-size: 0.9rem; color: #6c757d; font-style: italic; }

@media (max-width: 768px) {
    .speaker-search-title { font-size: 2rem; }
    .keyword-search { flex-direction: column; align-items: stretch; }
    .talk-content { flex-direction: column; }
}

/* ==========================================
   HOTEL INFO SECTION
   ========================================== */
.hotel-info-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.reach-us-title {
    font-size: 1.5rem; font-weight: 600; color: #ba5017;
    text-align: center; letter-spacing: 3px; margin-bottom: 0.5rem; text-transform: uppercase;
}

.location-title {
    font-size: 3rem; font-weight: 700; color: #0066cc;
    text-align: center; margin-bottom: 3rem;
}

.hotel-name-badge {
    position: absolute; top: 20px; left: 20px;
    background-color: white; padding: 0.8rem 1.2rem; border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 600; color: #2a2a2a; z-index: 10;
}

.hotel-name-badge i { color: #ba5017; font-size: 1.2rem; margin-right: 0.5rem; }

.map-container { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }

.venue-details-card {
    background-color: #f8f9fa; border-radius: 12px; padding: 2rem;
    height: 100%; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.venue-tabs .nav-link {
    background-color: transparent; color: #5a5a5a; border: none;
    font-weight: 600; font-size: 1.1rem; padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.venue-tabs .nav-link:hover { background-color: #e9ecef; color: #2a2a2a; }
.venue-tabs .nav-link.active { background-color: #0066cc !important; color: white !important; border-radius: 6px; }

.venue-info h4 { font-size: 1.5rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1.5rem; }
.venue-info h4 i { color: #0066cc; margin-right: 0.5rem; }
.venue-description { font-size: 1rem; color: #5a5a5a; line-height: 1.8; margin-bottom: 1rem; text-align: justify; }

.gallery-title {
    font-size: 2rem; font-weight: 600; color: #ba5017;
    margin: 3rem 0 2rem; padding-left: 1rem; border-left: 5px solid #ba5017;
    letter-spacing: 2px; text-transform: uppercase;
}

.gallery-image-wrapper, .attraction-card {
    position: relative; overflow: hidden; border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer; transition: all 0.4s ease; margin-bottom: 1.5rem;
}

.gallery-image-wrapper:hover, .attraction-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.gallery-image, .attraction-image {
    width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease;
}

.gallery-image-wrapper:hover .gallery-image,
.attraction-card:hover .attraction-image { transform: scale(1.1); }

.image-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white; padding: 1rem; opacity: 0; transition: opacity 0.3s ease;
    font-weight: 600;
}

.gallery-image-wrapper:hover .image-overlay { opacity: 1; }

.attraction-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(217, 71, 119, 0.95), transparent);
    color: white; padding: 1rem; font-weight: 700; text-align: center;
}

@media (max-width: 768px) {
    .location-title { font-size: 1.8rem; }
    .gallery-title { font-size: 1.5rem; }
}

/* ==========================================
   CALL FOR SUBMISSIONS SECTION
   ========================================== */
.submissions-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    border-top: 3px solid #e0e0e0;
}

.submissions-title {
    font-size: 2.8rem; font-weight: 700; color: #2a2a2a;
    text-align: center; margin-bottom: 1rem;
}

.submissions-subtitle {
    font-size: 1.2rem; color: #7a7a7a; text-align: center;
    font-style: italic; margin-bottom: 4rem;
}

.submission-card {
    border: none; border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; background-color: #f8f9fa; padding: 2rem; text-align: center;
}

.submission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.submission-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: linear-gradient(135deg, #ba5017 0%, #c0623a 100%);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(217, 119, 66, 0.3);
}

.submission-icon i { font-size: 2rem; color: white; }
.submission-card-title { font-size: 1.5rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem; }
.submission-description { font-size: 1rem; color: #5a5a5a; line-height: 1.6; margin-bottom: 1rem; }
.submission-deadline { font-size: 0.95rem; color: #ba5017; font-weight: 600; }
.submission-deadline i { margin-right: 0.3rem; }

.submission-cta {
    text-align: center; padding: 3rem 2rem;
    background: linear-gradient(135deg, #fef9f3 0%, #ffffff 100%);
    border-radius: 12px; max-width: 800px; margin: 3rem auto 0;
}

.submission-cta h3 { font-size: 2rem; font-weight: 700; color: #2a2a2a; margin-bottom: 1rem; }
.submission-cta > p { font-size: 1.1rem; color: #5a5a5a; margin-bottom: 2rem; }

.submit-proposal-btn {
    background-color: #ba5017; border: none; color: white;
    padding: 1rem 3rem; font-size: 1.1rem; font-weight: 600;
    border-radius: 8px; cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-proposal-btn:hover {
    background-color: #c0623a; transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 119, 66, 0.4);
}

.submission-note { font-size: 0.9rem; color: #7a7a7a; margin-top: 1.5rem; font-style: italic; }

/* ==========================================
   REGISTER SECTION
   ========================================== */
.register-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #ffffff 100%);
}

.register-title {
    font-size: 2.8rem; font-weight: 700; color: #2a2a2a;
    text-align: center; margin-bottom: 1rem;
}

.register-subtitle {
    font-size: 1.2rem; color: #7a7a7a; text-align: center;
    font-style: italic; margin-bottom: 4rem;
}

.pricing-card {
    border: 2px solid #e0e0e0; border-radius: 12px;
    transition: all 0.3s ease; height: 100%;
    background-color: white; position: relative; overflow: hidden; padding: 2rem;
}

.pricing-card.highlighted {
    border-color: #ba5017;
    box-shadow: 0 8px 24px rgba(217, 119, 66, 0.2);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #ba5017;
}

.pricing-badge {
    position: absolute; top: 20px; right: -35px;
    background-color: #28a745; color: white;
    padding: 0.5rem 3rem; font-weight: 600; font-size: 0.9rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.pricing-title { font-size: 1.8rem; font-weight: 700; color: #2a2a2a; text-align: center; margin-bottom: 1.5rem; margin-top: 1rem; }

.pricing-amount { text-align: center; margin-bottom: 1rem; }
.price { font-size: 3rem; font-weight: 700; color: #ba5017; }
.original-price { font-size: 1.5rem; color: #999; text-decoration: line-through; margin-left: 1rem; }

.pricing-deadline { text-align: center; font-size: 1rem; color: #7a7a7a; margin-bottom: 2rem; font-style: italic; }

.pricing-features { list-style: none; padding: 0; margin: 2rem 0; }
.pricing-features li { padding: 0.7rem 0; color: #5a5a5a; font-size: 1rem; }
.pricing-features li i { color: #28a745; font-size: 1.1rem; margin-right: 0.5rem; }

.register-now-btn {
    width: 100%; padding: 1rem; font-size: 1.1rem; font-weight: 600;
    border-radius: 8px; cursor: pointer; transition: all 0.3s ease;
}

.register-now-btn.btn-primary { background-color: #ba5017; border-color: #ba5017; color: white; }
.register-now-btn.btn-primary:hover { background-color: #c0623a; transform: translateY(-3px); }
.register-now-btn.btn-outline { color: #ba5017; border: 2px solid #ba5017; background: white; }
.register-now-btn.btn-outline:hover { background-color: #ba5017; color: white; transform: translateY(-3px); }

.info-box {
    background-color: white; padding: 2rem; border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); text-align: center;
    transition: transform 0.3s ease;
}

.info-box:hover { transform: translateY(-5px); }
.info-box i { font-size: 3rem; color: #ba5017; margin-bottom: 1rem; }
.info-box h4 { font-size: 1.3rem; font-weight: 600; color: #2a2a2a; margin-bottom: 0.5rem; }
.info-box p { font-size: 1rem; color: #5a5a5a; margin: 0; }

@media (max-width: 768px) {
    .pricing-card.highlighted { transform: scale(1); }
    .pricing-badge { padding: 0.4rem 2.5rem; font-size: 0.8rem; }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-title {
    font-size: 2.8rem; font-weight: 700; color: #2a2a2a;
    text-align: center; margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.2rem; color: #7a7a7a; text-align: center;
    margin-bottom: 4rem; font-style: italic;
}

.testimonial-card {
    border: none; border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; background-color: white; padding: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 70px; height: 70px; border-radius: 50%;
    object-fit: cover; border: 3px solid #ba5017;
}

.testimonial-name { font-size: 1.2rem; font-weight: 600; color: #2a2a2a; margin-bottom: 0; }
.testimonial-position { font-size: 0.9rem; color: #7a7a7a; margin-bottom: 0; }

.testimonial-rating { margin: 1rem 0; }
.testimonial-rating i { color: #ffa500; font-size: 1rem; margin-right: 0.2rem; }

.testimonial-text { font-size: 1rem; line-height: 1.7; color: #5a5a5a; font-style: italic; }

@media (max-width: 768px) {
    .testimonials-title { font-size: 2rem; }
    .testimonial-avatar { width: 60px; height: 60px; }
}

/* ==========================================
   FOOTER
   ========================================== */
.custom-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.newsletter-input-group {
    display: flex; gap: 0;
    background-color: #2a3a4a; border-radius: 8px;
    overflow: hidden; padding: 0.5rem;
    max-width: 600px; margin: 0 auto 3rem;
}

.newsletter-input {
    flex: 1; background-color: transparent; border: none;
    color: #ffffff; padding: 0.8rem 1rem; font-size: 1rem; outline: none;
}

.newsletter-input::placeholder { color: #8a9aa8; }

.subscribe-button {
    background-color: #ba5017; border: none; color: #ffffff;
    padding: 0.8rem 2rem; font-weight: 700; border-radius: 6px;
    text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.subscribe-button:hover { background-color: #c0623a; transform: scale(1.05); }

.contact-line { font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.8rem; color: #cccccc; }
.contact-line .label { color: #ba5017; font-weight: 700; margin-right: 0.5rem; text-transform: uppercase; }

.social-icon {
    width: 50px; height: 50px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #ffffff; font-size: 1.3rem; margin: 0 0.75rem;
    transition: transform 0.2s ease; text-decoration: none;
}

.social-icon:hover { transform: translateY(-5px) scale(1.1); color: white; }

.copyright-text { font-size: 0.9rem; color: #888; margin: 0; }
.brand-name { color: #ba5017; font-weight: 700; }

@media (max-width: 768px) {
    .social-icon { width: 45px; height: 45px; font-size: 1.1rem; }
    .contact-line { font-size: 0.85rem; }
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-to-top-button {
    position: fixed; bottom: 30px; right: 30px;
    width: 55px; height: 55px;
    background-color: #ba5017; border: none; border-radius: 50%;
    color: #ffffff; font-size: 1.3rem;
    display: none; align-items: center; justify-content: center;
    cursor: pointer; z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.scroll-to-top-button:hover {
    background-color: #c0623a;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(217, 119, 66, 0.5);
}

.scroll-to-top-button.show { display: flex; }

@media (max-width: 768px) {
    .scroll-to-top-button { width: 45px; height: 45px; font-size: 1.1rem; bottom: 20px; right: 20px; }
}

  /* =========================
   INNER BANNER
   ========================= */
.inner-banner {
    position: relative;
    height: 260px;
    background: url('https://textconference.org/assets/main/images/banner6.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

/* Dark overlay */
.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(42, 42, 42, 0.7),
        rgba(42, 42, 42, 0.7)
    );
}

/* Content */
.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb-wrap {
    font-size: 14px;
}

.breadcrumb-wrap a {
    color: #d97742;
    text-decoration: none;
}

.breadcrumb-wrap span {
    color: #ddd;
}

/* Cards */
.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Inputs */
.form-control {
  height: 48px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

textarea.form-control {
  height: auto;
}

.form-control:focus {
  border-color: #d97742;
  box-shadow: 0 0 0 2px rgba(217,119,66,0.2);
}

/* Button */
.btn-submit {
  background: #be4503;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
}

.btn-submit:hover {
  background: #c96530;
}

/* Titles */
.section-title {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Guidelines */
.guidelines {
  padding-left: 18px;
}

.guidelines li {
  margin-bottom: 8px;
}