:root {
    --primary-color: #6C63FF;
    --primary-dark: #5A52D5;
    --primary-light: #8B83FF;
    --secondary-color: #FF6584;
    --premium-color: #FFD700;
    --gold-color: #FFA500;
    --silver-color: #C0C0C0;
    --dark-color: #1a1a2e;
    --darker-color: #16213e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 35px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
}

.logo span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-color);
}

.nav-actions button:hover {
    background: var(--light-color);
}

.menu-toggle {
    display: none;
}

.search-box {
    margin-top: 15px;
    display: none;
}

.search-box.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.search-box form {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.search-box button {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.search-box button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--dark-color), var(--darker-color));
    padding: 60px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1), transparent);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-light);
}

.stat .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CATEGORIES FILTER
   ============================================ */
.categories-filter {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 25px;
    background: var(--light-color);
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-btn:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ============================================
   PROFILES SECTION
   ============================================ */
.profiles-section {
    padding: 25px 0 50px;
}

.category-section {
    margin-bottom: 35px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 0 5px;
}

.category-header h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
}

.category-header h2 i {
    color: var(--primary-color);
}

.badge {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge.premium {
    background: var(--premium-color);
    color: var(--dark-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.badge.gold {
    background: var(--gold-color);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.badge.silver {
    background: var(--silver-color);
    color: var(--dark-color);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

/* ============================================
   PROFILES GRID - 5'li Yatay
   ============================================ */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    margin: 0;
    padding: 0;
}

/* ============================================
   PROFILE CARD - SADECE RESİM
   ============================================ */
.profile-card {
    display: block;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    border-radius: 0;
}

/* ============================================
   RGB BORDER ANİMASYONU - 2px, Renk Değişen
   ============================================ */

/* Premium - Renkli RGB Border */
.profile-card.premium {
    border: 2px solid transparent;
    border-image: linear-gradient(45deg,
            #FFD700, #FF6B6B, #4ECDC4, #45B7D1,
            #FFD700, #FF6B6B, #4ECDC4, #45B7D1) 1;
    border-image-slice: 1;
    animation: rgbBorderPremium 3s linear infinite;
}

@keyframes rgbBorderPremium {
    0% {
        border-image: linear-gradient(0deg, #FFD700, #FF6B6B, #4ECDC4, #45B7D1, #FFD700) 1;
    }
    25% {
        border-image: linear-gradient(90deg, #FFD700, #FF6B6B, #4ECDC4, #45B7D1, #FFD700) 1;
    }
    50% {
        border-image: linear-gradient(180deg, #FFD700, #FF6B6B, #4ECDC4, #45B7D1, #FFD700) 1;
    }
    75% {
        border-image: linear-gradient(270deg, #FFD700, #FF6B6B, #4ECDC4, #45B7D1, #FFD700) 1;
    }
    100% {
        border-image: linear-gradient(360deg, #FFD700, #FF6B6B, #4ECDC4, #45B7D1, #FFD700) 1;
    }
}

/* Gold - Renkli RGB Border */
.profile-card.gold {
    border: 2px solid transparent;
    border-image: linear-gradient(45deg,
            #FFA500, #FF6B6B, #FFD93D, #6BCB77,
            #FFA500, #FF6B6B, #FFD93D, #6BCB77) 1;
    border-image-slice: 1;
    animation: rgbBorderGold 3s linear infinite;
}

@keyframes rgbBorderGold {
    0% {
        border-image: linear-gradient(0deg, #FFA500, #FF6B6B, #FFD93D, #6BCB77, #FFA500) 1;
    }
    25% {
        border-image: linear-gradient(90deg, #FFA500, #FF6B6B, #FFD93D, #6BCB77, #FFA500) 1;
    }
    50% {
        border-image: linear-gradient(180deg, #FFA500, #FF6B6B, #FFD93D, #6BCB77, #FFA500) 1;
    }
    75% {
        border-image: linear-gradient(270deg, #FFA500, #FF6B6B, #FFD93D, #6BCB77, #FFA500) 1;
    }
    100% {
        border-image: linear-gradient(360deg, #FFA500, #FF6B6B, #FFD93D, #6BCB77, #FFA500) 1;
    }
}

/* Silver - Renkli RGB Border */
.profile-card.silver {
    border: 2px solid transparent;
    border-image: linear-gradient(45deg,
            #C0C0C0, #A8A8A8, #D0D0D0, #B8B8B8,
            #C0C0C0, #A8A8A8, #D0D0D0, #B8B8B8) 1;
    border-image-slice: 1;
    animation: rgbBorderSilver 3s linear infinite;
}

@keyframes rgbBorderSilver {
    0% {
        border-image: linear-gradient(0deg, #C0C0C0, #A8A8A8, #D0D0D0, #B8B8B8, #C0C0C0) 1;
    }
    25% {
        border-image: linear-gradient(90deg, #C0C0C0, #A8A8A8, #D0D0D0, #B8B8B8, #C0C0C0) 1;
    }
    50% {
        border-image: linear-gradient(180deg, #C0C0C0, #A8A8A8, #D0D0D0, #B8B8B8, #C0C0C0) 1;
    }
    75% {
        border-image: linear-gradient(270deg, #C0C0C0, #A8A8A8, #D0D0D0, #B8B8B8, #C0C0C0) 1;
    }
    100% {
        border-image: linear-gradient(360deg, #C0C0C0, #A8A8A8, #D0D0D0, #B8B8B8, #C0C0C0) 1;
    }
}

/* Hover Efekti - Border kalınlaşır ve büyür */
.profile-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--shadow-hover);
    z-index: 10;
    border-width: 3px !important;
}

.profile-card:hover .profile-overlay {
    opacity: 1;
}

/* ============================================
   PROFILE IMAGE - Dikey Dikdörtgen (250x375)
   ============================================ */
.profile-image {
    position: relative;
    padding-top: 150%;
    /* 250:375 = 2:3 oranı = 150% */
    background: var(--light-color);
    overflow: hidden;
}

.profile-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
}

.placeholder-image i {
    font-size: 56px;
    color: #ccc;
}

/* ============================================
   CATEGORY BADGE (Resim Üzerinde)
   ============================================ */
.category-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.category-badge.premium {
    background: var(--premium-color);
    color: var(--dark-color);
}

.category-badge.gold {
    background: var(--gold-color);
    color: var(--white);
}

.category-badge.silver {
    background: var(--silver-color);
    color: var(--dark-color);
}

/* ============================================
   PROFILE OVERLAY (Hover'da Görünür)
   ============================================ */
.profile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    gap: 8px;
    backdrop-filter: blur(3px);
}

.profile-overlay i {
    font-size: 18px;
}

/* ============================================
   PROFILE DETAIL - DÜZELTİLDİ
   ============================================ */
.profile-detail {
    padding: 40px 0 60px;
}

.profile-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* ============================================
   PROFİL GALERİ
   ============================================ */
.profile-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    width: 100%;
    padding-top: 100%;
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    border: 3px solid #e0e0e0;
}

.main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
}

.main-image.placeholder i {
    font-size: 80px;
    color: #ccc;
}

/* Thumbnail Grid */
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.thumbnail {
    padding-top: 100%;
    background: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* ============================================
   PROFİL BİLGİLERİ
   ============================================ */
.profile-info-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-header {
    margin-bottom: 5px;
}

.profile-category-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.profile-category-badge.premium {
    background: var(--premium-color);
    color: var(--dark-color);
}

.profile-category-badge.gold {
    background: var(--gold-color);
    color: var(--white);
}

.profile-category-badge.silver {
    background: var(--silver-color);
    color: var(--dark-color);
}

.profile-header h1 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.profile-header h2 {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

/* Profil Stats */
.profile-stats {
    display: flex;
    gap: 24px;
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.stat-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

/* Profil Açıklama */
.profile-description {
    margin-bottom: 5px;
}

.profile-description h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.profile-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* İletişim Bilgileri */
.profile-contact {
    background: var(--light-color);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    color: var(--text-color);
    font-size: 14px;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
    font-size: 16px;
}

/* Fiyat ve Buton */
.profile-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    color: var(--white);
    gap: 20px;
    flex-wrap: wrap;
}

.profile-price-box .price {
    display: flex;
    flex-direction: column;
}

.profile-price-box .label {
    font-size: 13px;
    opacity: 0.8;
}

.profile-price-box .amount {
    font-size: 28px;
    font-weight: 700;
}

.btn-contact {
    padding: 12px 32px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ============================================
   BENZER İLANLAR - 5'li Grid
   ============================================ */
.similar-profiles {
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.similar-profiles h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.similar-card {
    display: block;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.similar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.similar-image {
    position: relative;
    padding-top: 100%;
    background: var(--light-color);
    overflow: hidden;
}

.similar-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-image .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
}

.similar-image .placeholder-image i {
    font-size: 40px;
    color: #ccc;
}

.similar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    gap: 8px;
    backdrop-filter: blur(2px);
}

.similar-card:hover .similar-overlay {
    opacity: 1;
}

.similar-info {
    padding: 10px 12px 12px;
    text-align: center;
}

.similar-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-category {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.similar-category.premium {
    background: var(--premium-color);
    color: var(--dark-color);
}

.similar-category.gold {
    background: var(--gold-color);
    color: var(--white);
}

.similar-category.silver {
    background: var(--silver-color);
    color: var(--dark-color);
}

/* ============================================
   NO RESULTS
   ============================================ */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary-light);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    width: 20px;
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-light);
}

/* ============================================
   RESPONSIVE - ANA SAYFA
   ============================================ */
@media (max-width: 1200px) {
    .profiles-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block !important;
    }

    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        border-radius: 0 0 16px 16px;
    }

    .nav-menu.active ul {
        flex-direction: column;
        gap: 15px;
    }

    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .stat .number {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .category-header h2 {
        font-size: 18px;
    }

    .badge {
        font-size: 11px;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }

    .filter-buttons {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .category-header h2 {
        font-size: 16px;
    }

    .badge {
        font-size: 10px;
        padding: 2px 8px;
    }

    .container {
        padding: 0 8px;
    }

    .category-section {
        margin-bottom: 15px;
    }

    .profiles-section {
        padding: 10px 0 30px;
    }

    .category-badge {
        font-size: 8px;
        padding: 2px 6px;
        top: 4px;
        right: 4px;
    }

    .profile-overlay {
        font-size: 11px;
    }

    .profile-overlay i {
        font-size: 14px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat .number {
        font-size: 20px;
    }

    .stat .label {
        font-size: 11px;
    }
}

/* ============================================
   RESPONSIVE - PROFİL SAYFASI
   ============================================ */
@media (max-width: 992px) {
    .profile-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-gallery {
        position: static;
    }

    .main-image {
        padding-top: 75%;
        max-height: 500px;
    }

    .similar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .profile-detail {
        padding: 20px 0 40px;
    }

    .profile-header h1 {
        font-size: 26px;
    }

    .profile-header h2 {
        font-size: 16px;
    }

    .profile-stats {
        gap: 15px;
    }

    .profile-price-box {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    .profile-price-box .amount {
        font-size: 24px;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .profile-stats {
        flex-direction: column;
        gap: 8px;
    }

    .profile-contact {
        padding: 12px 16px;
    }

    .contact-item {
        font-size: 13px;
    }

    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .similar-info h4 {
        font-size: 12px;
    }
}

/* ============================================
   ANİMASYONLAR
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card {
    animation: fadeInUp 0.4s ease forwards;
}

.profile-card:nth-child(2) {
    animation-delay: 0.05s;
}
.profile-card:nth-child(3) {
    animation-delay: 0.1s;
}
.profile-card:nth-child(4) {
    animation-delay: 0.15s;
}
.profile-card:nth-child(5) {
    animation-delay: 0.2s;
}
.profile-card:nth-child(6) {
    animation-delay: 0.25s;
}
.profile-card:nth-child(7) {
    animation-delay: 0.3s;
}
.profile-card:nth-child(8) {
    animation-delay: 0.35s;
}
.profile-card:nth-child(9) {
    animation-delay: 0.4s;
}
.profile-card:nth-child(10) {
    animation-delay: 0.45s;
}
.profile-card:nth-child(11) {
    animation-delay: 0.5s;
}
.profile-card:nth-child(12) {
    animation-delay: 0.55s;
}

/* ============================================
   PROFİL DETAY SAYFASI - DÜZENLİ VERSİYON
   ============================================ */

.profile-detail {
    padding: 30px 0 60px;
}

/* ===== PROFİL BAŞLIK ===== */
.profile-detail-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.profile-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.profile-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-category-badge.premium {
    background: #FFD700;
    color: #1a1a2e;
}

.profile-category-badge.gold {
    background: #FFA500;
    color: #ffffff;
}

.profile-category-badge.silver {
    background: #C0C0C0;
    color: #1a1a2e;
}

.profile-view-count {
    font-size: 13px;
    color: #666;
}

.profile-view-count i {
    color: #6C63FF;
}

.profile-name {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.profile-title {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

/* ===== PROFİL GRİD ===== */
.profile-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* ===== GALERİ ===== */
.profile-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    width: 100%;
    padding-top: 100%;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 3px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    padding-top: 100%;
}

.main-image.placeholder i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 10px;
}

.main-image.placeholder span {
    font-size: 14px;
    color: #999;
}

/* Thumbnail */
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.thumbnail {
    padding-top: 100%;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    border-color: #6C63FF;
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.3);
}

.thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* ===== PROFİL BİLGİLERİ ===== */
.profile-info-detail {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Meta Top */
.profile-meta-top {
    display: flex;
    gap: 25px;
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.meta-item i {
    color: #6C63FF;
    font-size: 16px;
    width: 20px;
}

/* Açıklama */
.profile-description {
    background: #f8f9fa;
    padding: 18px 20px;
    border-radius: 12px;
}

.profile-description h3 {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.profile-description h3 i {
    color: #6C63FF;
    margin-right: 6px;
}

.profile-description p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

/* İletişim */
.profile-contact {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    color: #333;
    font-size: 14px;
}

.contact-item i {
    width: 20px;
    color: #6C63FF;
    font-size: 16px;
}

/* Fiyat ve Randevu */
.profile-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: linear-gradient(135deg, #6C63FF, #5A52D5);
    border-radius: 12px;
    color: #ffffff;
    gap: 20px;
    flex-wrap: wrap;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 26px;
    font-weight: 700;
}

.btn-appointment {
    padding: 12px 32px;
    background: #ffffff;
    color: #6C63FF;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ===== BENZER İLANLAR ===== */
.similar-profiles {
    padding-top: 35px;
    border-top: 2px solid #eee;
}

.similar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.similar-header h3 {
    font-size: 22px;
    color: #1a1a2e;
}

.similar-header h3 i {
    color: #6C63FF;
    margin-right: 8px;
}

.similar-count {
    font-size: 13px;
    color: #666;
    background: #f8f9fa;
    padding: 4px 14px;
    border-radius: 20px;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.similar-card {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
}

.similar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.similar-image {
    position: relative;
    padding-top: 100%;
    background: #f8f9fa;
    overflow: hidden;
}

.similar-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-image .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
}

.similar-image .placeholder-image i {
    font-size: 40px;
    color: #ccc;
}

.similar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    gap: 8px;
    backdrop-filter: blur(2px);
}

.similar-card:hover .similar-overlay {
    opacity: 1;
}

.similar-info {
    padding: 10px 12px 12px;
    text-align: center;
}

.similar-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-category {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
}

.similar-category.premium {
    background: #FFD700;
    color: #1a1a2e;
}

.similar-category.gold {
    background: #FFA500;
    color: #ffffff;
}

.similar-category.silver {
    background: #C0C0C0;
    color: #1a1a2e;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .profile-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-gallery {
        position: static;
    }
    
    .main-image {
        padding-top: 75%;
        max-height: 500px;
    }
    
    .similar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .profile-detail {
        padding: 20px 0 40px;
    }
    
    .profile-name {
        font-size: 28px;
    }
    
    .profile-title {
        font-size: 16px;
    }
    
    .profile-meta-top {
        gap: 15px;
    }
    
    .profile-price-box {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }
    
    .price-amount {
        font-size: 22px;
    }
    
    .btn-appointment {
        width: 100%;
        justify-content: center;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .similar-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .profile-badge-wrap {
        flex-direction: column;
        gap: 8px;
    }
    
    .profile-contact {
        padding: 12px 16px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }
    
    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .similar-info h4 {
        font-size: 12px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-title {
        font-size: 14px;
    }
}

/* ============================================
   PROFİL AKSİYON BUTONLARI (ARA / WHATSAPP)
   ============================================ */
.profile-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.profile-action-buttons .btn-call,
.profile-action-buttons .btn-whatsapp {
    flex: 1;
    min-width: 140px;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
}

/* Arama Butonu - Mavi */
.profile-action-buttons .btn-call {
    background: linear-gradient(135deg, #4A90D9, #357ABD);
    box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
}

.profile-action-buttons .btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 217, 0.4);
}

.profile-action-buttons .btn-call i {
    font-size: 18px;
}

/* WhatsApp Butonu - Yeşil */
.profile-action-buttons .btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.profile-action-buttons .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.profile-action-buttons .btn-whatsapp i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 480px) {
    .profile-action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .profile-action-buttons .btn-call,
    .profile-action-buttons .btn-whatsapp {
        flex: none;
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* ============================================
   YUKARI ÇIK BUTONU
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
}

.back-to-top:active {
    transform: scale(0.95);
}

/* Mobil için buton boyutu */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
    }
}

/* ============================================
   İLETİŞİM SAYFASI
   ============================================ */
.contact-page {
    padding: 40px 0 60px;
}

/* ===== SAYFA BAŞLIK ===== */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-header h1 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* ===== İLETİŞİM GRİD - TEK SÜTUN ===== */
.contact-grid-single {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

/* ===== İLETİŞİM BİLGİLERİ - TAM GENİŞLİK ===== */
.contact-info-full {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.contact-info-full h2 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.contact-info-full h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-items-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-item-full {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 20px;
    background: var(--light-color);
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.contact-item-full:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-detail h4 {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 2px;
    font-weight: 500;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--primary-dark);
}

/* ===== İLAN VERME - TAM GENİŞLİK ===== */
.advertise-full {
    width: 100%;
}

.advertise-box-full {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px 35px;
    border-radius: var(--border-radius);
    color: var(--white);
    width: 100%;
    box-shadow: var(--shadow-hover);
}

.advertise-icon {
    text-align: center;
    font-size: 48px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.3);
}

.advertise-box-full h2 {
    font-size: 28px;
    margin-bottom: 12px;
    text-align: center;
}

.advertise-box-full > p {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advertise-features-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item-full {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
}

.feature-item-full i {
    color: #FFD700;
    font-size: 16px;
    min-width: 20px;
}

.advertise-contact-full {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.advertise-contact-full p {
    margin-bottom: 15px;
    font-size: 17px;
}

.advertise-buttons-full {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.advertise-buttons-full .btn-call-full,
.advertise-buttons-full .btn-whatsapp-full {
    padding: 14px 35px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark-color);
    background: var(--white);
    min-width: 180px;
    justify-content: center;
}

.advertise-buttons-full .btn-call-full:hover,
.advertise-buttons-full .btn-whatsapp-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.advertise-buttons-full .btn-call-full i {
    color: var(--primary-color);
    font-size: 18px;
}

.advertise-buttons-full .btn-whatsapp-full i {
    color: #25D366;
    font-size: 20px;
}

/* ===== ÇALIŞMA SAATLERİ ===== */
.contact-hours {
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-hours h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-hours h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hour-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
    text-align: center;
}

.hour-item .day {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

.hour-item .time {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .contact-items-row {
        grid-template-columns: 1fr;
    }
    
    .advertise-features-full {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 20px 0 40px;
    }
    
    .contact-header h1 {
        font-size: 28px;
    }
    
    .contact-header p {
        font-size: 16px;
    }
    
    .contact-info-full {
        padding: 20px;
    }
    
    .contact-item-full {
        padding: 12px 16px;
        flex-direction: row;
    }
    
    .advertise-box-full {
        padding: 25px 20px;
    }
    
    .advertise-box-full h2 {
        font-size: 24px;
    }
    
    .advertise-features-full {
        grid-template-columns: 1fr;
    }
    
    .advertise-buttons-full {
        flex-direction: column;
        align-items: center;
    }
    
    .advertise-buttons-full .btn-call-full,
    .advertise-buttons-full .btn-whatsapp-full {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-item-full {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .advertise-box-full h2 {
        font-size: 20px;
    }
    
    .feature-item-full {
        font-size: 14px;
        padding: 10px 14px;
    }
}