/* ============================================
   HOMEPAGE ENHANCEMENTS - Modern & Clean
   ============================================ */

/* Hero Slider Enhancement - Lonely Planet Style */
.hero-slider {
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider .carousel-item {
    height: 700px;
    position: relative;
}

.hero-slider .carousel-item img {
    filter: brightness(0.7);
}

/* Dark gradient overlay from bottom - Enhanced contrast */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.75) 35%,
        rgba(0, 0, 0, 0.45) 60%,
        rgba(0, 0, 0, 0.2) 80%,
        transparent 100%
    );
    z-index: 1;
}

/* Hero content positioning - bottom left */
.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px;
    z-index: 2;
    padding: 0;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 
        3px 3px 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 0;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-slider .carousel-control-prev {
    left: 30px;
}

.hero-slider .carousel-control-next {
    right: 30px;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.hero-slider .carousel-indicators {
    margin-bottom: 50px;
    z-index: 3;
}

.hero-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: all 0.3s;
}

.hero-slider .carousel-indicators button.active {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    width: 30px;
    border-radius: 5px;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Welcome Section Enhancement */
.welcome-section-enhanced {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    overflow: hidden;
}

.welcome-section-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.welcome-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.welcome-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 1.2s ease;
}

.welcome-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease;
}

.welcome-visual {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
    animation: fadeInRight 1s ease;
}

.welcome-visual:hover {
    transform: translateY(-10px);
}

.welcome-visual i {
    font-size: 120px;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

/* Stats Counter Enhancement */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.stat-card i {
    font-size: 4rem;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.stat-card:hover i {
    transform: scale(1.1);
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--stat-color-1), var(--stat-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card.stat-books {
    --stat-color-1: #667eea;
    --stat-color-2: #4c63d2;
}

.stat-card.stat-visitors {
    --stat-color-1: #10b981;
    --stat-color-2: #059669;
}

.stat-card.stat-categories {
    --stat-color-1: #f59e0b;
    --stat-color-2: #d97706;
}

/* Staff Slider Section */
.staff-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.staff-swiper {
    padding: 40px 20px;
}

.staff-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

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

.staff-photo-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.staff-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: white;
    opacity: 0.5;
}

.staff-info {
    padding: 25px 20px;
    text-align: center;
}

.staff-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.staff-position {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: #667eea;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #667eea;
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: white;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #667eea;
    width: 30px;
    border-radius: 6px;
}

/* News Section Enhancement */
.news-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.news-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f1f5f9;
}

.news-card .card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .card-img-top {
    transform: scale(1.1);
}

.news-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.news-card .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.news-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .text-muted {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .btn {
    width: fit-content;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.news-card .btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
}

.news-card .btn-outline-primary:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

.news-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.news-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.news-placeholder-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Testimonials Enhancement */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonial-card {
    border-radius: 20px;
    border: none;
    padding: 35px;
    transition: all 0.3s;
    height: 100%;
    background: #f8f9fa;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    background: white;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    margin-right: 3px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-info h6 {
    margin-bottom: 3px;
    font-weight: 700;
    color: #1e293b;
}

.author-info small {
    color: #64748b;
}

/* Partners Section Modern */
.partners-section-modern {
    padding: 100px 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-item {
    position: relative;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 25px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    height: 240px;
    min-height: 240px;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.partner-logo-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.partner-card:hover .partner-logo-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.05);
}

.partner-logo {
    max-width: 65px;
    max-height: 65px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0);
}

.partner-card:hover .partner-logo {
    filter: brightness(0) invert(1);
}

.partner-icon {
    font-size: 2.5rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-icon {
    color: white;
    transform: scale(1.1);
}

.partner-info {
    text-align: center;
    width: 100%;
}

.partner-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover .partner-name {
    color: #667eea;
}

.partner-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-link {
    opacity: 1;
    transform: translateY(0);
}

.partner-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-link i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .partners-section-modern {
        padding: 60px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .partner-card {
        height: 220px;
        min-height: 220px;
        padding: 30px 20px;
    }
    
    .partner-logo-wrapper {
        width: 85px;
        height: 85px;
    }
    
    .partner-logo {
        max-width: 55px;
        max-height: 55px;
    }
    
    .partner-icon {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-card {
        height: 200px;
        min-height: 200px;
        padding: 25px 15px;
    }
    
    .partner-logo-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 15px;
    }
    
    .partner-logo {
        max-width: 50px;
        max-height: 50px;
    }
    
    .partner-icon {
        font-size: 2rem;
    }
    
    .partner-name {
        font-size: 0.9rem;
        min-height: 36px;
    }
}
    
    .partner-title {
        font-size: 1rem;
    }
}

/* Social Media Section - Redesigned */
.social-media-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.social-media-wrapper {
    position: relative;
    z-index: 1;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: height 0.3s ease;
    z-index: 0;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.social-card:hover::before {
    height: 100%;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-name {
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Facebook */
.social-card.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbd 100%);
}

.social-card.facebook .social-name {
    color: #1877f2;
}

.social-card.facebook::before {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbd 100%);
}

.social-card.facebook:hover {
    border-color: #1877f2;
}

.social-card.facebook:hover .social-name {
    color: white;
}

/* Instagram */
.social-card.instagram .social-icon {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
}

.social-card.instagram .social-name {
    color: #e1306c;
}

.social-card.instagram::before {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
}

.social-card.instagram:hover {
    border-color: #e1306c;
}

.social-card.instagram:hover .social-name {
    color: white;
}

/* Twitter */
.social-card.twitter .social-icon {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8ddc 100%);
}

.social-card.twitter .social-name {
    color: #1da1f2;
}

.social-card.twitter::before {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8ddc 100%);
}

.social-card.twitter:hover {
    border-color: #1da1f2;
}

.social-card.twitter:hover .social-name {
    color: white;
}

/* YouTube */
.social-card.youtube .social-icon {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-card.youtube .social-name {
    color: #ff0000;
}

.social-card.youtube::before {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-card.youtube:hover {
    border-color: #ff0000;
}

.social-card.youtube:hover .social-name {
    color: white;
}

/* TikTok */
.social-card.tiktok .social-icon {
    background: linear-gradient(135deg, #000000 0%, #2b2b2b 100%);
}

.social-card.tiktok .social-name {
    color: #000000;
}

.social-card.tiktok::before {
    background: linear-gradient(135deg, #000000 0%, #2b2b2b 100%);
}

.social-card.tiktok:hover {
    border-color: #000000;
}

.social-card.tiktok:hover .social-name {
    color: white;
}

/* LinkedIn */
.social-card.linkedin .social-icon {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.social-card.linkedin .social-name {
    color: #0077b5;
}

.social-card.linkedin::before {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.social-card.linkedin:hover {
    border-color: #0077b5;
}

.social-card.linkedin:hover .social-name {
    color: white;
}

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

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

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

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

/* Responsive */
@media (max-width: 992px) {
    .hero-slider .carousel-item {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-content {
        bottom: 70px;
    }
    
    .welcome-content h1 {
        font-size: 2.5rem;
    }
    
    .welcome-content h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 450px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-content {
        bottom: 50px;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider .carousel-control-prev {
        left: 15px;
    }
    
    .hero-slider .carousel-control-next {
        right: 15px;
    }
    
    .hero-slider .carousel-indicators {
        margin-bottom: 30px;
    }
    
    .welcome-section-enhanced {
        padding: 60px 0;
    }
    
    .welcome-content h1 {
        font-size: 2rem;
    }
    
    .welcome-visual {
        padding: 60px 20px;
    }
    
    .welcome-visual i {
        font-size: 80px;
    }
    
    .stat-card h3 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .social-media-section {
        padding: 60px 0;
    }
    
    .social-card {
        padding: 30px 15px;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
    }
    
    .social-icon i {
        font-size: 1.8rem;
    }
    
    .social-name {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-content {
        bottom: 40px;
    }
    
    .hero-slider .carousel-indicators {
        margin-bottom: 20px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .social-icon i {
        font-size: 1.5rem;
    }
    
    .social-name {
        font-size: 0.95rem;
    }
}