/* Alçatı Emlak Theme (Overrides style.css for Landing Page) */

:root {
    --alcati-red: #b62b29;
    --alcati-red-dark: #8c201e;
    --alcati-dark: #2a2a2a;
    --alcati-black: #2b2b2b;
    --alcati-light: #f8f9fa;
    --alcati-white: #ffffff;
}

body.alcati-theme {
    background-color: var(--alcati-light);
    color: var(--alcati-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    /* Override base TOKİ Theme Variables for sitewide consistency */
    --toki-red: var(--alcati-red);
    --toki-red-dark: var(--alcati-red-dark);
    --toki-blue: var(--alcati-black);
    --toki-blue-dark: #111;
    --toki-blue-light: #444;

    --bg-hero: linear-gradient(135deg, var(--alcati-dark) 0%, var(--alcati-black) 40%, var(--alcati-red) 100%);
    --gradient-primary: linear-gradient(135deg, var(--alcati-red), var(--alcati-black));
    --gradient-hero: linear-gradient(135deg, var(--alcati-dark) 0%, #222 50%, var(--alcati-red) 100%);
    --gradient-card: linear-gradient(135deg, rgba(193, 18, 31, 0.06), rgba(43, 43, 43, 0.06));
    --gradient-accent: linear-gradient(135deg, var(--alcati-red), var(--alcati-red-dark));

    --accent-primary: var(--alcati-red);
    --accent-secondary: var(--alcati-black);
}

/* Navbar */
.alcati-navbar {
    background: var(--alcati-white) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.alcati-navbar .container {
    padding: 0 24px !important;
}

.alcati-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.alcati-logo-svg {
    height: 48px;
    width: auto;
}

.brand-title {
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    color: var(--alcati-black);
    letter-spacing: -0.5px;
}

.alcati-links a {
    color: var(--alcati-black) !important;
    font-weight: 600 !important;
}

.alcati-links a.active,
.alcati-links a:hover {
    color: var(--alcati-red) !important;
}

.toki-link {
    color: var(--alcati-red) !important;
    font-weight: 600;
    position: relative;
}

.toki-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--alcati-red);
    opacity: 0.3;
}

.toki-link:hover {
    color: var(--alcati-red-dark) !important;
}

.toki-link:hover::after {
    opacity: 1;
}

/* Hero Section */
.alcati-hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 85vh;
    /* Reduced from 85vh to prevent extreme vertical cropping */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center bottom;
    /* Often better for real estate to see the ground level */
    border-bottom: none !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-top: 60px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
    box-sizing: border-box;
    /* Account for navbar */
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    filter: blur(2px);
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.alcati-badge {
    background: var(--alcati-red) !important;
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
}

.btn-cta-toki {
    padding: 18px 50px !important;
    font-size: 1.4rem !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 20px rgba(193, 18, 31, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-cta-toki:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(193, 18, 31, 0.4);
    color: white !important;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 24px 0;
    color: white !important;
}

.hero-content h1 span {
    color: white !important;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9) !important;
}

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

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background: var(--alcati-red-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--alcati-black);
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* About Section */
.section-about {
    padding: 80px 0;
    background: white;
}

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

.section-title {
    font-size: 2.2rem;
    color: var(--alcati-black);
    margin-bottom: 24px;
}

.section-about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--alcati-red);
    margin-bottom: 12px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box {
    background: var(--alcati-light);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--alcati-black);
    margin-bottom: 8px;
}

.stat-desc {
    color: #666;
    font-weight: 600;
}

/* TOKİ Section */
.section-toki {
    padding: 40px 0 60px;
    background: var(--alcati-light);
}

.toki-header {
    text-align: center;
    margin-bottom: 40px;
}

.toki-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.toki-logo-inline {
    height: 40px;
}

.toki-header h2 {
    font-size: 2.2rem;
    color: var(--alcati-black);
}

.toki-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #555 !important;
    font-size: 1.1rem;
}

/* Home-specific Left Alignment Modifier */
.home-toki .toki-header {
    text-align: left;
}

.home-toki .toki-title-wrap {
    justify-content: flex-start;
}

.home-toki .toki-header p {
    margin: 0;
    max-width: none;
}

/* Adapting the original stats bar for light mode */
.toki-theme.stats-bar {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0;
    margin-bottom: 40px;
}

.toki-theme .stat-value {
    color: var(--alcati-red);
}

.toki-theme .stat-label {
    color: #555 !important;
}

/* Ensure the injected project card works on light bg */
.project-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Contact */
.section-contact {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contact-card {
    background: var(--alcati-light);
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--alcati-red);
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #444;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    background: white;
    color: var(--alcati-black);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.social-links a:hover {
    background: var(--alcati-red);
    color: white !important;
    border-color: var(--alcati-red);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Footer */
.alcati-footer {
    background: white !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 30px 0 20px !important;
    text-align: left !important;
}

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

.footer-brand h3 {
    color: var(--alcati-black);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.footer-brand p {
    color: var(--alcati-red);
    font-weight: 600;
    margin: 0;
}

.copyright {
    color: #6c757d !important;
    margin: 0 !important;
    font-size: 0.9rem;
}

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

/* Page Header Refinements */
.alcati-theme .page-header {
    padding-top: 0 !important;
}

.alcati-theme .breadcrumb {
    margin-bottom: 12px !important;
}