/* FILE: css/style.css (COMPLETE - FIXED & PREMIUM) */

:root {
    /* Premium Color Palette */
    --primary: #ff6b35;
    --primary-dark: #e55a2a;
    --primary-light: #ff8c5a;
    --secondary: #2d3e50;
    --accent: #00b4d8;
    --dark: #0a0a0f;
    --dark-soft: #14141f;
    --gray-dark: #2a2a35;
    --gray: #6c6c7a;
    --gray-light: #f8f9ff;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    
    /* Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2fa 100%);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER - PREMIUM & FIXED ==================== */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #f09819 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo a:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.logo i {
    background: linear-gradient(135deg, var(--primary), #f09819);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.9rem;
}

/* Navigation */
.main-nav {
    flex: 1;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--dark-soft);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    font-size: 1rem;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 70%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.admin-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-weight: 700;
}

/* Search Bar */
.search-wrapper {
    display: flex;
    gap: 10px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    align-items: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.search-wrapper input {
    border: none;
    background: transparent;
    padding: 10px 0;
    width: 220px;
    font-size: 0.95rem;
    outline: none;
    color: var(--dark);
}

.search-wrapper input::placeholder {
    color: var(--gray);
}

.search-wrapper button {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-wrapper button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* Mobile Toggle Button - FIXED VISIBILITY */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.mobile-menu-toggle i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

/* Header Ad Slot */
.ad-slot-header {
    background: linear-gradient(135deg, #fef3e8, #ffe8dc);
    text-align: center;
    padding: 12px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    font-size: 0.8rem;
    color: var(--primary);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 0 40px 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::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 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Page Header */
.page-header {
    margin: 50px 0 40px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* ==================== MASONRY GALLERY ==================== */
.gallery-masonry {
    column-count: 4;
    column-gap: 30px;
    margin: 50px 0;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover::after {
    height: 100px;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-info {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.item-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

.like-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.like-btn:hover {
    background: rgba(255, 77, 109, 0.1);
    transform: scale(1.1);
}

.like-btn.liked {
    color: #ff4d6d;
    animation: heartBeat 0.3s ease;
}

/* ==================== LIGHTBOX MODAL ==================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.4s ease;
    box-shadow: var(--shadow-xl);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #f8f9ff;
}

.modal-info {
    padding: 24px 30px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.modal-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.modal-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.modal-actions button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-actions button:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.download-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 700;
    gap: 10px;
    width: auto !important;
    height: auto !important;
}

.download-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-glow);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.close-modal:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.ad-slot-modal {
    background: linear-gradient(135deg, #fef3e8, #ffe8dc);
    text-align: center;
    padding: 15px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

/* ==================== PAGINATION - FIXED & ATTRACTIVE ==================== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.page-btn {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--dark);
    min-width: 45px;
    text-align: center;
}

.page-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.page-btn.active-page {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.load-more-container {
    text-align: center;
    margin: 30px 0 60px;
}

.btn-loadmore {
    background: linear-gradient(135deg, var(--dark), var(--dark-soft));
    color: white;
    border: none;
    padding: 14px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-loadmore::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;
}

.btn-loadmore:hover::before {
    left: 100%;
}

.btn-loadmore:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==================== FOOTER - PREMIUM ==================== */
.site-footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #14141f 100%);
    color: #a0a0b0;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.6;
    color: #a0a0b0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #a0a0b0;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    color: #a0a0b0;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
}

.ad-slot-footer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #808090;
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-details {
    list-style: none;
    margin: 40px 0;
}

.contact-details li {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-details i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    transition: var(--transition);
    text-decoration: none;
}

.contact-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e8;
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ==================== UTILITY CLASSES ==================== */
.no-results {
    text-align: center;
    padding: 80px;
    font-size: 1.2rem;
    color: var(--gray);
    background: var(--white);
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Menu Overlay (created by JS) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

.gallery-item {
    animation: fadeInUp 0.5s ease backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }

/* ==================== RESPONSIVE DESIGN - FULLY OPTIMIZED ==================== */
@media (max-width: 1200px) {
    .gallery-masonry {
        column-count: 3;
        column-gap: 25px;
    }
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    /* Mobile Header */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }
    
    .main-nav.show-nav {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav a {
        font-size: 1.1rem;
        display: block;
        padding: 12px 0;
    }
    
    .main-nav a::before {
        display: none;
    }
    
    .header-flex {
        padding: 12px 20px;
        gap: 15px;
    }
    
    .search-wrapper {
        flex: 1;
        padding: 6px 15px;
    }
    
    .search-wrapper input {
        width: 100%;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 50px 0 40px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Gallery */
    .gallery-masonry {
        column-count: 2;
        column-gap: 20px;
        margin: 30px 0;
    }
    
    /* Pagination - mobile friendly */
    .pagination-wrapper {
        gap: 8px;
        margin: 30px 0;
    }
    
    .page-btn {
        padding: 8px 14px;
        font-size: 0.9rem;
        min-width: 38px;
    }
    
    .btn-loadmore {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    /* Scroll to top button */
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
    }
    
    .gallery-masonry {
        column-count: 1;
    }
    
    .modal-info {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .modal-actions {
        justify-content: center;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .page-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        min-width: 34px;
    }
    
    .btn-loadmore {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
    
    .footer-grid {
        gap: 25px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}