/* ============================================================
   CEP-HOME TEKNİK SERVİS — Additional Styles
   HTML ile CSS arasındaki uyum için ek stiller
   ============================================================ */

/* ── Preloader ── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#preloader .loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: pulse 1.5s ease-in-out infinite;
}

#preloader .loader i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#preloader .loader span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
}

/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: none;
}

.logo:hover {
    color: var(--clr-primary);
}

.logo i {
    font-size: 1.5rem;
    color: var(--clr-primary);
}

.logo small {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    margin-top: -2px;
}

/* ── Nav Container ── */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--clr-primary);
    border-radius: var(--radius-full);
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
    background: rgba(var(--clr-primary-rgb), 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ── Nav Actions ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    border-radius: var(--radius-full);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-glow-primary);
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(var(--clr-primary-rgb), 0.5);
    color: #fff !important;
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Container ── */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--clr-primary);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--clr-secondary);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--clr-accent);
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

/* ── Gradient Text ── */
.gradient-text {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero Stats ── */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
}

.stat-plus, .stat-star {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── Hero Trust ── */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-trust i {
    color: var(--clr-success);
}

/* ── Phone Mockup ── */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a2332, #0f172a);
    border-radius: 40px;
    border: 3px solid rgba(var(--clr-primary-rgb), 0.2);
    padding: 12px;
    position: relative;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(var(--clr-primary-rgb), 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.phone-icon {
    font-size: 4rem;
    color: var(--clr-primary);
    z-index: 2;
}

.repair-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gear {
    position: absolute;
    color: rgba(var(--clr-primary-rgb), 0.15);
    animation: spin 4s linear infinite;
}

.gear-1 {
    font-size: 4rem;
    top: 20%;
    right: 10%;
}

.gear-2 {
    font-size: 3rem;
    bottom: 25%;
    left: 15%;
    animation-direction: reverse;
    animation-duration: 6s;
}

/* ── Floating Cards ── */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
}

.floating-card i {
    color: var(--clr-success);
}

.card-1 {
    top: 15%;
    right: -30px;
    animation: float 5s ease-in-out infinite;
}

.card-2 {
    bottom: 25%;
    left: -40px;
    animation: float 6s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 10%;
    right: -20px;
    animation: float 4s ease-in-out infinite 0.5s;
}

.card-3 i {
    color: var(--clr-accent);
}

.card-4 {
    top: 40%;
    right: -45px;
    animation: float 7s ease-in-out infinite 0.3s;
}

.card-4 i {
    color: var(--clr-secondary);
}

.card-5 {
    top: 5%;
    left: -20px;
    animation: float 5.5s ease-in-out infinite 0.8s;
}

.card-5 i {
    color: #e879f9;
}

.card-6 {
    bottom: 45%;
    left: -50px;
    animation: float 6.5s ease-in-out infinite 1.5s;
}

.card-6 i {
    color: var(--clr-primary);
}

.card-7 {
    bottom: -5%;
    left: 20px;
    animation: float 5.2s ease-in-out infinite 0.7s;
}

.card-7 i {
    color: #f59e0b;
}

/* ── Hero Wave ── */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Brands Section ── */
.brands-section {
    padding: 2rem 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
    overflow: hidden;
}

.brands-title {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.brands-track {
    display: flex;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.brand-item:hover {
    opacity: 1;
}

.brand-item i {
    font-size: 1.4rem;
    color: var(--clr-primary);
}

/* ── Section Header ── */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1.2rem;
    background: rgba(var(--clr-primary-rgb), 0.1);
    border: 1px solid rgba(var(--clr-primary-rgb), 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 600px;
    margin: 0.5rem auto 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Service Tags ── */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    justify-content: center;
}

.tag {
    padding: 2px 10px;
    background: rgba(var(--clr-primary-rgb), 0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--clr-primary);
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-primary);
    transition: all var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--clr-accent);
}

/* ── Why Grid ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.why-card {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--clr-primary-rgb), 0.15);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    border-radius: var(--radius-lg);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-glow-primary);
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── Reviews ── */
.reviews-stats {
    text-align: center;
    margin-bottom: 3rem;
}

.review-big-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 2rem 3rem;
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.big-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--clr-accent), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stars-row {
    display: flex;
    gap: 4px;
    font-size: 1.5rem;
    color: var(--clr-accent);
}

.review-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--clr-primary-rgb), 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.review-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.review-device {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-device i {
    margin-right: 4px;
}

.review-google-icon {
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    color: var(--clr-accent);
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}

.review-date {
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 0.5);
}

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

/* ── Pricing Grid ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.popular {
    border-color: rgba(var(--clr-primary-rgb), 0.3);
    box-shadow: 0 0 30px rgba(var(--clr-primary-rgb), 0.1);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

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

.pricing-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

.pricing-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--clr-primary-rgb), 0.15), rgba(var(--clr-secondary-rgb), 0.1));
    border-radius: var(--radius-lg);
    font-size: 1.4rem;
    color: var(--clr-primary);
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-list {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
    font-size: 0.9rem;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-name {
    color: var(--text-muted);
}

.pricing-price {
    font-weight: 700;
    color: var(--clr-primary);
}

.pricing-card .btn {
    margin: auto 1.5rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 1rem;
    background: rgba(var(--clr-primary-rgb), 0.05);
    border-radius: var(--radius-lg);
}

.pricing-note i {
    margin-right: 6px;
    color: var(--clr-primary);
}

/* ── FAQ ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.06);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(var(--clr-primary-rgb), 0.15);
}

.faq-item.active {
    border-color: rgba(var(--clr-primary-rgb), 0.2);
    box-shadow: 0 0 20px rgba(var(--clr-primary-rgb), 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

.faq-question i {
    color: var(--clr-primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Contact Section ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: rgba(var(--clr-primary-rgb), 0.2);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--clr-primary-rgb), 0.1);
    border-radius: var(--radius-lg);
    color: var(--clr-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.contact-card p a {
    color: var(--text-muted);
}

.contact-card p a:hover {
    color: var(--clr-primary);
}

/* ── Contact Form ── */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.contact-form-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1.5px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-lg);
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-group textarea {
    padding-left: 1rem;
    resize: vertical;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(var(--clr-primary-rgb), 0.12),
                0 0 20px rgba(var(--clr-primary-rgb), 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-light);
}

.btn-full {
    width: 100%;
}

/* ── Map Wrapper ── */
.map-wrapper {
    margin-top: 3rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.08);
}

/* ── Footer Grid ── */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: rgba(var(--clr-primary-rgb), 0.15);
    color: var(--clr-primary);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--clr-primary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--clr-primary);
    width: 16px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.06);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── WhatsApp Tooltip ── */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ── Scroll Animation ── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-animate].animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Toast Show ── */
.toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* ── Admin Panel Overlay ── */
.admin-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-overlay.active {
    opacity: 1;
}

.admin-login-card {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-login-header i {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.admin-login-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.admin-login-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.admin-form-group {
    margin-bottom: 1.2rem;
}

.admin-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.admin-input-wrapper {
    position: relative;
}

.admin-input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.admin-input-wrapper input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1.5px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-lg);
    color: var(--text-light);
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition);
}

.admin-input-wrapper input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(var(--clr-primary-rgb), 0.12);
}

.admin-error {
    padding: 10px 14px;
    background: rgba(var(--clr-danger-rgb), 0.1);
    border: 1px solid rgba(var(--clr-danger-rgb), 0.2);
    border-radius: var(--radius-md);
    color: var(--clr-danger);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.admin-error.shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.admin-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.08);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 1rem;
}

.admin-close-btn:hover {
    background: rgba(var(--clr-danger-rgb), 0.15);
    color: var(--clr-danger);
}

.admin-login-hint {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 0.4);
}

.admin-login-hint i {
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 0.4);
    margin-right: 4px;
}

/* ── Admin Panel Full ── */
.admin-panel {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-panel.active {
    opacity: 1;
}

.admin-panel .admin-sidebar {
    width: 260px;
    background: #0c1222;
    border-right: 1px solid rgba(148, 163, 184, 0.06);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex-shrink: 0;
}

.admin-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.1rem;
}

.admin-sidebar-header i {
    color: var(--clr-primary);
    font-size: 1.3rem;
}

.admin-sidebar-header small {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
}

.admin-nav {
    flex: 1;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.7rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.admin-nav-item:hover {
    background: rgba(var(--clr-primary-rgb), 0.06);
    color: var(--text-light);
}

.admin-nav-item.active {
    background: rgba(var(--clr-primary-rgb), 0.12);
    color: var(--clr-primary);
}

.admin-sidebar-footer {
    padding: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.06);
}

.admin-logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.7rem;
    background: rgba(var(--clr-danger-rgb), 0.1);
    border: 1px solid rgba(var(--clr-danger-rgb), 0.2);
    border-radius: var(--radius-md);
    color: var(--clr-danger);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.admin-logout-btn:hover {
    background: rgba(var(--clr-danger-rgb), 0.2);
}

.admin-panel .admin-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-dark);
    overflow-y: auto;
}

.admin-topbar {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.admin-topbar h2 {
    font-size: 1.2rem;
    font-weight: 700;
    flex: 1;
}

.admin-topbar-actions {
    display: flex;
    gap: 8px;
}

.admin-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
}

.admin-body {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

/* ── Admin Cards ── */
.admin-card {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.06);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-card h3 i {
    color: var(--clr-primary);
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.admin-card-header h3 {
    margin-bottom: 0;
}

/* ── Admin Form Grid ── */
.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.admin-form-grid .full-width {
    grid-column: 1 / -1;
}

.admin-form-group {
    margin-bottom: 0;
}

.admin-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1.5px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition);
}

.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(var(--clr-primary-rgb), 0.1);
}

.admin-form-group textarea {
    resize: vertical;
}

.admin-form-group select {
    appearance: none;
    cursor: pointer;
}

.admin-form-group select option {
    background: var(--bg-card);
}

/* ── Admin Items List ── */
.admin-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-item-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.06);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.admin-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-item-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--clr-primary-rgb), 0.1);
    border-radius: var(--radius-md);
    color: var(--clr-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.admin-item-title {
    flex: 1;
}

.admin-inline-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.2) !important;
    border-radius: 0 !important;
    padding: 4px 0 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.admin-inline-input:focus {
    border-bottom-color: var(--clr-primary) !important;
    box-shadow: none !important;
}

.admin-item-actions {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.admin-btn-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.08);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.85rem;
}

.admin-btn-icon:hover {
    background: rgba(var(--clr-primary-rgb), 0.15);
    color: var(--clr-primary);
}

.admin-btn-icon.danger:hover {
    background: rgba(var(--clr-danger-rgb), 0.15);
    color: var(--clr-danger);
}

.admin-btn-icon:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.admin-btn-icon.sm {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
}

.admin-item-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--clr-primary-rgb), 0.1);
    border-radius: 50%;
    color: var(--clr-primary);
    font-size: 0.8rem;
    font-weight: 700;
}

/* ── Admin Toggle ── */
.admin-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.admin-toggle input[type="checkbox"] {
    width: 36px;
    height: 20px;
    appearance: none;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: all var(--transition);
}

.admin-toggle input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 2px;
    left: 2px;
    background: #fff;
    border-radius: 50%;
    transition: all var(--transition);
}

.admin-toggle input[type="checkbox"]:checked {
    background: var(--clr-primary);
}

.admin-toggle input[type="checkbox"]:checked::before {
    transform: translateX(16px);
}

.toggle-label {
    font-size: 0.8rem;
}

/* ── Admin Pricing Items ── */
.admin-pricing-items {
    margin-top: 12px;
}

.admin-pricing-items .admin-table {
    font-size: 0.88rem;
}

.admin-pricing-items .admin-table input {
    width: 100%;
    padding: 6px 8px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 0.85rem;
    outline: none;
}

.admin-pricing-items .admin-table input:focus {
    border-color: var(--clr-primary);
}

/* ── Admin Review Avatar ── */
.review-avatar-mini {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

/* ── Admin SEO ── */
.admin-seo-tips {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.seo-tip.success {
    background: rgba(var(--clr-success-rgb), 0.06);
    border: 1px solid rgba(var(--clr-success-rgb), 0.15);
}

.seo-tip.success i {
    color: var(--clr-success);
    font-size: 1.1rem;
    margin-top: 2px;
}

.seo-tip.info {
    background: rgba(var(--clr-primary-rgb), 0.06);
    border: 1px solid rgba(var(--clr-primary-rgb), 0.15);
}

.seo-tip.info i {
    color: var(--clr-primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.seo-tip.warning {
    background: rgba(var(--clr-accent-rgb), 0.06);
    border: 1px solid rgba(var(--clr-accent-rgb), 0.15);
}

.seo-tip.warning i {
    color: var(--clr-accent);
    font-size: 1.1rem;
    margin-top: 2px;
}

.seo-tip strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.seo-tip p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.admin-seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-keyword {
    padding: 6px 14px;
    background: rgba(var(--clr-primary-rgb), 0.08);
    border: 1px solid rgba(var(--clr-primary-rgb), 0.15);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    color: var(--clr-primary);
    font-weight: 500;
}

/* ── Admin Data Actions ── */
.admin-data-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Why Section Background ── */
.why-section {
    background: linear-gradient(180deg, transparent, rgba(var(--clr-secondary-rgb), 0.03), transparent);
}

/* ── Pricing Section Background ── */
.pricing-section {
    background: linear-gradient(180deg, transparent, rgba(var(--clr-primary-rgb), 0.03), transparent);
}

/* ── FAQ Section Background ── */
.faq-section {
    background: linear-gradient(180deg, transparent, rgba(var(--clr-secondary-rgb), 0.02), transparent);
}

/* ── Responsive Overrides ── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--transition);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-phone span {
        display: none;
    }
    
    .nav-phone {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-panel .admin-sidebar {
        position: fixed;
        z-index: 100;
        transform: translateX(-100%);
        transition: transform var(--transition);
    }
    
    .admin-panel .admin-sidebar.active {
        transform: translateX(0);
    }
    
    .admin-menu-toggle {
        display: block;
    }
    
    .admin-body {
        padding: 1rem;
    }
    
    .admin-topbar {
        padding: 1rem;
    }
    
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .review-big-rating {
        padding: 1.5rem 2rem;
    }
    
    .big-number {
        font-size: 2.5rem;
    }
    
    .admin-login-card {
        padding: 2rem;
        margin: 1rem;
    }
}

/* ── Prefers Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   BLOG / BİLGİ KÖŞESİ
   ============================================================ */
.blog-section {
    background: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--clr-primary);
}

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

.blog-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-meta i {
    margin-right: 0.3rem;
    color: var(--clr-primary);
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-summary {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.blog-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    background: rgba(108, 92, 231, 0.1);
    color: var(--clr-primary);
    border-radius: 20px;
    font-weight: 500;
}

.blog-read-more {
    background: none;
    border: none;
    color: var(--clr-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    transition: all 0.3s ease;
    font-family: inherit;
}

.blog-read-more:hover {
    color: var(--clr-secondary);
    gap: 0.8rem;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* ── Blog Modal ── */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-modal.active {
    opacity: 1;
}

.blog-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.blog-modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease;
}

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

.blog-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.blog-modal-close:hover {
    background: var(--clr-primary);
    color: white;
    border-color: var(--clr-primary);
}

.blog-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.blog-modal-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.blog-modal-header .blog-meta {
    font-size: 0.8rem;
}

.blog-modal-body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.blog-modal-body p {
    margin-bottom: 1rem;
}

.blog-modal-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.blog-modal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.blog-modal-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── Blog Responsive ── */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-modal-content {
        padding: 1.5rem;
        width: 95%;
        max-height: 90vh;
    }
    
    .blog-modal-header h2 {
        font-size: 1.15rem;
    }
    
    .blog-modal-header {
        flex-direction: column;
    }
}

/* ── ULTRA MOBILE OPTIMIZATION ── */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        margin: 0;
        padding: 0;
    }
    .section {
        padding: 3rem 1.2rem !important;
    }
    .hero {
        padding-top: 7rem !important;
        padding-bottom: 3rem !important;
        min-height: auto;
    }
    .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
    .hero-content {
        padding-right: 0 !important;
        align-items: center;
    }
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    .hero-subtitle {
        margin: 0 auto 2rem auto !important;
    }
    .hero-buttons {
        justify-content: center !important;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        justify-content: center !important;
        margin-top: 2rem !important;
    }
    .services-grid, .pricing-grid, .why-grid, .reviews-grid, .footer-grid, .contact-grid, .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .map-wrapper {
        margin-top: 2rem;
        border-radius: 16px;
        overflow: hidden;
    }
    .map-wrapper iframe {
        height: 300px !important;
    }
    .map-wrapper a.btn {
        width: 85%;
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    .footer-section {
        text-align: center;
        padding: 3rem 1.2rem 1rem 1.2rem !important;
    }
    .footer-social {
        justify-content: center !important;
    }
    .review-card {
        padding: 1.5rem !important;
    }
    .pricing-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    .section-title {
        font-size: 1.8rem !important;
    }
    .btn {
        padding: 0.8rem 1.2rem !important;
    }
}

/* ── FIX TRANSPARENT MOBILE MENU GLITCH ── */
@media (max-width: 768px) {
    .navbar {
        background: #0f172a !important; 
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .nav-links {
        background: #0f172a !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
}
