/* ===== LISTRA STUDIO - KOYU YEŞİL TEMA ===== */

/* CSS RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== LIGHT MODE (DEFAULT) ========== */
:root {
    /* Ana Renkler */
    --primary: #166534;
    --primary-hover: #14532d;
    --primary-light: #dcfce7;
    
    /* Arka Plan Renkleri */
    --bg-body: #ffffff;
    --bg-section: #f9fafb;
    --bg-card: #ffffff;
    --bg-input: #ffffff;
    
    /* Metin Renkleri */
    --text-dark: #111827;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    
    /* Border */
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    
    /* Hero/Banner için */
    --hero-bg: #166534;
    --hero-text: #ffffff;
    
    /* Durum Renkleri */
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Tipografi */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Boyutlar */
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 6px rgba(0,0,0,0.1);
}

/* ========== DARK MODE ========== */
[data-theme="dark"] {
    /* Ana Renkler */
    --primary: #22c55e;
    --primary-hover: #16a34a;
    --primary-light: #14532d;
    
    /* Arka Plan Renkleri */
    --bg-body: #111827;
    --bg-section: #1f2937;
    --bg-card: #1f2937;
    --bg-input: #374151;
    
    /* Metin Renkleri */
    --text-dark: #f9fafb;
    --text-medium: #e5e7eb;
    --text-light: #d1d5db;
    --text-muted: #9ca3af;
    
    /* Border */
    --border: #374151;
    --border-light: #4b5563;
    
    /* Hero/Banner için */
    --hero-bg: #14532d;
    --hero-text: #ffffff;
}

/* ========== BASE ========== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-body);
}

a {
    color: var(--primary);
    text-decoration: none;
}

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

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

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

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-body);
    border-bottom: 1px solid var(--border);
}

.nav {
    padding: 15px 0;
}

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

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    color: var(--text-medium);
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

/* Theme Toggle */
.theme-toggle {
    padding: 8px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 18px;
}

.theme-toggle:hover {
    background: var(--border-light);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-body);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* ========== MAIN CONTENT ========== */
main {
    margin-top: 80px;
}

/* ========== HERO SECTION ========== */
.hero {
    background: var(--hero-bg);
    padding: 80px 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--hero-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

/* ========== BUTTONS ========== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}

/* Hero içindeki butonlar */
.hero .cta-button,
.hero-cta .cta-button {
    background: #ffffff;
    color: var(--hero-bg);
}

.hero .cta-button:hover,
.hero-cta .cta-button:hover {
    background: #f3f4f6;
}

.hero .cta-secondary,
.hero-cta .cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero .cta-secondary:hover,
.hero-cta .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Normal butonlar (section içi) */
.cta-button.cta-primary {
    background: var(--primary);
    color: #ffffff;
}

.cta-button.cta-primary:hover {
    background: var(--primary-hover);
}

.section-cta .cta-button {
    background: var(--primary);
    color: #ffffff;
}

.section-cta .cta-button:hover {
    background: var(--primary-hover);
}

.cta-whatsapp {
    background: #25d366 !important;
    color: #ffffff !important;
}

.cta-whatsapp:hover {
    background: #128c7e !important;
}

/* ========== SECTIONS ========== */
.services,
.why-choose,
.recent-projects,
.faq-section,
.about-section,
.contact-section,
.projects-section {
    padding: 80px 0;
}

.services {
    background: var(--bg-section);
}

.why-choose {
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
}

/* ========== STATS SECTION ========== */
.stats {
    background: var(--hero-bg);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== SERVICE CARDS ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: border-color 0.2s;
}

.service-card:hover {
    border-color: var(--primary);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-badge {
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.price-label {
    font-size: 14px;
    color: var(--text-muted);
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.service-btn {
    padding: 8px 16px;
    background: var(--bg-section);
    border: none;
    border-radius: var(--radius);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.service-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

/* ========== PROJECT CARDS ========== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s;
}

.project-card:hover {
    border-color: var(--primary);
}

.project-image-container {
    position: relative;
    height: 200px;
    background: var(--bg-section);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
}

.project-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.project-content {
    padding: 20px;
}

.project-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.project-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.project-category {
    padding: 4px 10px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.project-content > p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tech-tag {
    padding: 4px 10px;
    background: var(--bg-section);
    color: var(--text-medium);
    border-radius: var(--radius);
    font-size: 12px;
}

.tech-more {
    padding: 4px 10px;
    background: var(--border);
    color: var(--text-muted);
    border-radius: var(--radius);
    font-size: 12px;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.project-date {
    font-size: 14px;
    color: var(--text-muted);
}

.project-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.project-link:hover {
    text-decoration: underline;
}

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

/* ========== FEATURE CARDS ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: var(--primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.feature-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 48px;
    font-weight: 800;
    color: var(--border);
}

/* ========== FAQ SECTION ========== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-question:hover {
    background: var(--bg-section);
}

.faq-icon {
    transition: transform 0.2s;
    color: var(--text-muted);
}

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

.faq-answer {
    display: none;
    padding: 0 20px 16px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    background: var(--primary);
    color: #ffffff;
}

.cta-buttons .cta-button:hover {
    background: var(--primary-hover);
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: var(--hero-bg);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.page-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero-content h1 {
        font-size: 28px;
    }
}

/* ========== ABOUT PAGE ========== */
.about-section {
    background: var(--bg-body);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.personal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.personal-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
}

.personal-stats .stat-item:hover {
    border-color: var(--primary);
}

.stat-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
}

.stat-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 4px;
}

.stat-info span {
    font-size: 14px;
    color: var(--text-muted);
}

/* Profile Card */
.about-visual {
    position: sticky;
    top: 100px;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    font-size: 48px;
}

.profile-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.profile-info p {
    color: var(--text-medium);
    margin-bottom: 12px;
}

.profile-location {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.profile-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

/* Quick Contact */
.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-btn {
    padding: 12px 20px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

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

/* Skills */
.skills-section {
    padding: 60px 0;
    background: var(--bg-section);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.skill-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    font-weight: 500;
    color: var(--text-dark);
}

.skill-level {
    color: var(--primary);
    font-weight: 600;
}

.skill-bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    background: var(--bg-body);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    color: var(--text-dark);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: var(--primary-hover);
}

/* Contact Info */
.contact-info-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    font-size: 20px;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-content p,
.info-content a {
    color: var(--text-medium);
    font-size: 15px;
}

.info-content a:hover {
    color: var(--primary);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: var(--text-medium);
    font-size: 15px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
    color: #ffffff;
}

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

.social-link.whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

.social-link.email {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

.social-link.email:hover {
    background: #ea580c;
    color: #ffffff;
}

.social-link.phone {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.social-link.phone:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Footer Contact Info */
.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .contact-item {
    font-size: 15px;
    color: var(--text-medium);
}

.footer .contact-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 4px;
}

.footer .contact-link {
    color: var(--primary);
}

.footer .contact-link:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

.powered-by {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s;
}

.whatsapp-float::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-text {
    display: none;
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-hover);
}

/* ========== LOADING SPINNER ========== */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    display: flex;
    gap: 8px;
}

.spinner > div {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.bounce1 { animation-delay: -0.32s; }
.bounce2 { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ========== SEO CONTENT ========== */
.seo-content-section {
    padding: 60px 0;
    background: var(--bg-section);
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.seo-article h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 12px;
}

.seo-article p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-article ul {
    margin: 16px 0;
    padding-left: 24px;
}

.seo-article li {
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
}

.seo-article a {
    color: var(--primary);
}

.seo-cta {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}

.seo-cta p {
    margin-bottom: 16px;
}

.seo-cta .cta-button {
    background: var(--primary);
    color: #ffffff;
}

.seo-cta .cta-button:hover {
    background: var(--primary-hover);
}

/* ========== PROJECTS PAGE ========== */
.projects-section {
    background: var(--bg-body);
}

.projects-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-medium);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

/* Hide on mobile */
@media (max-width: 768px) {
    .hide-mobile { display: none; }
}

/* AOS Override - disable animations */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* ========== CONTACT PAGE EXTRA ========== */
.contact-info-header h3,
.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-header p,
.form-header p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-details strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-details a,
.contact-details span {
    color: var(--text-medium);
    font-size: 15px;
}

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

.contact-details small {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-form-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========== PROJECTS PAGE EXTRA ========== */
.projects-showcase {
    padding: 60px 0;
    background: var(--bg-body);
}

.hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 24px;
}

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

.hero-stat .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.no-projects {
    text-align: center;
    padding: 80px 20px;
}

.no-projects-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-projects-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.no-projects h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.no-projects p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

/* ========== FLASH MESSAGES ========== */
.flash-message {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 500;
}

.flash-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.flash-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ========== ADMIN STYLES ========== */
.admin-header {
    background: var(--bg-body);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

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

.admin-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.admin-menu {
    display: flex;
    gap: 8px;
    list-style: none;
}

.admin-link {
    padding: 8px 16px;
    color: var(--text-medium);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 500;
}

.admin-link:hover,
.admin-link.active {
    background: var(--primary-light);
    color: var(--primary);
}

.admin-content {
    padding: 40px 0;
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.admin-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-section);
}

.admin-table td {
    color: var(--text-medium);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
}

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

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

.btn-secondary {
    background: var(--bg-section);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

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

.btn-danger {
    background: #ef4444;
    color: #ffffff;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

/* ========== LOGIN PAGE ========== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-section);
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-medium);
}

/* ========== PRINT STYLES ========== */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .scroll-to-top {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}
