/* ===================================
   FRESH STYLES - Dr. C. Ajithkumar Portfolio
   Clean Complete Redesign
   =================================== */

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

/* GLOBAL STYLES */
body {
    font-family: 'Poppins', Arial, sans-serif !important;
    line-height: 1.6;
    color: #333;
    background: #fff;
    padding-top: 80px; /* Space for fixed navbar */
}

/* NAVBAR STYLES - CRITICAL FIXES */
.navbar {
    background: rgba(30, 64, 175, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: #1e40af !important;
    padding: 0.75rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    text-decoration: none !important;
}

.navbar-brand:hover {
    color: #fbbf24 !important;
    text-decoration: none !important;
}

.navbar-toggler {
    border: 2px solid #ffffff !important;
    border-radius: 8px !important;
    background: transparent !important;
}

.navbar-toggler:hover {
    border-color: #fbbf24 !important;
    background: rgba(251, 191, 36, 0.1) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25) !important;
    border-color: #fbbf24 !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") !important;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.nav-link:hover {
    color: #fbbf24 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}

.nav-link:focus {
    color: #fbbf24 !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.nav-link.active {
    color: #fbbf24 !important;
    background: rgba(251, 191, 36, 0.2) !important;
    border: 1px solid rgba(251, 191, 36, 0.3) !important;
}

/* Manual Toggle Navbar Styles */
.navbar-collapse {
    display: none; /* Hidden by default on mobile */
    transition: all 0.3s ease;
}

.navbar-collapse.show {
    display: block !important; /* Show when toggled */
}

/* Desktop - always show navbar */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important; /* Always show on desktop */
    }
}

/* Mobile navbar fixes */
@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }
    
    .navbar-collapse {
        background: #1e40af !important;
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-collapse.show {
        background: #1e40af !important;
    }
    
    .nav-link {
        text-align: center;
        margin-bottom: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
    }
    
    .nav-link:hover {
        transform: translateX(8px);
        border-color: #fbbf24;
    }
    
    /* Ensure proper toggle behavior */
    .navbar-toggler.collapsed .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") !important;
    }
    
    .navbar-toggler:not(.collapsed) .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='M6 18L18 6M6 6l12 12'/%3e%3c/svg%3e") !important;
    }
}

/* HERO SECTION */
.hero-modern {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.slide-category {
    background: rgba(251, 191, 36, 0.9);
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-meta {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
}

/* COMPACT HERO TEXT */
.hero-content-compact {
    color: white;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.hero-badge-compact {
    background: rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 12px;
    color: #fbbf24;
}

.hero-title-compact {
    margin-bottom: 16px;
    line-height: 1.1;
}

.title-main-compact {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.title-sub-compact {
    display: block;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description-compact {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-stats-compact {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.stat-number-compact {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
}

.stat-label-compact {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 500;
}

.hero-actions-compact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-compact {
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-primary-compact {
    background: #fbbf24;
    color: #1e40af;
    border: 2px solid #fbbf24;
}

.btn-primary-compact:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    text-decoration: none;
    color: #1e40af;
}

.btn-outline-compact {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-compact:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

/* LARGE SHOWCASE */
.hero-showcase-large {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-height: 600px;
    position: relative;
    z-index: 10;
}

.showcase-nav {
    margin-bottom: 30px;
    text-align: center;
}

.nav-pills {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 6px;
    gap: 4px;
}

.nav-pill {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-pill.active {
    background: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.nav-pill:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.showcase-content-large {
    position: relative;
    min-height: 500px;
}

.showcase-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.showcase-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.panel-header {
    text-align: center;
    margin-bottom: 30px;
}

.panel-header h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.panel-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* ACHIEVEMENTS LAYOUT */
.achievements-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.achievement-item-large {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.achievement-item-large:hover {
    transform: translateY(-5px);
}

.achievement-badge {
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    color: #fbbf24;
    font-size: 1.5rem;
}

.achievement-details {
    text-align: center;
}

.achievement-year-large {
    font-size: 11px;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 8px;
}

.achievement-title-large {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.achievement-desc-large {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    line-height: 1.4;
}

.achievement-tags {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 8px;
    flex-wrap: wrap;
}

.tag-type, .tag-org {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
}

.tag-type {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

/* GALLERY LAYOUT */
.gallery-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-item-large {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    position: relative;
    aspect-ratio: 1;
}

.gallery-item-large:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.gallery-placeholder-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-placeholder-large.training {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.gallery-placeholder-large.competition {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.gallery-placeholder-large.team {
    background: linear-gradient(135deg, #10b981, #059669);
}

.gallery-placeholder-large.awards {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.gallery-placeholder-large.technique {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.gallery-placeholder-large.facilities {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-large:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h5 {
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.gallery-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
}

.gallery-btn {
    background: rgba(251, 191, 36, 0.9);
    color: #1e40af;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: #fbbf24;
    transform: scale(1.1);
    color: #1e40af;
    text-decoration: none;
}

/* NEWS LAYOUT */
.news-layout {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.news-item-large {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    display: flex;
    gap: 15px;
}

.news-item-large:hover {
    transform: translateX(10px);
}

.news-icon-large {
    font-size: 2rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.news-content-large {
    flex: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.news-category {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 500;
}

.news-title-large {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-title-large a {
    color: white;
    text-decoration: none;
}

.news-title-large a:hover {
    color: #fbbf24;
}

.news-excerpt-large {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.news-type {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-size: 10px;
    font-weight: 500;
}

.reading-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 500;
}

/* PANEL FOOTER */
.panel-footer {
    text-align: center;
    margin-top: 30px;
}

.panel-link-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 25px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.panel-link-large:hover {
    background: rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
    color: #fbbf24;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}

/* FLOATING ACTION BUTTON */
.hero-floating-action {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
}

.floating-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.4);
    color: #1e40af;
    text-decoration: none;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-showcase-large {
        padding: 20px;
        min-height: 400px;
    }
    
    .achievements-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .news-item-large {
        flex-direction: column;
        gap: 10px;
    }
    
    .panel-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-showcase-large {
        padding: 15px;
        min-height: 350px;
    }
    
    .nav-pills {
        flex-direction: column;
        gap: 2px;
    }
    
    .nav-pill {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .gallery-layout {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   MODERN FOOTER STYLES
   =================================== */

.modern-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 80px 0 0;
    margin-top: 80px;
}

.footer-content {
    position: relative;
}

/* Footer Brand Section */
.footer-brand-section {
    margin-bottom: 60px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-brand-logo i {
    font-size: 2.5rem;
    color: #fbbf24;
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.footer-brand-tagline {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Footer Achievements */
.footer-achievements {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.achievement-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 8px;
    line-height: 1;
}

.achievement-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Social Links */
.social-links-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link-modern {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-modern:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: #fbbf24;
    color: #fbbf24;
    text-decoration: none;
}

.social-link-modern.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

.social-link-modern.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #ffffff;
}

.social-link-modern.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #ffffff;
}

.social-link-modern.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #ffffff;
}

.social-link-modern.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
}

/* Footer Sections */
.footer-section-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fbbf24;
}

/* Footer Navigation */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-item {
    margin-bottom: 12px;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: #fbbf24;
    text-decoration: none;
    transform: translateX(8px);
}

.footer-nav-link i {
    width: 16px;
    color: #fbbf24;
    font-size: 14px;
}

/* Contact Info */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper i {
    color: #1e40af;
    font-size: 16px;
}

.contact-info-content h6 {
    font-size: 14px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.contact-info-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #fbbf24;
    text-decoration: none;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 30px;
}

.newsletter-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.newsletter-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.newsletter-form-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-button {
    background: #fbbf24;
    color: #1e40af;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom-modern {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #fbbf24;
    text-decoration: none;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
}

.footer-badge i {
    color: #ef4444;
    font-size: 16px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .modern-footer {
        padding: 60px 0 0;
        margin-top: 60px;
    }
    
    .footer-brand-section {
        margin-bottom: 40px;
    }
    
    .footer-brand-logo {
        justify-content: center;
    }
    
    .footer-achievements {
        justify-content: center;
        gap: 20px;
    }
    
    .achievement-item {
        min-width: 100px;
        padding: 16px;
    }
    
    .achievement-number {
        font-size: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-links-bottom {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .footer-achievements {
        flex-direction: column;
        align-items: center;
    }
    
    .achievement-item {
        width: 100%;
        max-width: 200px;
    }
    
    .social-links-grid {
        gap: 12px;
    }
    
    .social-link-modern {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}