/* ===============================================
   MODERN UI STYLES - Fédération Burkinabé de Natation
   =============================================== */

/* Variables CSS */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================================
   MODERN FEATURE AREA
   =============================================== */
.modern-feature-area {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.modern-feature-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modern-feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.modern-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.modern-feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 2s infinite;
}

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

.modern-feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ===============================================
   MODERN ABOUT AREA
   =============================================== */
.modern-about-area {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image {
    position: relative;
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    transition: var(--transition);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: -3%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

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

.about-content-modern {
    padding-left: 2rem;
}

.content-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

.modern-btn i {
    transition: var(--transition);
}

.modern-btn:hover i {
    transform: translateX(4px);
}

/* ===============================================
   MODERN SERVICES AREA
   =============================================== */
.modern-services-area {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.services-header {
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.125rem;
}

.services-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.services-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 200px;
    height: 200px;
}

.grid-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.grid-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.grid-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.modern-service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

.modern-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.modern-service-card:hover::before {
    opacity: 1;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.3;
}

.modern-service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.service-card-content h3 a:hover {
    color: var(--primary-color);
}

.service-card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-footer {
    position: relative;
    z-index: 2;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.service-link i {
    transition: var(--transition);
}

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

/* ===============================================
   MODERN TESTIMONIAL AREA
   =============================================== */
.modern-testimonial-area {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.testimonial-header {
    position: relative;
    z-index: 2;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.testimonial-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.testimonial-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    font-size: 1.25rem;
    color: white;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: var(--accent-color);
    font-size: 1rem;
}

.testimonial-card-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.testimonial-card-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.125rem;
    font-style: italic;
}

.testimonial-card-footer {
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ===============================================
   MODERN NEWS AREA - ENHANCED DESIGN
   =============================================== */
.modern-news-area {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.modern-news-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="news-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23ffffff" opacity="0.15"/><circle cx="40" cy="40" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23news-pattern)"/></svg>');
    opacity: 0.4;
}

.modern-news-area::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(37, 99, 235, 0.05) 60deg, transparent 120deg, rgba(6, 182, 212, 0.05) 180deg, transparent 240deg, rgba(139, 92, 246, 0.05) 300deg, transparent 360deg);
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.news-header {
    position: relative;
    z-index: 2;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.3),
        0 4px 16px rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.news-badge:hover::before {
    left: 100%;
}

.news-badge i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

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

.news-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.news-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.news-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04),
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    transform: translateY(0);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.05) 0%, 
        rgba(6, 182, 212, 0.05) 50%,
        rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.news-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(37, 99, 235, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.4);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover::after {
    opacity: 1;
}

.news-card.featured {
    border: 2px solid rgba(37, 99, 235, 0.3);
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.15),
        0 10px 30px rgba(6, 182, 212, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.7);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-radius: 24px 24px 0 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1.05);
}

.news-card:hover .news-image img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1);
}

.news-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 3;
}

.news-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 6px 20px rgba(37, 99, 235, 0.4),
        0 3px 10px rgba(6, 182, 212, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.news-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.news-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.news-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-date,
.news-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.news-date i,
.news-author i {
    font-size: 1rem;
    color: var(--primary-color);
}

.news-title-card {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(37, 99, 235, 0.1);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    border: 2px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(15px);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.news-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.news-link:hover::before {
    left: 100%;
}

.news-link:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(37, 99, 235, 0.4),
        0 5px 15px rgba(6, 182, 212, 0.3);
    text-decoration: none;
}

.news-link i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
}

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

.news-footer {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.news-footer .modern-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(37, 99, 235, 0.3),
        0 5px 20px rgba(6, 182, 212, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.news-footer .modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.news-footer .modern-btn:hover::before {
    left: 100%;
}

.news-footer .modern-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(37, 99, 235, 0.4),
        0 8px 25px rgba(6, 182, 212, 0.3);
    text-decoration: none;
    color: white;
}

.news-footer .modern-btn i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

.news-footer .modern-btn:hover i {
    transform: translateX(5px);
}

/* ===============================================
   MODERN NAVBAR - ADVANCED GLASSMORPHISM
   =============================================== */

/* Header Container */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    overflow: visible;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-navbar {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    z-index: 100;
}

.modern-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.12) 0%, 
        rgba(6, 182, 212, 0.08) 50%,
        rgba(139, 92, 246, 0.06) 100%);
    opacity: 0.9;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.modern-navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
    z-index: -1;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Mobile Navigation */
.modern-mobile-nav {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    display: none;
}

.mobile-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mobile-logo:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    z-index: 10001;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.mobile-menu-close span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
}

.mobile-menu-close span:nth-child(1) {
    transform: rotate(45deg) translate(1px, 1px);
}

.mobile-menu-close span:nth-child(2) {
    transform: rotate(-45deg) translate(1px, -1px);
}

.mobile-menu-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    margin: 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    text-decoration: none;
}

.mobile-menu-link i {
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.mobile-dropdown-toggle {
    justify-content: space-between;
}

.mobile-dropdown-icon {
    transition: var(--transition);
}

.mobile-dropdown-icon.rotated {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.active {
    max-height: 200px;
}

.mobile-dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem 0.75rem 3.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mobile-dropdown-link:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.mobile-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Main Navigation */
.modern-main-nav {
    padding: 0.5rem 0;
    background: transparent;
    display: block;
}

.modern-navbar-nav {
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
}

/* Brand/Logo */
.modern-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.1),
        0 1px 6px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: fit-content;
    height: fit-content;
}

.brand-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.1) 0%, 
        rgba(6, 182, 212, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.brand-container:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.12),
        0 2px 10px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(37, 99, 235, 0.3);
}

.brand-container:hover::before {
    opacity: 1;
}

.brand-logo {
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    width: 80px;
    height: auto;
    object-fit: contain;
}

.brand-container:hover .brand-logo {
    transform: scale(1.02) rotate(0.5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Brand text styles removed - logo only */

/* Navigation Menu */
.modern-menu {
    flex-grow: 1;
    justify-content: center;
    margin: 0;
}

.modern-nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    margin: 15px;
    list-style: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    z-index: 1;
    max-width: 80%;
    width: fit-content;
}

.modern-nav-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.08) 0%, 
        rgba(6, 182, 212, 0.06) 50%,
        rgba(139, 92, 246, 0.04) 100%); */
    opacity: 0.8;
    z-index: -1;
}

.modern-nav-item {
    position: relative;
    z-index: 1;
}

.modern-nav-link {
    /* display: flex; */
    align-items: center;
    gap: 0;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    background: transparent;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.modern-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.modern-nav-link:hover::before,
.modern-nav-link.active::before {
    width: 100%;
    /* height: 50%; */
}

.modern-nav-link:hover::after,
.modern-nav-link.active::after {
    width: 60%;
}

.modern-nav-link:hover,
.modern-nav-link.active {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.modern-nav-link {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.modern-nav-link:hover,
.modern-nav-link.active {
    transform: translateX(0px);
}

/* Dropdown */
.modern-nav-item.dropdown {
    position: relative;
    z-index: 10;
}

.modern-nav-item.dropdown:hover .modern-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 9999;
}

.modern-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    padding: 1rem;
    margin-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    overflow: hidden;
}

.modern-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.05) 0%, 
        rgba(6, 182, 212, 0.03) 100%);
    z-index: -1;
}

.dropdown-item {
    list-style: none;
    margin: 0;
    position: relative;
}

.modern-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.75rem 1rem;
    color: rgba(31, 41, 55, 0.95);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    font-size: 0.9rem;
}

.modern-dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.1) 0%, 
        rgba(6, 182, 212, 0.08) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.modern-dropdown-link:hover::before {
    left: 0;
}

.modern-dropdown-link:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    transform: translateX(8px) scale(1.02);
    box-shadow: 
        0 4px 12px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.modern-dropdown-link {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.modern-dropdown-link:hover {
    transform: translateX(3px);
}

.dropdown-icon {
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(107, 114, 128, 0.7);
}

.modern-nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: #2563eb;
}

/* Contact Info */
.modern-contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.1),
        0 0.5px 4px rgba(0, 0, 0, 0.05),
        inset 0 0.5px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.08) 0%, 
        rgba(6, 182, 212, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1.5px) scale(1.01);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 2px 10px rgba(0, 0, 0, 0.08),
        inset 0 0.5px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(37, 99, 235, 0.3);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, 
        #2563eb 0%, 
        #06b6d4 50%, 
        #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    box-shadow: 
        0 1px 4px rgba(37, 99, 235, 0.2),
        0 0.5px 2px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.contact-item:hover .contact-icon {
    transform: scale(1.05) rotate(2.5deg);
    box-shadow: 
        0 3px 10px rgba(37, 99, 235, 0.4),
        0 1.5px 6px rgba(0, 0, 0, 0.15);
}

.contact-details {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.contact-label {
    font-size: 0.6rem;
    color: rgba(55, 65, 81, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.contact-item:hover .contact-label {
    color: rgba(37, 99, 235, 0.8);
    transform: translateX(1px);
}

.contact-number {
    font-size: 0.7rem;
    color: rgba(31, 41, 55, 0.95);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 0.15px;
}

.contact-number:hover {
    color: #2563eb;
    text-decoration: none;
    transform: translateX(1px);
}

/* Scroll Effect */
.modern-header.scrolled .modern-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.18),
        0 4px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.modern-header.scrolled .modern-navbar::before {
    opacity: 0.6;
}

/* Brand name scroll effect removed - logo only */

.modern-header.scrolled .modern-nav-list {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.modern-header.scrolled .modern-nav-link {
    color: rgba(31, 41, 55, 0.9);
}

.modern-header.scrolled .modern-nav-link:hover,
.modern-header.scrolled .modern-nav-link.active {
    color: #2563eb;
}

.modern-header.scrolled .contact-item {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.modern-header.scrolled .contact-item:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(37, 99, 235, 0.4);
}

/* ===============================================
   MODERN GALLERY AREA
   =============================================== */

/* Reset pour les images de galerie */
.gallery-card img,
.card-image img {
    line-height: 0;
    font-size: 0;
    max-width: 100%;
    max-height: 100%;
}
.modern-gallery-area {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.modern-gallery-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gallery-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23f3f4f6" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-pattern)"/></svg>');
    opacity: 0.3;
}

.gallery-header {
    position: relative;
    z-index: 2;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-filters {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: var(--shadow-md);
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: var(--transition);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-card {
    background: transparent;
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    height: 300px;
    backdrop-filter: blur(15px);
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.8);
    border-width: 4px;
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    border-radius: var(--radius-2xl);
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(6, 182, 212, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.gallery-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.gallery-btn i {
    font-size: 1.25rem;
}

.gallery-info {
    color: white;
}

.gallery-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.gallery-info p {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.gallery-footer {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

/* ===============================================
   MODERN CONTACT INFO AREA
   =============================================== */
.modern-contact-info-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.contact-icon i {
    font-size: 1.75rem;
    color: white;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* ===============================================
   MODERN NEWSLETTER AREA
   =============================================== */
.modern-newsletter-area {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.modern-newsletter-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
}

.newsletter-content {
    color: white;
}

.newsletter-header {
    margin-bottom: 2rem;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.newsletter-icon i {
    font-size: 1.5rem;
    color: white;
}

.newsletter-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.modern-newsletter-form {
    position: relative;
}

.form-group {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group .form-control {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.form-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group .form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.newsletter-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-icons {
    position: relative;
    width: 200px;
    height: 200px;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.5rem;
    color: white;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .testimonial-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content-modern {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .services-icon-grid {
        width: 150px;
        height: 150px;
    }
    
    .grid-item i {
        font-size: 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-header h2 {
        font-size: 2rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .floating-icons {
        width: 150px;
        height: 150px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-title {
        font-size: 2rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 991px) {
    /* Navbar Responsive */
    .modern-main-nav {
        display: none;
    }
    
    .modern-mobile-nav {
        display: block;
    }
    
    .mobile-menu-content {
        width: 100%;
        max-width: 320px;
    }
    }
    
    .brand-container {
        padding: 0.3rem;
    }
    
    .brand-logo {
        width: 60px;
    }
    
    
    .modern-nav-link {
        /* width: 100%; */
        /* justify-content: flex-start; */
        /* padding: 0.75rem 1.5rem; */
        border-radius: 25px;
        font-size: 0.8rem;
    }
    
    .modern-contact-info {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 0;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modern-feature-area,
    .modern-about-area,
    .modern-services-area,
    .modern-testimonial-area,
    .modern-news-area,
    .modern-gallery-area,
    .modern-contact-info-area,
    .modern-newsletter-area {
        padding: 60px 0;
    }
    
    .mobile-menu-content {
        width: 100%;
        max-width: 280px;
    }
    
    .mobile-menu-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .mobile-menu-link {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .mobile-menu-footer {
        padding: 1rem;
    }
    
    .brand-logo {
        width: 50px;
    }
    
    .contact-item {
        padding: 0.2rem 0.4rem;
    }
    
    .contact-icon {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
    }
    
    .contact-label {
        font-size: 0.5rem;
    }
    
    .contact-number {
        font-size: 0.6rem;
    }
    
    .modern-feature-card,
    .modern-service-card,
    .testimonial-card,
    .contact-info-card,
    .news-card,
    .gallery-card {
        padding: 1.5rem;
    }
    
    .newsletter-card {
        padding: 2rem;
    }
    
    .section-title,
    .about-title,
    .services-title,
    .testimonial-title {
        font-size: 1.75rem;
    }
    
    .newsletter-header h2 {
        font-size: 1.75rem;
    }
    
    .news-title {
        font-size: 1.75rem;
    }
    
    .gallery-title {
        font-size: 1.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
}

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

.modern-feature-card,
.modern-service-card,
.testimonial-card,
.news-card,
.gallery-card {
    animation: fadeInUp 0.6s ease-out;
}

.modern-feature-card:nth-child(1) { animation-delay: 0.1s; }
.modern-feature-card:nth-child(2) { animation-delay: 0.2s; }
.modern-feature-card:nth-child(3) { animation-delay: 0.3s; }

.modern-service-card:nth-child(1) { animation-delay: 0.1s; }
.modern-service-card:nth-child(2) { animation-delay: 0.2s; }
.modern-service-card:nth-child(3) { animation-delay: 0.3s; }
.modern-service-card:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }

.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.2s; }
.gallery-card:nth-child(3) { animation-delay: 0.3s; }
.gallery-card:nth-child(4) { animation-delay: 0.4s; }
.gallery-card:nth-child(5) { animation-delay: 0.5s; }
.gallery-card:nth-child(6) { animation-delay: 0.6s; }

/* Blog Cards Animations */
.single-blog-item,
.sidebar-widget {
    animation: fadeInUp 0.8s ease-out;
}

.single-blog-item:nth-child(1) { animation-delay: 0.1s; }
.single-blog-item:nth-child(2) { animation-delay: 0.2s; }
.single-blog-item:nth-child(3) { animation-delay: 0.3s; }
.single-blog-item:nth-child(4) { animation-delay: 0.4s; }
.single-blog-item:nth-child(5) { animation-delay: 0.5s; }
.single-blog-item:nth-child(6) { animation-delay: 0.6s; }

.sidebar-widget:nth-child(1) { animation-delay: 0.2s; }
.sidebar-widget:nth-child(2) { animation-delay: 0.4s; }
.sidebar-widget:nth-child(3) { animation-delay: 0.6s; }
.sidebar-widget:nth-child(4) { animation-delay: 0.8s; }

/* Gallery Cards Animations */
.gallery-item,
.filter-btn {
    animation: fadeInUp 0.8s ease-out;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1.0s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-item:nth-child(12) { animation-delay: 1.2s; }
.gallery-item:nth-child(13) { animation-delay: 1.3s; }
.gallery-item:nth-child(14) { animation-delay: 1.4s; }
.gallery-item:nth-child(15) { animation-delay: 1.5s; }

.filter-btn:nth-child(1) { animation-delay: 0.1s; }
.filter-btn:nth-child(2) { animation-delay: 0.2s; }
.filter-btn:nth-child(3) { animation-delay: 0.3s; }
.filter-btn:nth-child(4) { animation-delay: 0.4s; }
.filter-btn:nth-child(5) { animation-delay: 0.5s; }

/* ===============================================
   BLOG PAGE - ULTRA MODERN GLASSMORPHISM DESIGN
   =============================================== */

/* Blog Hero Section */
.blog-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.9) 0%, 
        rgba(59, 130, 246, 0.8) 50%, 
        rgba(147, 51, 234, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

.blog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg at 50% 50%, 
        rgba(37, 99, 235, 0.1) 0deg,
        rgba(59, 130, 246, 0.1) 90deg,
        rgba(147, 51, 234, 0.1) 180deg,
        rgba(37, 99, 235, 0.1) 270deg,
        rgba(37, 99, 235, 0.1) 360deg);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

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

.blog-hero .page-title-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.blog-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.blog-hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.blog-hero ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.blog-hero ul li {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.blog-hero ul li:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: -1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.blog-hero ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-hero ul li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Blog Area */
.blog-area {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #e2e8f0 25%, 
        #f1f5f9 50%, 
        #e2e8f0 75%, 
        #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.blog-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.blog-area .container {
    position: relative;
    z-index: 1;
}

/* Blog Cards */
.single-blog-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.single-blog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(59, 130, 246, 0.01) 50%, 
        rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.single-blog-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.single-blog-item:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.3);
}

.single-blog-item:hover::before {
    opacity: 1;
}

.single-blog-item:hover::after {
    opacity: 1;
}

/* Blog Image */
.blog-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 24px 24px 0 0;
    z-index: 3;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.single-blog-item:hover .blog-image img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

/* Blog Date */
.blog-date {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(150%);
    color: #1e40af;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-blog-item:hover .blog-date {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.blog-date span:first-child {
    display: block;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 2px;
}

.blog-date span:last-child {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Blog Content */
.blog-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 3;
    position: relative;
}

.blog-meta {
    margin-bottom: 1.5rem;
}

.blog-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-meta li {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-meta li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.blog-meta i {
    color: #2563eb;
    font-size: 1rem;
}

.blog-content h3 {
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-content h3 a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.blog-content h3 a:hover {
    color: #2563eb;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.blog-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Read More Button */
.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 2rem;
    border-radius: 30px;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(15px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more:hover::before {
    left: 100%;
}

.read-more:hover {
    color: white;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: #2563eb;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(37, 99, 235, 0.3),
        0 5px 15px rgba(37, 99, 235, 0.2);
}

.read-more::after {
    content: '→';
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Sidebar */
.blog-sidebar {
    padding-left: 40px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 2.5rem;
    margin-bottom: 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(59, 130, 246, 0.01) 50%, 
        rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.sidebar-widget:hover::before {
    opacity: 1;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.2);
}

.sidebar-widget h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid transparent;
    background: linear-gradient(90deg, #2563eb, #1d4ed8) bottom / 100% 3px no-repeat;
    position: relative;
    z-index: 2;
}

/* Search Form */
.search-form {
    position: relative;
    z-index: 2;
}

.search-form input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1e293b;
}

.search-form input:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.search-form input::placeholder {
    color: #94a3b8;
}

.search-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.search-form button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 2;
    position: relative;
}

.category-list a {
    color: #64748b;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-list a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.category-list span {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
    position: relative;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recent-post-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.recent-post-image {
    flex-shrink: 0;
}

.recent-post-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recent-post-item:hover .recent-post-image img {
    transform: scale(1.05);
    border-radius: 20px;
}

.recent-post-content h4 {
    margin-bottom: 0.5rem;
}

.recent-post-content h4 a {
    color: #1e293b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-content h4 a:hover {
    color: #2563eb;
}

.recent-post-content span {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
    position: relative;
}

.newsletter-form input {
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1e293b;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* Pagination */
.pagination-area {
    margin-top: 60px;
    text-align: center;
}

.pagination-area .pagination {
    justify-content: center;
    gap: 0.5rem;
}

.pagination-area .page-link {
    color: #2563eb;
    border: 2px solid rgba(37, 99, 235, 0.2);
    padding: 1rem 1.5rem;
    margin: 0;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    font-weight: 600;
    text-decoration: none;
}

.pagination-area .page-link:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.pagination-area .page-item.active .page-link {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: #2563eb;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-hero h1 {
        font-size: 3rem;
    }
    
    .blog-sidebar {
        padding-left: 0;
        margin-top: 60px;
    }
    
    .blog-area {
        padding: 80px 0;
    }
    
    .single-blog-item {
        margin-bottom: 30px;
    }
    
    .sidebar-widget {
        padding: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 50vh;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero ul {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .blog-hero .page-title-content {
        padding: 2rem 1.5rem;
    }
    
    .blog-image {
        height: 220px;
    }
    
    .blog-content {
        padding: 2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .blog-meta ul {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero {
        min-height: 40vh;
    }
    
    .blog-hero .page-title-content {
        padding: 1.5rem 1rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1.2rem;
    }
}

/* ===============================================
   GALLERY PAGE - ULTRA MODERN GLASSMORPHISM DESIGN
   =============================================== */

/* Gallery Hero Section */
.gallery-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.9) 0%, 
        rgba(59, 130, 246, 0.8) 50%, 
        rgba(147, 51, 234, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

.gallery-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg at 50% 50%, 
        rgba(37, 99, 235, 0.1) 0deg,
        rgba(59, 130, 246, 0.1) 90deg,
        rgba(147, 51, 234, 0.1) 180deg,
        rgba(37, 99, 235, 0.1) 270deg,
        rgba(37, 99, 235, 0.1) 360deg);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

.gallery-hero .page-title-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.gallery-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.gallery-hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.gallery-hero ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.gallery-hero ul li {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.gallery-hero ul li:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: -1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.gallery-hero ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-hero ul li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Gallery Area */
.gallery-area {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #e2e8f0 25%, 
        #f1f5f9 50%, 
        #e2e8f0 75%, 
        #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.gallery-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.gallery-area .container {
    position: relative;
    z-index: 1;
}

/* Gallery Badge */
.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(150%);
    color: #2563eb;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-badge:hover::before {
    left: 100%;
}

.gallery-badge:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.gallery-badge i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.gallery-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.gallery-main-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #8b5cf6);
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.gallery-main-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
    color: #64748b;
    margin: 0 auto;
}

/* Gallery Filter Menu */
.gallery-filter-menu {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #64748b;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: #2563eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(37, 99, 235, 0.3),
        0 5px 15px rgba(37, 99, 235, 0.2);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    height: 400px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(59, 130, 246, 0.01) 50%, 
        rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.gallery-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.3);
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px 24px 0 0;
    z-index: 3;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px 24px 0 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.95) 0%, 
        rgba(59, 130, 246, 0.9) 50%, 
        rgba(147, 51, 234, 0.95) 100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    border-radius: 24px;
    z-index: 4;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: auto;
}

.gallery-btn {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-btn i {
    font-size: 1.3rem;
}

.gallery-info {
    color: white;
}

.gallery-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.gallery-info p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

/* CTA Area */
.cta-area {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.95) 0%, 
        rgba(59, 130, 246, 0.9) 50%, 
        rgba(147, 51, 234, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .default-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    color: #2563eb;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.cta-content .default-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-content .default-btn:hover::before {
    left: 100%;
}

.cta-content .default-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.cta-content .default-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-content .default-btn:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination-area {
    margin-top: 80px;
    text-align: center;
}

.pagination-area .pagination {
    justify-content: center;
    gap: 0.5rem;
}

.pagination-area .page-link {
    color: #2563eb;
    border: 2px solid rgba(37, 99, 235, 0.2);
    padding: 1rem 1.5rem;
    margin: 0;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    font-weight: 600;
    text-decoration: none;
}

.pagination-area .page-link:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.pagination-area .page-item.active .page-link {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: #2563eb;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .gallery-hero h1 {
        font-size: 3rem;
    }
    
    .gallery-area {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .gallery-card {
        height: 350px;
    }
    
    .gallery-filter-menu {
        gap: 0.8rem;
    }
    
    .filter-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        min-height: 50vh;
    }
    
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-hero ul {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .gallery-hero .page-title-content {
        padding: 2rem 1.5rem;
    }
    
    .gallery-main-title {
        font-size: 2.5rem;
    }
    
    .gallery-main-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-filter-menu {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-hero {
        min-height: 40vh;
    }
    
    .gallery-hero .page-title-content {
        padding: 1.5rem 1rem;
    }
    
    .gallery-main-title {
        font-size: 2rem;
    }
    
    .gallery-main-subtitle {
        font-size: 1rem;
    }
    
    .gallery-card {
        height: 300px;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .gallery-actions {
        gap: 0.8rem;
    }
    
    .gallery-btn {
        width: 3rem;
        height: 3rem;
    }
    
    .gallery-btn i {
        font-size: 1.1rem;
    }
    
    .gallery-info h4 {
        font-size: 1.2rem;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
    }
    
    .cta-content {
        padding: 1.5rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ===============================================
   CONTACT PAGE - ULTRA MODERN GLASSMORPHISM DESIGN
   =============================================== */

/* Contact Hero Section */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.9) 0%, 
        rgba(59, 130, 246, 0.8) 50%, 
        rgba(147, 51, 234, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%); */
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: conic-gradient(from 0deg at 50% 50%, 
        rgba(37, 99, 235, 0.1) 0deg,
        rgba(59, 130, 246, 0.1) 90deg,
        rgba(147, 51, 234, 0.1) 180deg,
        rgba(37, 99, 235, 0.1) 270deg,
        rgba(37, 99, 235, 0.1) 360deg); */
    animation: rotate 30s linear infinite;
    z-index: -1;
}

.contact-hero .page-title-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    /* background: rgba(255, 255, 255, 0.1); */
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.contact-hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.contact-hero ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-hero ul li {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.contact-hero ul li:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: -1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.contact-hero ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero ul li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Area */
.contact-area {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #e2e8f0 25%, 
        #f1f5f9 50%, 
        #e2e8f0 75%, 
        #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.contact-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.contact-area .container {
    position: relative;
    z-index: 1;
}

/* Contact Section Title */
.contact-area .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.contact-area .section-title span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(150%);
    color: #2563eb;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-area .section-title span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-area .section-title span:hover::before {
    left: 100%;
}

.contact-area .section-title span:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-area .section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.contact-area .section-title h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #8b5cf6);
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.contact-area .section-title p {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.7;
    font-weight: 400;
    color: #64748b;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(59, 130, 246, 0.01) 50%, 
        rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.contact-info:hover::before {
    opacity: 1;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.2);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-size: 1.5rem;
    box-shadow: 
        0 8px 25px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover .contact-icon::before {
    left: 100%;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 
        0 15px 35px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-content h3 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.3;
}

.contact-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-content p a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.1);
}

.contact-content p a:hover {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 10;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(59, 130, 246, 0.01) 50%, 
        rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.contact-form:hover::before {
    opacity: 1;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.2);
}

.contact-form h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    line-height: 1.3;
    visibility: visible;
    opacity: 1;
    display: block;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #1e293b;
    font-weight: 600;
    font-size: 1rem;
    visibility: visible;
    opacity: 1;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1e293b !important;
    display: block;
    visibility: visible;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #64748b !important;
    opacity: 0.8;
}

.form-control.is-invalid {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #dc3545;
    font-weight: 500;
}

.contact-form .default-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white !important;
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form .default-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form .default-btn:hover::before {
    left: 100%;
}

.contact-form .default-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    color: white !important;
}

.contact-form .default-btn::after {
    content: '→';
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form .default-btn:hover::after {
    transform: translateX(5px);
}

.alert {
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid transparent;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.alert-success {
    color: #155724;
    background: rgba(212, 237, 218, 0.9);
    border-color: rgba(195, 230, 203, 0.8);
    box-shadow: 0 4px 15px rgba(21, 87, 36, 0.1);
}

/* Map Area */
.map-area {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #e2e8f0 50%, 
        #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.map-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.map-container {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.map-container iframe {
    border-radius: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* FAQ Area */
.faq-area {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #e2e8f0 25%, 
        #f1f5f9 50%, 
        #e2e8f0 75%, 
        #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.faq-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.faq-area .container {
    position: relative;
    z-index: 1;
}

.faq-area .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.faq-area .section-title span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(150%);
    color: #2563eb;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-area .section-title span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-area .section-title span:hover::before {
    left: 100%;
}

.faq-area .section-title span:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.faq-area .section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.faq-area .section-title h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #8b5cf6);
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.faq-accordion {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.faq-accordion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(59, 130, 246, 0.01) 50%, 
        rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.faq-accordion:hover::before {
    opacity: 1;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.accordion-button {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: none;
    font-weight: 700;
    color: #1e293b;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
    border-color: #2563eb;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

/* Contact Page Animations */
.contact-info,
.contact-form,
.faq-accordion,
.accordion-item {
    animation: fadeInUp 0.8s ease-out;
}

.contact-info { animation-delay: 0.1s; }
.contact-form { animation-delay: 0.2s; }
.faq-accordion { animation-delay: 0.3s; }

.accordion-item:nth-child(1) { animation-delay: 0.4s; }
.accordion-item:nth-child(2) { animation-delay: 0.5s; }
.accordion-item:nth-child(3) { animation-delay: 0.6s; }
.accordion-item:nth-child(4) { animation-delay: 0.7s; }

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 3rem;
    }
    
    .contact-area {
        padding: 80px 0;
    }
    
    .contact-info {
        padding: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
    
    .faq-area {
        padding: 80px 0;
    }
    
    .faq-accordion {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero ul {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-hero .page-title-content {
        padding: 2rem 1.5rem;
    }
    
    .contact-area .section-title h2,
    .faq-area .section-title h2 {
        font-size: 2.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .faq-accordion {
        padding: 2rem;
    }
    
    .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero {
        min-height: 40vh;
    }
    
    .contact-hero .page-title-content {
        padding: 1.5rem 1rem;
    }
    
    .contact-area .section-title h2,
    .faq-area .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .faq-accordion {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .form-control {
        padding: 1rem 1.2rem;
    }
    
    .contact-form .default-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   FOOTER STYLES - MODERN GLASSMORPHISM DESIGN
   ============================================ */

.footer-area {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.9) 50%, 
        rgba(51, 65, 85, 0.85) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.single-footer-widget {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.single-footer-widget:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.single-footer-widget .logo img {
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.single-footer-widget .logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.4) contrast(1.2);
}

.single-footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.single-footer-widget h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.single-footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.import-link {
    list-style: none;
    padding: 0;
    margin: 0;
}

.import-link li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.import-link li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #3b82f6;
    font-weight: bold;
    transition: all 0.3s ease;
}

.import-link li:hover::before {
    color: #8b5cf6;
    transform: translateX(3px);
}

.import-link li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.import-link li a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.import-link li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.import-link li a:hover::after {
    width: 100%;
}

.address {
    list-style: none;
    padding: 0;
    margin: 0;
}

.address li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.address li i {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.address li:hover i {
    color: #8b5cf6;
    transform: scale(1.1);
}

.address li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.address li a:hover {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Footer Responsive Design */
@media (max-width: 991px) {
    .single-footer-widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .single-footer-widget h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .single-footer-widget p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-area {
        padding: 3rem 0 2rem;
    }
    
    .single-footer-widget {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }
    
    .single-footer-widget h3 {
        font-size: 1.1rem;
    }
    
    .import-link li {
        padding-left: 0;
        text-align: center;
    }
    
    .import-link li::before {
        display: none;
    }
    
    .address li {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-area {
        padding: 2rem 0 1.5rem;
    }
    
    .single-footer-widget {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .single-footer-widget h3 {
        font-size: 1rem;
    }
    
    .single-footer-widget p {
        font-size: 0.85rem;
    }
    
    .import-link li a,
    .address li {
        font-size: 0.85rem;
    }
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Footer Bottom Section */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 1px;
}

.copyright-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Developer Credit Styles */
.developer-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.developer-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.developer-link i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.developer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.developer-link:hover {
    color: #8b5cf6;
    transform: translateY(-1px);
}

.developer-link:hover i {
    color: #8b5cf6;
    transform: scale(1.1);
}

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

/* Enhanced Link Styles with Icons */
.import-link li a i {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.import-link li a:hover i {
    color: #8b5cf6;
    transform: scale(1.1);
}

/* Address Enhancements */
.address li span {
    display: block;
    line-height: 1.5;
}

/* Responsive Footer Bottom */
@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-bottom-links {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    .developer-credit {
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .copyright-text p {
        font-size: 0.8rem;
    }
    
    .footer-social-links {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .developer-credit {
        font-size: 0.75rem;
        justify-content: center;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .footer-social-links {
        gap: 0.6rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
}

/* ============================================
   GALLERY MOBILE IMPROVEMENTS & IMAGE POPUP
   ============================================ */

/* Mobile Gallery Improvements */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-card {
        height: 320px; /* Hauteur augmentée pour éviter de couper les têtes */
        border-radius: 20px;
    }
    
    .gallery-image {
        height: 100%;
        border-radius: 20px;
    }
    
    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 20px;
        transition: transform 0.3s ease;
    }
    
    .gallery-image:hover img {
        transform: scale(1.05);
    }
    
    .gallery-overlay {
        border-radius: 20px;
        padding: 1rem;
    }
    
    .gallery-actions {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .gallery-info h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .gallery-card {
        height: 380px; /* Hauteur encore plus grande sur mobile */
        border-radius: 25px;
    }
    
    .gallery-image {
        border-radius: 25px;
    }
    
    .gallery-image img {
        border-radius: 25px;
        object-position: center top;
    }
    
    .gallery-overlay {
        border-radius: 25px;
        padding: 1.2rem;
    }
    
    .gallery-actions {
        gap: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .gallery-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Image Popup Modal - Styles déplacés vers custom-gallery.css pour éviter les conflits */
