/**
 * Captain SLO - Public Website Styles
 */

:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --text-color: #333;
    --bg-color: #fff;
    --light-bg: #f5f7fa;
    --border-color: #e0e0e0;
}

[data-theme="dark"] {
    --text-color: #f5f5f5;
    --bg-color: #1a1a1a;
    --light-bg: #2d2d2d;
    --border-color: #404040;
}

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

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

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

/* Header */
.site-header {
    background: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px 12px;
    margin-left: 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-toggle:hover {
    background: rgba(0,0,0,0.05);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo p {
    color: var(--text-color);
    opacity: 0.8;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: var(--light-bg);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-color);
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-toggle {
    background: var(--light-bg);
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.language-toggle:hover {
    background: var(--primary-color);
    color: white;
}

.language-toggle i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s;
}

.language-switcher.active .language-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.language-switcher.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid var(--border-color);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.language-option.active {
    background: var(--primary-color);
    color: white;
}

.language-option span {
    font-size: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

.section-title i {
    color: var(--primary-color);
    margin-left: 15px;
}

/* Payments Section */
.payments-section {
    background: var(--light-bg);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.payment-method {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-method i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.payment-method h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.payment-method p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 25px;
}

.payment-method-description {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 25px;
    text-align: right;
    line-height: 1.8;
    word-wrap: break-word;
}

.payment-method-description p {
    margin-bottom: 10px;
}

.payment-method-description p:last-child {
    margin-bottom: 0;
}

.payment-method-description strong,
.payment-method-description b {
    font-weight: 600;
}

.payment-method-description em,
.payment-method-description i {
    font-style: italic;
}

.payment-method-description ul,
.payment-method-description ol {
    margin: 10px 0;
    padding-right: 20px;
    text-align: right;
}

.payment-method-description li {
    margin-bottom: 5px;
}

.payment-method-description h1,
.payment-method-description h2,
.payment-method-description h3,
.payment-method-description h4,
.payment-method-description h5,
.payment-method-description h6 {
    margin: 15px 0 10px;
    font-weight: 600;
}

.payment-method-description a {
    color: var(--primary-color);
    text-decoration: underline;
}

.payment-method-description a:hover {
    text-decoration: none;
}

/* Mobile Wallet Details */
.mobile-wallet-details {
    padding: 20px 0;
}

.wallet-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--light-bg);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.wallet-info-item strong {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 16px;
}

.wallet-info-item strong i {
    color: var(--primary-color);
    font-size: 18px;
}

.wallet-info-item span {
    font-size: 16px;
    color: var(--text-color);
}

.mobile-wallet-preview {
    text-align: center;
}

/* Ratings Section */
.ratings-section {
    background: var(--bg-color);
}

.avg-rating {
    text-align: center;
    margin-bottom: 50px;
}

.avg-score h3 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.avg-score .stars {
    margin-bottom: 10px;
}

.avg-score .stars .fa-star {
    font-size: 30px;
    color: #f39c12;
    margin: 0 5px;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.rating-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.rating-card:hover {
    transform: translateY(-5px);
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.rating-header h4 {
    font-size: 20px;
    color: var(--text-color);
}

.rating-stars .fa-star {
    color: #ddd;
    font-size: 18px;
    margin-left: 3px;
}

.rating-stars .fa-star.active {
    color: #f39c12;
}

.rating-comment {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.8;
}

.rating-image {
    margin-bottom: 15px;
}

.rating-image img {
    width: 100%;
    border-radius: 10px;
    max-height: 300px;
    object-fit: cover;
}

.rating-date {
    color: var(--text-color);
    opacity: 0.6;
    font-size: 14px;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: var(--light-bg);
    color: var(--text-color);
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-color);
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 25px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
    color: var(--text-color);
}

.close-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 25px;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    background: var(--bg-color);
    color: var(--text-color);
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #f39c12;
}

/* Social Media Section */
.social-section {
    background: var(--bg-color, #f8f9fa);
    padding: 60px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color, #3498db);
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: var(--secondary-color, #2ecc71);
}

.social-link i {
    transition: transform 0.3s ease;
}

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

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: right;
}

.footer-section {
    padding: 0 20px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-links a::before {
    content: '←';
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    right: -20px;
}

.footer-links a:hover {
    color: white;
    padding-right: 25px;
    transform: translateX(-5px);
}

.footer-links a:hover::before {
    opacity: 1;
    right: -15px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0;
    font-size: 14px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-top: 5px;
}

/* Responsive - Mobile First Approach */
/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .logo p {
        font-size: 12px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .site-header {
        position: relative;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
        width: 100%;
        gap: 0;
    }
    
    .main-nav.show {
        max-height: 500px;
        padding: 15px 0;
    }
    
    .main-nav a {
        font-size: 14px;
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-color);
        display: block;
        width: 100%;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .language-toggle {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .language-toggle .current-lang {
        display: none;
    }
    
    .language-dropdown {
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: 120px;
    }
    
    .language-switcher.active .language-dropdown {
        transform: translateX(-50%) translateY(0);
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .ratings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-method {
        padding: 25px;
    }
    
    .payment-method i {
        font-size: 50px;
    }
    
    .payment-method h3 {
        font-size: 20px;
    }
    
    .avg-score h3 {
        font-size: 36px;
    }
    
    .avg-score .stars .fa-star {
        font-size: 24px;
        margin: 0 3px;
    }
    
    .rating-card {
        padding: 20px;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 10px;
        max-height: 90vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .rating-input label {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .site-footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 10px;
    }
    
    .footer-section h4 {
        font-size: 18px;
        justify-content: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.show {
        max-height: 500px;
        padding: 15px 0;
    }
    
    .main-nav a {
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-color);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .ratings-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 90%;
        max-width: 550px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .header-content {
        padding: 20px 0;
    }
    
    .hero-content h2 {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .ratings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        max-width: 600px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .ratings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .ratings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Prevent overflow */
body,
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.site-header,
section,
.site-footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.modal {
    padding: 20px 10px;
}

@media (max-width: 575.98px) {
    .modal {
        padding: 10px 5px;
    }
}

/* Contact Floating Button */
.contact-floating-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color, #3498db);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 24px;
}

.contact-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.6);
}

.contact-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
}

/* Contact Modal Tabs */
.contact-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.contact-tab-content {
    display: none;
}

.contact-tab-content.active {
    display: block;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.social-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    background: var(--bg-color);
}

.social-link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.social-link-card i {
    font-size: 32px;
    margin-bottom: 10px;
}

.social-link-card span {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .contact-floating-btn {
        left: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .contact-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
}

