@font-face {
    font-family: 'Inter';
    src: url('/wp-content/themes/wordpress-theme/fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/wp-content/themes/wordpress-theme/fonts/inter-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/wp-content/themes/wordpress-theme/fonts/inter-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/*
Theme Name: PhoneMR AirPods Repair
Theme URI: https://airpodstamir.com
Author: PhoneMR
Author URI: https://airpodstamir.com
Description: Premium AirPods repair service theme for PhoneMR - Apple-inspired minimal design
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: phonemr
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   PHONEMR - PREMIUM AIRPODS REPAIR THEME
   ======================================== */

/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --color-bg: #F6F7F9;
    --color-bg-dark: #111216;
    --color-accent: #4C65FF;
    --color-accent-hover: #3B52E0;
    --color-text: #111216;
    --color-text-secondary: #6B6F7A;
    --color-white: #FFFFFF;
    --color-star: #FFB800;
    --color-whatsapp: #25D366;
    --radius-card: 26px;
    --radius-button: 16px;
    --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.bg-dark { background-color: var(--color-bg-dark); }
.bg-light { background-color: var(--color-bg); }
.bg-white { background-color: var(--color-white); }

/* Section Spacing */
.section {
    padding: 5rem 0;
}

.section-lg {
    padding: 7rem 0;
}

/* Cards */
.card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.4s ease;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-button);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
    transform: scale(1.02);
}

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

.btn-secondary:hover {
    background-color: #E8EAED;
}

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

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--color-white);
}

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

.btn-dark:hover {
    background-color: #2a2d38;
    color: var(--color-white);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
}

.badge-accent {
    background-color: rgba(76, 101, 255, 0.1);
    color: var(--color-accent);
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
}

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

@media (max-width: 1024px) {
    .grid-lg-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-lg-1 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .grid-md-1 { grid-template-columns: 1fr; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flex */
.flex {
    display: flex;
}

.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Spacing */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 2rem; height: 2rem; }

/* Star Rating */
.star {
    color: var(--color-star);
    fill: var(--color-star);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
}

.nav-scrolled .nav-logo {
    color: var(--color-text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-scrolled .nav-link {
    color: var(--color-text);
}

.nav-link:hover {
    opacity: 0.7;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--color-bg-dark);
    position: relative;
    display: flex;
    align-items: center;
     padding-top: 0 !important;
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111216 0%, #1a1c24 50%, #111216 100%);
}

.hero-grid {
    padding-top: 70px;
    position: relative;
    z-index: 1;
}

.hero-card {
    background: var(--color-white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.hero-image {
    position: relative;
    min-height: 400px;
}

.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-content {
    padding: 3rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.trust-dot.green {
    background: #22c55e;
    animation: pulse 2s infinite;
}

.trust-dot.blue {
    background: var(--color-accent);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.trust-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
}

.trust-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.trust-card.featured {
    border: 2px solid rgba(76, 101, 255, 0.2);
}

.trust-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--color-bg);
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    background: var(--color-accent);
    color: var(--color-white);
}

.trust-card.featured .trust-icon {
    background: var(--color-accent);
    color: var(--color-white);
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.trust-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.featured-badge {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    background: var(--color-accent);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Stats */
.stats-bar {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-item:not(:last-child) {
    border-right: 1px solid #eee;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.service-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(76, 101, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.service-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
}

.service-desc {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
}

.service-link:hover {
    gap: 0.75rem;
}

.service-image {
    position: relative;
    min-height: 250px;
}

.service-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

/* Process Section */
.process-section {
    background: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.process-card {
    background: var(--color-bg);
    border-radius: var(--radius-card);
    padding: 2rem;
    position: relative;
}

.process-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.process-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(76, 101, 255, 0.15);
    line-height: 1;
}

.process-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.process-desc {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.process-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.process-detail::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.process-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-image {
    position: relative;
    height: 250px;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.process-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
}

.process-image-overlay span {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.process-image-overlay p {
    font-weight: 600;
    color: white;
}

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

.rating-banner {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.rating-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rating-score {
    width: 5rem;
    height: 5rem;
    background: var(--color-accent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-score span {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.review-quote {
    color: rgba(76, 101, 255, 0.3);
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.9375rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(76, 101, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.author-date {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.review-service {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(76, 101, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

/* Location Section */
.location-section {
    background: var(--color-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.location-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.location-badge svg {
    color: var(--color-accent);
}

.location-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: white;
}

.location-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-card {
    background: var(--color-bg);
    border-radius: var(--radius-card);
    padding: 1.5rem;
}

.detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.detail-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.detail-content {
    font-size: 0.9375rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: var(--color-text-secondary);
}

.detail-row span:last-child {
    font-weight: 600;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.transport-item svg {
    color: var(--color-accent);
    margin-top: 0.125rem;
}

.transport-item p:first-child {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.transport-item p:last-child {
    font-size: 0.875rem;
}

.location-buttons {
    display: flex;
    gap: 1rem;
}

.location-buttons .btn {
    flex: 1;
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--color-accent);
    color: white;
}

.social-link.whatsapp:hover {
    background: var(--color-whatsapp);
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact svg {
    color: var(--color-accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--color-whatsapp);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Mobile Bottom Bar */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    padding: 0.75rem 1rem;
    z-index: 1000;
    gap: 0.75rem;
}

.mobile-bar .btn {
    flex: 1;
    padding: 0.875rem;
}

.mobile-bar .btn:first-child {
    flex: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-card .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        min-height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-inner {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        order: -1;
        min-height: 200px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-lg {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 1.5rem;
    }
    
    .rating-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .rating-left {
        flex-direction: column;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .process-images {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .whatsapp-btn {
        display: none;
    }
    
    .mobile-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* Admin Bar Fix */
body.admin-bar .nav {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .nav {
        top: 46px;
    }
}

/* WordPress Alignments */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Screen Reader Text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   PHONEMR - NAVIGATION & HERO GAP FIX
   ======================================== */

/* Navigation'ı hero ile entegre et */
.nav {
    
    box-shadow: none !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}



/* Hero padding ayarı */
.hero {
    padding-top: 0 !important;
}

/* Hero içeriğini aşağı it */
.hero-grid {
    padding-top: 100px;
}


