
:root {
    /* Light Theme Colors */
    --primary: #00aa6c;
    --primary-hover: #008c58;
    --secondary: #34e0a1;
    --dark: #333;
    --light: #f2f2f2;
    --white: #fff;
    --gray: #8c8c8c;
    --light-gray: #e0e0e0;
    --card-bg: #fff;
    --text-color: #333;
    --header-bg: #fff;
    --body-bg: #f2f2f2;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --footer-bg: #333;
    --footer-text: #fff;
    
    /* Animation Speeds */
    --transition-fast: 0.2s;
    --transition-medium: 0.3s;
    --transition-slow: 0.5s;
}

/* Dark Theme Colors */
.dark {
    --primary: #00aa6c;
    --primary-hover: #00cc82;
    --secondary: #34e0a1;
    --dark: #f2f2f2;
    --light: #222;
    --white: #1a1a1a;
    --gray: #b0b0b0;
    --light-gray: #444;
    --card-bg: #2a2a2a;
    --text-color: #f2f2f2;
    --header-bg: #1a1a1a;
    --body-bg: #121212;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    --footer-bg: #1a1a1a;
    --footer-text: #f2f2f2;
}

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

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

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

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

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

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

body {
    background-color: var(--body-bg);
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.user-actions {
    display: flex;
    align-items: center;
}

.theme-toggle {
    margin-right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-color);
    transition: transform var(--transition-medium), color var(--transition-medium);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
}

.dark .theme-toggle {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle:hover {
    transform: rotate(30deg);
    color: var(--primary);
}

.user-profile {
    position: relative;
    margin-right: 15px;
}

.profile-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    border-radius: 30px;
    background-color: var(--light-gray);
    transition: background-color var(--transition-medium), transform var(--transition-medium);
    overflow: hidden;
}

.profile-toggle:hover {
    background-color: var(--gray);
    transform: translateY(-3px);
}

.profile-toggle img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 8px;
    object-fit: cover;
    border: 2px solid var(--primary);
    transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.profile-toggle:hover img {
    transform: scale(1.1);
    border-color: var(--primary-hover);
}

.profile-toggle span {
    margin-right: 5px;
    font-weight: bold;
    transition: color var(--transition-medium);
}

.profile-toggle:hover span {
    color: var(--primary);
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 220px;
    padding: 10px 0;
    margin-top: 10px;
    display: none;
    z-index: 101;
    animation: fadeIn var(--transition-medium) forwards;
    transform-origin: top center;
}

.profile-dropdown.active {
    display: block;
}

.profile-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background-color: var(--card-bg);
    transform: rotate(45deg);
    z-index: -1;
}

.profile-dropdown ul li {
    padding: 12px 15px;
    transition: background-color var(--transition-medium);
    border-right: 3px solid transparent;
}

.profile-dropdown ul li:hover {
    background-color: var(--light-gray);
    border-right-color: var(--primary);
}

.profile-dropdown ul li i {
    margin-left: 10px;
    width: 20px;
    text-align: center;
    transition: transform var(--transition-medium);
}

.profile-dropdown ul li:hover i {
    transform: translateX(-5px);
    color: var(--primary);
}


/* Main Content Padding for Fixed Header */
main {
    padding-top: 80px; /* Adjust based on header height */
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/placeholder.svg?height=500&width=1200');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    animation: fadeIn 1s forwards;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeIn 1s 0.3s forwards;
    opacity: 0;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.search-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    overflow-x: auto; /* Allow horizontal scrolling on mobile */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.search-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari */
}

.search-tab {
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-color);
    transition: color var(--transition-medium), border-bottom var(--transition-medium);
    position: relative;
    white-space: nowrap; /* Prevent text wrapping */
}

.search-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: width var(--transition-medium);
}

.search-tab:hover::after {
    width: 100%;
}

.search-tab.active {
    color: var(--primary);
}

.search-tab.active::after {
    width: 100%;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.search-input {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-input i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    transition: color var(--transition-medium);
}

.search-input:focus-within i {
    color: var(--primary);
}

.search-input input {
    width: 100%;
    padding: 15px;
    padding-right: 40px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--white);
    color: var(--text-color);
    transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.search-input input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 170, 108, 0.2);
}

.search-btn {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color var(--transition-medium), transform var(--transition-medium), box-shadow var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Full width on mobile */
}

.search-btn i {
    margin-left: 8px;
    transition: transform var(--transition-medium);
}

.search-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 170, 108, 0.3);
}

.search-btn:hover i {
    transform: translateX(-5px);
}

/* Popular Destinations */
.section {
    padding: 60px 0; /* Reduced padding for mobile */
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 40px; /* Reduced margin for mobile */
    position: relative;
}

.section-title h2 {
    font-size: 28px; /* Reduced font size for mobile */
    color: var(--text-color);
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-title p {
    color: var(--gray);
    margin-top: 15px;
    font-size: 16px; /* Reduced font size for mobile */
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.destination-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.destination-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.destination-card:nth-child(even) {
    animation-delay: 0.3s;
}

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

.destination-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.destination-info {
    padding: 20px;
}

.destination-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--text-color);
    transition: color var(--transition-medium);
}

.destination-card:hover .destination-info h3 {
    color: var(--primary);
}

.destination-info p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.rating {
    color: #ff9900;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.rating i {
    margin-left: 2px;
    transition: transform var(--transition-medium);
}

.destination-card:hover .rating i {
    transform: rotate(360deg);
    transition: transform 0.8s;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 14px;
    border-top: 1px solid var(--light-gray);
    padding-top: 15px;
    margin-top: 15px;
}

.destination-meta div {
    display: flex;
    align-items: center;
}

.destination-meta i {
    margin-left: 5px;
    color: var(--primary);
}

/* Categories Section */
.categories {
    background-color: var(--card-bg);
    position: relative;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--body-bg), transparent);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Reduced for better mobile display */
    gap: 15px; /* Reduced gap for mobile */
}

.category-card {
    text-align: center;
    padding: 20px 15px; /* Reduced padding for mobile */
    border-radius: 12px;
    background-color: var(--light);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.category-card:nth-child(odd) {
    animation-delay: 0.2s;
}

.category-card:nth-child(even) {
    animation-delay: 0.4s;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}

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

.category-icon {
    font-size: 24px; /* Reduced for mobile */
    margin-bottom: 15px; /* Reduced for mobile */
    color: var(--primary);
    width: 60px; /* Reduced for mobile */
    height: 60px; /* Reduced for mobile */
    line-height: 60px; /* Reduced for mobile */
    border-radius: 50%;
    background-color: rgba(0, 170, 108, 0.1);
    margin: 0 auto 15px; /* Reduced for mobile */
    transition: transform var(--transition-medium), background-color var(--transition-medium), color var(--transition-medium);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    animation: float 3s infinite;
}

.category-card h3 {
    margin-bottom: 10px;
    font-size: 16px; /* Reduced for mobile */
    transition: color var(--transition-medium);
}

.category-card p {
    color: var(--gray);
    transition: color var(--transition-medium);
    font-size: 12px; /* Reduced for mobile */
}

.category-card:hover h3,
.category-card:hover p {
    color: #fff;
}

/* Reviews Section */
.reviews-container {
    display: flex;
    overflow-x: auto;
    gap: 15px; /* Reduced for mobile */
    padding: 10px 0; /* Reduced for mobile */
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light-gray);
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.reviews-container::-webkit-scrollbar {
    height: 6px; /* Reduced for mobile */
}

.reviews-container::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

.review-card {
    min-width: 280px; /* Reduced for mobile */
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px; /* Reduced for mobile */
    box-shadow: var(--shadow);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.review-card:nth-child(1) {
    animation-delay: 0.1s;
}

.review-card:nth-child(2) {
    animation-delay: 0.3s;
}

.review-card:nth-child(3) {
    animation-delay: 0.5s;
}

.review-card:nth-child(4) {
    animation-delay: 0.7s;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Reduced for mobile */
}

.reviewer-img {
    width: 50px; /* Reduced for mobile */
    height: 50px; /* Reduced for mobile */
    border-radius: 50%;
    overflow: hidden;
    margin-left: 10px; /* Reduced for mobile */
    border: 3px solid var(--primary);
    transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.review-card:hover .reviewer-img {
    transform: scale(1.1);
    border-color: var(--primary-hover);
}

.reviewer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.review-card:hover .reviewer-img img {
    transform: scale(1.1);
}

.reviewer-info h4 {
    margin-bottom: 5px;
    color: var(--text-color);
    font-size: 16px; /* Reduced for mobile */
}

.reviewer-info p {
    color: var(--gray);
    font-size: 12px; /* Reduced for mobile */
}

.review-content {
    position: relative;
}

.review-content::before {
    content: '\f10d';
    /* font-family: 'Font Awesome 6 Free'; */
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 20px; /* Reduced for mobile */
    color: var(--primary);
    opacity: 0.2;
}

.review-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 14px; /* Reduced for mobile */
}

.review-date {
    color: var(--gray);
    font-size: 12px;
    text-align: left;
    display: flex;
    align-items: center;
}

.review-date i {
    margin-right: 5px;
}

/* App Download Section */
.app-download {
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    padding: 60px 0; /* Reduced for mobile */
    position: relative;
    overflow: hidden;
}

.app-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/placeholder.svg?height=300&width=300') repeat;
    opacity: 0.05;
    animation: float 15s infinite linear;
}

.app-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.app-content h2 {
    font-size: 28px; /* Reduced for mobile */
    margin-bottom: 15px; /* Reduced for mobile */
    animation: fadeIn 1s forwards;
}

.app-content p {
    margin-bottom: 30px; /* Reduced for mobile */
    font-size: 16px; /* Reduced for mobile */
    line-height: 1.6;
    animation: fadeIn 1s 0.3s forwards;
    opacity: 0;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Reduced for mobile */
    animation: fadeIn 1s 0.6s forwards;
    opacity: 0;
    flex-direction: column; /* Stack buttons on mobile */
    align-items: center;
}

.app-btn {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: bold;
    transition: background-color var(--transition-medium), transform var(--transition-medium), box-shadow var(--transition-medium);
    width: 100%; /* Full width on mobile */
    max-width: 280px; /* Limit width */
}

.app-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-btn i {
    font-size: 24px; /* Reduced for mobile */
    margin-left: 15px;
    transition: transform var(--transition-medium);
}

.app-btn:hover i {
    transform: scale(1.2);
}

.app-btn div {
    text-align: right;
}

.app-btn small {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 10px; /* Reduced for mobile */
    margin-top: 20px; /* Reduced for mobile */
    flex-wrap: wrap; /* Allow wrapping on very small screens */
}

.social-links a {
    display: inline-block;
    width: 40px; /* Reduced for mobile */
    height: 40px; /* Reduced for mobile */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px; /* Reduced for mobile */
    transition: background-color var(--transition-medium), transform var(--transition-medium), color var(--transition-medium);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-8px) rotate(360deg);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px; /* Reduced for mobile */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        padding: 10px 0;
        position: relative;
    }

    .logo img {
        height: 40px;
    }

    .logo h1 {
        font-size: 20px;
    }

    /* Improved mobile menu layout */
    .mobile-menu-btn {
        display: block;
        order: 1;
        margin-right: 15px;
    }

    .user-actions {
        order: 2;
        margin-right: auto;
        display: flex;
        align-items: center;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 15px;
        background-color: var(--card-bg);
        border-radius: 8px;
        padding: 15px;
        box-shadow: var(--shadow);
        order: 3;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 99;
    }

    .nav-menu.active {
        display: flex;
        animation: fadeIn var(--transition-medium) forwards;
    }

    .nav-menu li {
        margin: 12px 0;
        text-align: right; /* Right-align menu items for RTL */
        width: 100%;
    }

    .nav-menu a {
        justify-content: flex-end; /* Right-align menu items for RTL */
        padding: 8px 15px;
        width: 100%;
        border-radius: 6px;
        transition: background-color var(--transition-medium);
    }

    .nav-menu a:hover {
        background-color: rgba(0, 170, 108, 0.1);
    }

    .nav-menu li::after {
        display: none; /* Remove underline effect on mobile */
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .search-container {
        padding: 15px;
    }

    .search-form {
        flex-direction: column;
    }

    .search-input {
        min-width: 100%;
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .profile-toggle span {
        display: none;
    }


    /* Improved app buttons layout */
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    /* Improved footer social links for mobile */
    .social-links {
        justify-content: center;
        gap: 15px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    main {
        padding-top: 60px;
    }

    .header-container {
        padding: 8px 0;
    }

    .logo img {
        height: 35px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .destination-img {
        height: 150px;
    }

    .theme-toggle {
        width: 35px;
        height: 35px;
    }

    .profile-toggle img {
        width: 35px;
        height: 35px;
    }


    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-content h2 {
        font-size: 22px;
    }

    .app-content p {
        font-size: 14px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    /* Fixed social links for small mobile screens */
    .social-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-top: 15px;
    }

    .social-links a {
        width: 100%;
        height: 40px;
        line-height: 40px;
        margin: 0 auto;
    }
}