/* ===== CSS Variables ===== */
:root {
    --navy-blue: #0a1e42;
    --light-navy: #1a3a6b;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-gray: #6c757d;
    --accent-blue: #2563eb;
    
    /* Pastel Colors for Calculator Page */
    --pastel-blue: #e0f2fe;
    --pastel-purple: #f3e8ff;
    --pastel-pink: #fce7f3;
    --pastel-green: #d1fae5;
    --pastel-yellow: #fef3c7;
    --pastel-orange: #fed7aa;
    
    --gradient-blue: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    --gradient-purple: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    --gradient-green: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    --gradient-sunset: linear-gradient(135deg, #fed7aa 0%, #fbbf24 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--navy-blue);
    background-color: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    button, 
    .nav-link,
    .social-link,
    .suggestion-item,
    .location-btn,
    .map-location-btn {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }
    
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    button {
        min-height: 44px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* ===== Header ===== */
.header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:active {
    transform: scale(0.9);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 2rem;
    animation: scaleIn 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-divider {
    width: 100px;
    height: 3px;
    background-color: var(--white);
    margin: 0 auto;
    animation: scaleIn 0.8s ease 0.6s both;
    transform-origin: center;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy-blue);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-blue);
    transition: width 0.6s ease 0.3s;
}

.section-title.animated::after {
    width: 80px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.about-text.highlight {
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 1.25rem;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-left: 4px solid var(--accent-blue);
    margin-top: 2rem;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 100px 0;
    background-color: var(--light-gray);
}

/* Fan Container */

.fan-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.features-fan {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 2rem;
}

.features-fan .feature-card {
    position: absolute;
    width: 280px;
    min-height: 360px;
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(10, 30, 66, 0.15);
    transition: all 1.1s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid var(--medium-gray);
    cursor: pointer;
    transform-origin: center bottom;
    bottom: 0;
    left: 50%;
    will-change: transform;
}

.features-fan .feature-card[data-index="0"] {
    transition-delay: 0s;
}

.features-fan .feature-card[data-index="1"] {
    transition-delay: 0.08s;
}

.features-fan .feature-card[data-index="2"] {
    transition-delay: 0.16s;
}

.features-fan .feature-card[data-index="3"] {
    transition-delay: 0.24s;
}

/* Stacked (closed) state */
.features-fan:not(.expanded) .feature-card {
    transform: translateX(-50%) rotate(0deg);
    box-shadow: 0 4px 15px rgba(10, 30, 66, 0.1);
    transition-delay: 0s;
}


.features-fan:not(.expanded) .feature-card[data-index="0"] {
    transform: translateX(-50%) rotate(-10deg) scale(0.88);
    z-index: 1;
    opacity: 0.5;
    transition-delay: 0.24s;
}

.features-fan:not(.expanded) .feature-card[data-index="1"] {
    transform: translateX(-50%) rotate(-4deg) scale(0.93);
    z-index: 2;
    opacity: 0.7;
    transition-delay: 0.16s;
}

.features-fan:not(.expanded) .feature-card[data-index="2"] {
    transform: translateX(-50%) rotate(3deg) scale(0.97);
    z-index: 3;
    opacity: 0.85;
    transition-delay: 0.08s;
}

.features-fan:not(.expanded) .feature-card[data-index="3"] {
    transform: translateX(-50%) rotate(8deg) scale(1);
    z-index: 4;
    opacity: 1;
    transition-delay: 0s;
}

.features-fan:not(.expanded) .feature-card:hover {
    transform: translateX(-50%) translateY(-15px) rotate(0deg) scale(1.02) !important;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(10, 30, 66, 0.25);
    opacity: 1 !important;
    transition-delay: 0s !important;
}

/* Expanded state - Fan layout */
.features-fan.expanded {
    height: 550px;
}

.features-fan.expanded .feature-card[data-index="0"] {
    transform: translateX(calc(-50% - 400px)) translateY(-100px) rotate(-22deg) scale(1);
    z-index: 1;
    transition-delay: 0s;
}

.features-fan.expanded .feature-card[data-index="1"] {
    transform: translateX(calc(-50% - 135px)) translateY(-50px) rotate(-8deg) scale(1);
    z-index: 2;
    transition-delay: 0.08s;
}

.features-fan.expanded .feature-card[data-index="2"] {
    transform: translateX(calc(-50% + 135px)) translateY(-50px) rotate(8deg) scale(1);
    z-index: 3;
    transition-delay: 0.16s;
}

.features-fan.expanded .feature-card[data-index="3"] {
    transform: translateX(calc(-50% + 400px)) translateY(-100px) rotate(22deg) scale(1);
    z-index: 4;
    transition-delay: 0.24s;
}

.features-fan.expanded .feature-card {
    box-shadow: 0 12px 40px rgba(10, 30, 66, 0.2);
    border-color: transparent;
    opacity: 1;
}

.features-fan.expanded .feature-card:hover {
    transform: translateX(calc(-50% + var(--hover-offset-x, 0))) translateY(calc(var(--base-y, -40px) - 20px)) rotate(var(--hover-rotate, 0deg)) scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(10, 30, 66, 0.35);
    z-index: 10;
    border-color: var(--navy-blue);
    transition-delay: 0s;
}

.features-fan.expanded .feature-card[data-index="0"]:hover {
    --hover-offset-x: -400px;
    --base-y: -100px;
    --hover-rotate: -22deg;
}

.features-fan.expanded .feature-card[data-index="1"]:hover {
    --hover-offset-x: -135px;
    --base-y: -50px;
    --hover-rotate: -8deg;
}

.features-fan.expanded .feature-card[data-index="2"]:hover {
    --hover-offset-x: 135px;
    --base-y: -50px;
    --hover-rotate: 8deg;
}

.features-fan.expanded .feature-card[data-index="3"]:hover {
    --hover-offset-x: 400px;
    --base-y: -100px;
    --hover-rotate: 22deg;
}

/* Fan Toggle Button */
.fan-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(10, 30, 66, 0.2);
    position: relative;
    overflow: hidden;
}

.fan-toggle-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(10, 30, 66, 0.35);
}

.fan-toggle-btn:active {
    transform: translateY(-1px) scale(1);
}

.fan-toggle-btn .btn-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fan-toggle-btn.active .btn-icon {
    transform: rotate(135deg);
}

.fan-toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.fan-toggle-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(10, 30, 66, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 30, 66, 0.2);
    border-color: var(--accent-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(10, 30, 66, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== Values Section ===== */
.values {
    padding: 100px 0;
    background-color: var(--white);
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.values-text strong {
    color: var(--navy-blue);
    font-weight: 600;
}

.values-text.highlight {
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 1.25rem;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-left: 4px solid var(--accent-blue);
    margin-top: 2rem;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 1;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 400px;
    line-height: 1.5;
}

.footer-contact {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: linear-gradient(180deg, var(--navy-blue) 0%, var(--light-navy) 100%);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 40px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        padding: 1.25rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .nav-overlay.active {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        padding: 0 10px;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
        text-align: center;
    }

    .hero-cta-text {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-fan {
        max-width: 100%;
        height: 450px;
        padding: 0 20px;
    }

    .features-fan .feature-card {
        width: 260px;
        min-height: 340px;
        padding: 2rem 1.5rem;
    }

    .features-fan.expanded {
        height: 900px;
    }

    .features-fan.expanded .feature-card[data-index="0"] {
        transform: translateX(-50%) translateY(-600px) rotate(-15deg);
    }

    .features-fan.expanded .feature-card[data-index="1"] {
        transform: translateX(-50%) translateY(-400px) rotate(-5deg);
    }

    .features-fan.expanded .feature-card[data-index="2"] {
        transform: translateX(-50%) translateY(-200px) rotate(5deg);
    }

    .features-fan.expanded .feature-card[data-index="3"] {
        transform: translateX(-50%) translateY(0) rotate(15deg);
    }

    .features-fan.expanded .feature-card:hover {
        transform: translateX(-50%) translateY(calc(var(--mobile-y, 0) - 15px)) rotate(var(--hover-rotate, 0deg)) !important;
    }

    .features-fan.expanded .feature-card[data-index="0"]:hover {
        --mobile-y: -600px;
        --hover-rotate: -15deg;
    }

    .features-fan.expanded .feature-card[data-index="1"]:hover {
        --mobile-y: -400px;
        --hover-rotate: -5deg;
    }

    .features-fan.expanded .feature-card[data-index="2"]:hover {
        --mobile-y: -200px;
        --hover-rotate: 5deg;
    }

    .features-fan.expanded .feature-card[data-index="3"]:hover {
        --mobile-y: 0;
        --hover-rotate: 15deg;
    }

    .fan-toggle-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about,
    .why-us,
    .values {
        padding: 60px 0;
    }
    
    .about-text,
    .values-text {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 5px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }

    .footer {
        padding: 50px 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
        padding-bottom: 2rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.5rem;
        padding: 0.375rem;
    }
    
    .nav {
        width: 85%;
        max-width: none;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .features-fan {
        max-width: 100%;
        height: 400px;
    }

    .features-fan .feature-card {
        width: 240px;
        min-height: 320px;
        padding: 1.75rem 1.25rem;
    }

    .features-fan.expanded {
        height: 850px;
    }

    .fan-toggle-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-logo {
        height: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: none;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-text,
    .values-text {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
}

/* ===== CTA Button ===== */
.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-cta-text {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    opacity: 0.8;
}

/* ===== Fiyat Hesaplama Section ===== */
.price-calculator {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.calculator-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.calculator-tabs {
    display: flex;
    border-bottom: 1px solid var(--medium-gray);
    background: #fafbfc;
}

.tab-button {
    flex: 1;
    padding: 1.25rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover {
    background: rgba(37, 99, 235, 0.05);
}

.tab-button.active {
    color: var(--accent-blue);
    background: var(--white);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-blue);
}

.tab-content {
    display: none;
    padding: 2.5rem;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group:focus-within {
    z-index: 100;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.input-with-location {
    position: relative;
    display: flex;
    gap: 0.5rem;
}

.address-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.address-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.location-btn {
    padding: 0 1.25rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.location-btn:active {
    transform: scale(0.95);
}

.location-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

.location-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    margin-top: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: none;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.address-suggestions.show {
    display: block;
    animation: dropdownSlideIn 0.3s ease;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item {
    padding: 0.875rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    user-select: none;
    pointer-events: auto;
    position: relative;
}

.suggestion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-blue);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.suggestion-item:hover::before {
    transform: scaleY(1);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(37, 99, 235, 0.06);
    padding-left: 1.5rem;
}

.suggestion-item:active {
    background: rgba(37, 99, 235, 0.12);
}

.calculate-btn {
    width: 100%;
    padding: 1.125rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 30, 66, 0.25);
}

.calculate-btn:active {
    transform: translateY(0);
}

.calculate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.calculate-btn.calculating {
    position: relative;
    pointer-events: none;
}

.calculate-btn.calculating::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Harita Stil */
.map-instructions {
    background: #eff6ff;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.map-instructions i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.map-instructions p {
    margin: 0;
    color: var(--navy-blue);
    font-size: 0.95rem;
}

.map-search-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.map-search-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-search-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-search-label i {
    color: var(--accent-blue);
}

.map-search-wrapper {
    position: relative;
    display: flex;
    gap: 0.5rem;
}

.map-search-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.map-search-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.map-location-btn {
    padding: 0 1rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.map-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.map-location-btn:active {
    transform: scale(0.95);
}

.map-location-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

.map-location-btn.loading i {
    animation: spin 1s linear infinite;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--medium-gray);
}

.map-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.map-btn {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--navy-blue);
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-btn:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.map-controls .calculate-btn {
    flex: 1;
    margin-top: 0;
}

/* Sonuç Alan */
.result-container {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 16px;
    border: 2px solid #86efac;
    animation: fadeIn 0.5s ease;
}

.result-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.result-icon i {
    font-size: 3rem;
    color: #059669;
}

.result-details {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
}

.result-label {
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 1.05rem;
}

.result-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.result-value.price {
    color: #059669;
    font-size: 1.5rem;
}

.result-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
    font-style: italic;
}

/* Responsive Fiyat Hesaplama */
@media (max-width: 768px) {
    .price-calculator {
        padding: 60px 0;
    }
    
    .calculator-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .calculator-wrapper {
        border-radius: 16px;
        margin: 0 -5px;
    }

    .tab-content {
        padding: 1.5rem;
    }

    .tab-button {
        font-size: 0.9rem;
        padding: 1rem 0.75rem;
    }

    .map-search-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-search-label {
        font-size: 0.85rem;
    }
    
    .map-search-input {
        font-size: 0.9rem;
        padding: 0.75rem 0.875rem;
    }

    .map-container {
        height: 320px;
    }

    .map-controls {
        flex-direction: column;
        gap: 0.75rem;
    }

    .map-btn {
        width: 100%;
        justify-content: center;
    }

    .result-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.875rem 1.25rem;
    }
    
    .result-label {
        font-size: 1rem;
    }
    
    .result-value {
        font-size: 1.15rem;
    }
    
    .result-value.price {
        font-size: 1.35rem;
    }

    .input-with-location {
        flex-direction: row;
        gap: 0.5rem;
    }

    .location-btn {
        padding: 0 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .price-calculator {
        padding: 50px 0;
    }
    
    .calculator-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .calculator-wrapper {
        margin: 0;
    }
    
    .tab-button {
        font-size: 0.85rem;
        padding: 0.875rem 0.5rem;
    }
    
    .tab-content {
        padding: 1.25rem;
    }
    
    .form-group label,
    .map-search-label {
        font-size: 0.875rem;
    }
    
    .address-input,
    .map-search-input {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
    }

    .map-container {
        height: 280px;
    }
    
    .calculate-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .result-container {
        padding: 1.5rem;
    }
    
    .result-icon i {
        font-size: 2.5rem;
    }
    
    .result-note {
        font-size: 0.8rem;
    }

    .input-with-location {
        flex-direction: column;
        gap: 0.5rem;
    }

    .location-btn {
        width: 100%;
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .map-location-btn {
        padding: 0 0.875rem;
        font-size: 0.95rem;
    }
}

/* ================================================
   SPLIT SCREEN CALCULATOR - MODERN DESIGN
   ================================================ */

/* Split Screen Container */
.split-screen-calculator {
    display: flex;
    height: calc(100vh - 80px);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Left Side - Full Height Map */
.map-side {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.full-map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Map Overlay Controls */
.map-overlay-top {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
}

.map-logo {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    pointer-events: auto;
}

.map-logo i {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.map-logo span {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.map-reset-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    pointer-events: auto;
}

.map-reset-btn i {
    font-size: 1.1rem;
    color: var(--navy-blue);
}

.map-reset-btn:hover {
    background: var(--white);
    transform: scale(1.05) rotate(90deg);
}

/* Result Overlay on Map */
.result-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: resultSlideUp 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes resultSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.result-overlay-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    min-width: 400px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    text-align: center;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.result-badge i {
    font-size: 1rem;
}

.result-price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
}

.result-distance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 600;
}

.result-distance i {
    color: var(--accent-blue);
}

.result-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.result-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.result-close-btn i {
    font-size: 0.9rem;
    color: #64748b;
}

/* Right Side - Form Panels */
.form-side {
    width: 480px;
    background: #f8fafc;
    height: 100%;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.form-side-inner {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Cards */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.form-card:hover {
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Header Card */
.header-card {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: white;
    text-align: center;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
}

.form-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Method Selector */
.method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.method-btn {
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.method-btn i {
    font-size: 1.75rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.method-btn span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
}

.method-btn:hover {
    background: #e2e8f0;
    border-color: var(--accent-blue);
}

.method-btn.active {
    background: rgba(37, 99, 235, 0.08);
    border-color: var(--accent-blue);
}

.method-btn.active i {
    color: var(--accent-blue);
}

.method-btn.active span {
    color: var(--navy-blue);
}

/* Location Card */
.location-card {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.location-card:not(.active) {
    display: none;
}

.location-group {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.location-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1.8rem;
}

.location-icon.pickup {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.location-icon.delivery {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.location-icon i {
    font-size: 1.3rem;
}

.location-input-wrapper {
    flex: 1;
}

.location-input-wrapper label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.input-group {
    display: flex;
    gap: 0.75rem;
    position: relative;
}

.location-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.location-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.quick-location-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quick-location-btn i {
    font-size: 1.1rem;
    color: var(--accent-blue);
}

.quick-location-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: scale(1.05);
}

.quick-location-btn:hover i {
    color: white;
}

/* Show on Map Button */
.show-on-map-btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.12) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.show-on-map-btn i {
    font-size: 1rem;
}

.show-on-map-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.show-on-map-btn:active {
    transform: translateY(0);
}

/* Location Divider */
.location-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.divider-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.divider-icon i {
    font-size: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* Map Method Card */
.map-instruction-box {
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.12));
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.map-instruction-box i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.map-instruction-box p {
    margin: 0;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.location-search-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.location-search-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-icon.pickup {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.search-icon.delivery {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.search-icon i {
    font-size: 1.1rem;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Calculate Button */
.calculate-btn-new {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.calculate-btn-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.calculate-btn-new:hover::before {
    left: 100%;
}

.calculate-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(10, 30, 66, 0.3),
        0 6px 20px rgba(10, 30, 66, 0.2);
}

.calculate-btn-new:active {
    transform: translateY(0);
}

.calculate-btn-new i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.calculate-btn-new:hover i {
    transform: translateX(5px);
}

/* Features Mini */
.features-mini {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.feature-mini i {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.feature-mini span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

/* Address Suggestions (Updated for new design) */
.address-suggestions {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 48px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: none;
}

.address-suggestions.show {
    display: block;
    animation: dropdownSlideIn 0.3s ease;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item {
    padding: 0.875rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    font-size: 0.9rem;
    color: #475569;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-blue);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.suggestion-item:hover {
    background: rgba(37, 99, 235, 0.06);
    padding-left: 1.5rem;
}

.suggestion-item:hover::before {
    transform: scaleY(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-side {
        width: 420px;
    }
    
    .form-side-inner {
        padding: 2rem;
    }
    
    .result-overlay-content {
        min-width: 350px;
        padding: 2rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .split-screen-calculator {
        flex-direction: column;
        height: auto;
    }
    
    .map-side {
        height: 50vh;
        min-height: 400px;
    }
    
    .form-side {
        width: 100%;
        height: auto;
    }
    
    .map-overlay-top {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .map-logo {
        padding: 0.75rem 1rem;
    }
    
    .map-logo span {
        font-size: 0.9rem;
    }
    
    .result-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
    }
    
    .result-overlay-content {
        min-width: auto;
        padding: 1.5rem 2rem;
    }
    
    .result-price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .form-side-inner {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .method-selector {
        gap: 0.75rem;
    }
    
    .method-btn {
        padding: 1rem 0.75rem;
    }
    
    .method-btn i {
        font-size: 1.5rem;
    }
    
    .method-btn span {
        font-size: 0.85rem;
    }
    
    .location-group {
        gap: 1rem;
    }
    
    .location-icon {
        width: 40px;
        height: 40px;
    }
    
    .result-price {
        font-size: 2.5rem;
    }
    
    .features-mini {
        padding: 1rem 0.5rem;
        gap: 0.5rem;
    }
    
    .feature-mini i {
        font-size: 1.25rem;
    }
    
    .feature-mini span {
        font-size: 0.75rem;
    }
}

/* Calculator Hero Section */
.calculator-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.calculator-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.calculator-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 58, 107, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.calculator-hero-content {
    position: relative;
    z-index: 1;
}

.calculator-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calculator-hero-badge i {
    font-size: 1.1rem;
    color: #60a5fa;
}

.calculator-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.calculator-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Calculator Main Section */
.calculator-main {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.calculator-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto 60px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(10, 30, 66, 0.15),
        0 8px 24px rgba(10, 30, 66, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    animation: cardFadeIn 0.8s ease;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calculator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-blue) 30%, 
        var(--accent-blue) 70%, 
        transparent 100%);
}

/* Enhanced Tabs */
.calculator-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    padding: 1rem;
    gap: 1rem;
}

.calculator-tabs .tab-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.calculator-tabs .tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calculator-tabs .tab-button:hover::before {
    opacity: 1;
}

.calculator-tabs .tab-button i {
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.calculator-tabs .tab-button span {
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.calculator-tabs .tab-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.calculator-tabs .tab-button:hover i {
    transform: scale(1.1);
}

.calculator-tabs .tab-button.active {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.calculator-tabs .tab-button.active::before {
    opacity: 0;
}

.calculator-tabs .tab-button.active i {
    color: var(--white);
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.calculator-tabs .tab-button.active span {
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Tab Content */
.calculator-container .tab-content {
    display: none;
    padding: 0;
}

.calculator-container .tab-content.active {
    display: block;
}

.tab-inner {
    padding: 3rem;
    position: relative;
}

.tab-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    border-radius: 2px;
    opacity: 0.3;
}

/* Enhanced Form Groups */
.calculator-container .form-group {
    margin-bottom: 2rem;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.calculator-container .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.calculator-container .form-group label i {
    color: var(--accent-blue);
    font-size: 1.1rem;
    padding: 0.375rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
}

.calculator-container .address-input,
.calculator-container .map-search-input {
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.calculator-container .address-input:focus,
.calculator-container .map-search-input:focus {
    background: var(--white);
    border-color: var(--accent-blue);
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.1),
        0 8px 16px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

/* Address Separator */
.address-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.separator-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.25) 100%);
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

/* Enhanced Buttons */
.calculator-container .location-btn {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.calculator-container .location-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.calculator-container .location-btn:hover::before {
    width: 300px;
    height: 300px;
}

.calculator-container .location-btn:hover {
    box-shadow: 
        0 6px 16px rgba(37, 99, 235, 0.3),
        0 3px 8px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.calculator-container .location-btn:active {
    transform: translateY(0);
}

.calculator-container .calculate-btn {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calculator-container .calculate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.calculator-container .calculate-btn:hover::before {
    left: 100%;
}

.calculator-container .calculate-btn:hover {
    box-shadow: 
        0 8px 24px rgba(10, 30, 66, 0.4),
        0 4px 12px rgba(10, 30, 66, 0.3);
    transform: translateY(-3px);
}

.calculator-container .calculate-btn i {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Map Instructions */
.calculator-container .map-instructions {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.12) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-left: 4px solid var(--accent-blue);
    margin-bottom: 2rem;
    position: relative;
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.calculator-container .map-instructions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-blue), transparent);
}

.calculator-container .map-instructions i {
    color: var(--accent-blue);
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.calculator-container .map-instructions p {
    color: var(--navy-blue);
    font-weight: 500;
}

/* Map Styling */
.calculator-container .map-container {
    border: 3px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 2px 4px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.calculator-container .map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.calculator-container .map-container:hover::before {
    opacity: 1;
}

.calculator-container .map-container:hover {
    box-shadow: 
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.calculator-container .map-location-btn {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.calculator-container .map-location-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.calculator-container .map-location-btn:active::after {
    width: 80px;
    height: 80px;
    opacity: 0;
}

.calculator-container .map-location-btn:hover {
    box-shadow: 
        0 4px 12px rgba(37, 99, 235, 0.3),
        0 2px 6px rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.calculator-container .map-btn {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    color: var(--navy-blue);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.calculator-container .map-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.4s;
}

.calculator-container .map-btn:hover::before {
    left: 100%;
}

.calculator-container .map-btn:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* Enhanced Result Container */
.calculator-container .result-container {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.12) 100%);
    border-radius: 20px;
    border: 3px solid rgba(37, 99, 235, 0.2);
    position: relative;
    animation: resultSlideUp 0.6s ease;
    overflow: hidden;
}

@keyframes resultSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calculator-container .result-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.calculator-container .result-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.calculator-container .result-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.calculator-container .result-icon i {
    font-size: 4rem;
    color: var(--accent-blue);
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
    animation: iconPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes iconPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.calculator-container .result-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.calculator-container .result-details {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.calculator-container .result-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: resultItemSlide 0.5s ease backwards;
}

.calculator-container .result-item:nth-child(1) {
    animation-delay: 0.1s;
}

.calculator-container .result-item:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes resultItemSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.calculator-container .result-item:hover {
    transform: translateX(5px);
    box-shadow: 
        0 6px 16px rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.calculator-container .result-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    position: relative;
}

.calculator-container .result-item-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 12px;
}

.calculator-container .result-item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculator-container .result-label {
    font-weight: 600;
    color: #475569;
    font-size: 1.05rem;
}

.calculator-container .result-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-blue);
}

.calculator-container .result-value.price {
    color: var(--accent-blue);
    font-size: 2rem;
}

.calculator-container .result-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--navy-blue);
    margin-top: 1.5rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.8;
}

/* Calculator Features */
.calculator-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.calculator-feature:nth-child(1) {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-color: rgba(37, 99, 235, 0.15);
}

.calculator-feature:nth-child(2) {
    background: linear-gradient(135deg, rgba(10, 30, 66, 0.03) 0%, rgba(10, 30, 66, 0.08) 100%);
    border-color: rgba(10, 30, 66, 0.1);
}

.calculator-feature:nth-child(3) {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-color: rgba(37, 99, 235, 0.2);
}

.calculator-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.calculator-feature:nth-child(2) .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
}

.calculator-feature:nth-child(3) .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--navy-blue) 100%);
}

.calculator-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.calculator-feature p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Active Nav Link */
.nav-link.active {
    color: #93c5fd;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive for Calculator Page */
@media (max-width: 768px) {
    .calculator-hero {
        padding: 70px 0 50px;
    }
    
    .calculator-hero-title {
        font-size: 2.25rem;
    }
    
    .calculator-hero-subtitle {
        font-size: 1.05rem;
        padding: 0 10px;
    }
    
    .calculator-main {
        padding: 50px 0;
    }
    
    .tab-inner {
        padding: 2rem 1.5rem;
    }
    
    .calculator-tabs {
        grid-template-columns: 1fr;
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .calculator-tabs .tab-button {
        padding: 1.25rem 1.5rem;
        flex-direction: row;
        gap: 1rem;
    }
    
    .calculator-tabs .tab-button i {
        font-size: 1.5rem;
    }
    
    .calculator-tabs .tab-button span {
        font-size: 0.95rem;
    }
    
    .calculator-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .calculator-container .result-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .calculator-container .result-item-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .calculator-hero {
        padding: 50px 0 40px;
    }
    
    .calculator-hero-title {
        font-size: 1.875rem;
    }
    
    .calculator-hero-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
    
    .tab-inner {
        padding: 1.5rem;
    }
    
    .calculator-tabs {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .calculator-tabs .tab-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .calculator-tabs .tab-button i {
        font-size: 1.35rem;
    }
    
    .calculator-tabs .tab-button span {
        font-size: 0.875rem;
    }
    
    .calculator-container .result-container {
        padding: 2rem 1.5rem;
    }
    
    .calculator-container .result-value.price {
        font-size: 1.75rem;
    }
}

/* ===== DASHBOARD STYLE LAYOUT ===== */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: #0f172a;
    color: #e2e8f0;
}

/* Sidebar */
.dashboard-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.sidebar-logo:hover {
    opacity: 0.8;
}

.sidebar-logo i {
    font-size: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.sidebar-logo-img {
    height: 48px;
    width: auto;
}

.sidebar-nav {
    flex: 1;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s;
}

.sidebar-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.sidebar-link.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.sidebar-link i {
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.design-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.design-badge i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.badge-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
}

.other-designs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.design-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: all 0.2s;
}

.design-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.design-link i {
    font-size: 0.875rem;
}

/* Main Content */
.dashboard-main {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Home Content Specific */
.dashboard-main.home-content {
    overflow-y: auto;
    height: auto;
}

.dashboard-main.home-content .hero,
.dashboard-main.home-content .about,
.dashboard-main.home-content .features,
.dashboard-main.home-content .values,
.dashboard-main.home-content .footer {
    margin-left: 0;
}

.dashboard-main.home-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sidebar Social Links */
.sidebar-social {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-social-link {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.2s;
}

.sidebar-social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    transform: translateY(-2px);
}

/* Mobile Sidebar Toggle for Home */
.mobile-sidebar-toggle-home {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    z-index: 1000;
    transition: all 0.2s;
}

.mobile-sidebar-toggle-home:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
}

.dashboard-header {
    padding: 1.5rem 2rem;
    background: #1e293b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
}

.header-left {
    flex: 1;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.page-subtitle {
    font-size: 0.9375rem;
    color: #94a3b8;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-sidebar-toggle {
    display: none;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.125rem;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
    z-index: 1002;
}

.mobile-sidebar-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
}

/* Map Container */
.dashboard-map-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.dashboard-map {
    width: 100%;
    height: 100%;
    background: #1e293b;
}

/* Leaflet Zoom Controls - Move to Right */
.leaflet-top.leaflet-left {
    left: auto !important;
    right: 10px !important;
}

.leaflet-control-zoom {
    border: 2px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    background-color: rgba(30, 41, 59, 0.95) !important;
    color: #3b82f6 !important;
    border: none !important;
    transition: all 0.2s !important;
}

.leaflet-control-zoom a:hover {
    background-color: #3b82f6 !important;
    color: white !important;
}

/* Floating Calculation Card */
.floating-calc-card {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 380px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 800;
    transition: all 0.3s ease;
}

.floating-calc-card.minimized .calc-card-body {
    display: none;
}

.calc-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calc-card-header i {
    color: #3b82f6;
}

.toggle-card-btn {
    width: 32px;
    height: 32px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.toggle-card-btn:hover {
    background: rgba(59, 130, 246, 0.2);
}

.calc-card-body {
    padding: 1.5rem;
}

.location-section {
    margin-bottom: 1.5rem;
    position: relative;
}

.location-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.location-input-group {
    display: flex;
    gap: 0.5rem;
}

.location-input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #000000;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.location-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.location-input::placeholder {
    color: #9ca3af;
}

.location-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.location-btn:active {
    transform: translateY(0);
}

.location-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.location-btn.loading i {
    animation: spin 1s linear infinite;
}

.location-suggestions {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.location-suggestions.show {
    display: block;
}

.suggestion-item {
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #cbd5e1;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.calc-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.calc-btn {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.calc-btn.calculate {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.calc-btn.calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.calc-btn.reset {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.calc-btn.reset:hover {
    background: rgba(239, 68, 68, 0.2);
}

.calc-help {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: #94a3b8;
}

.calc-help i {
    color: #3b82f6;
}

/* Floating Result Card */
.floating-result-card {
    position: absolute;
    top: 40px;
    right: 1rem;
    width: 380px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(59, 130, 246, 0.1);
    z-index: 800;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.result-card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-card-header i {
    color: #3b82f6;
}

.close-result-btn {
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-result-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}

.result-card-body {
    padding: 1.5rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.result-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.result-content {
    flex: 1;
}

.result-label {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.result-value.price {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
    margin: 1.25rem 0;
}

/* WhatsApp Button in Result Card */
.result-whatsapp {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.whatsapp-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:active {
    transform: translateY(0);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* WhatsApp Floating Card */
.whatsapp-float-card {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 280px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(37, 211, 102, 0.2);
    z-index: 1000;
    animation: slideUp 0.4s ease;
}

.whatsapp-card-content {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.whatsapp-card-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.whatsapp-icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-icon-btn:active {
    transform: scale(0.95);
}

.whatsapp-icon-btn i {
    font-size: 2rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
        z-index: 999;
    }
    
    .dashboard-sidebar.mobile-active {
        transform: translateX(0);
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 10000 !important;
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .mobile-sidebar-toggle,
    .mobile-sidebar-toggle-home {
        display: flex;
        z-index: 1001;
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
    }
    
    .dashboard-header {
        padding: 0.875rem 1rem;
        padding-right: 4.5rem;
    }
    
    .page-title {
        font-size: 1.25rem;
    }
    
    .page-subtitle {
        font-size: 0.8125rem;
        display: none;
    }
    
    .header-right {
        position: absolute;
        top: 0.875rem;
        right: 1rem;
    }
    
    .floating-calc-card {
        left: 1rem;
        right: 1rem;
        width: auto;
        top: 70px;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }
    
    .floating-result-card {
        left: 1rem;
        right: 1rem;
        width: auto;
        bottom: 1rem;
        top: auto;
        max-width: none;
        max-height: 50vh;
        overflow-y: auto;
    }
    
    .result-card-body {
        padding: 1rem;
    }
    
    .result-item {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .result-icon {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    
    .result-label {
        font-size: 0.75rem;
    }
    
    .result-value {
        font-size: 1.125rem;
    }
    
    /* Result card için mobil optimizasyon */
    .result-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .result-item {
        width: 100%;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Dashboard Tablet Responsive (1024px) */
@media (max-width: 1024px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
        z-index: 999;
    }
    
    .dashboard-sidebar.mobile-active {
        transform: translateX(0);
        z-index: 10000 !important;
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .mobile-sidebar-toggle {
        display: flex;
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        z-index: 1001 !important;
    }
    
    .dashboard-header {
        padding: 1rem 1.5rem;
        padding-right: 4.5rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 0.875rem;
    }
    
    .header-right {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

/* ===== MINIMAL FULLSCREEN LAYOUT ===== */
.minimal-layout {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
}

.minimal-map {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Top Navbar */
.minimal-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1e42;
    text-decoration: none;
    transition: opacity 0.2s;
}

.navbar-brand a:hover {
    opacity: 0.7;
}

.navbar-brand i {
    color: #3b82f6;
    font-size: 1.75rem;
}

.menu-toggle-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.2s;
}

.menu-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* Floating Menu */
.minimal-menu {
    position: fixed;
    top: 0;
    right: -380px;
    width: 380px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.minimal-menu.active {
    right: 0;
}

.menu-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1e42;
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: 10px;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-menu-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}

.menu-links {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    color: #0a1e42;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.menu-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.menu-link.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.menu-link i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.design-selector {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
}

.design-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.design-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    color: #0a1e42;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

.design-option:last-child {
    margin-bottom: 0;
}

.design-option:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.design-option.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    font-weight: 600;
}

.design-option i {
    font-size: 1rem;
}

/* Floating Calculation Card */
.minimal-calc-card {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    max-width: calc(100vw - 4rem);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 800;
    transition: all 0.3s ease;
}

.minimal-calc-card.collapsed .minimal-card-body {
    display: none;
}

.minimal-calc-card.collapsed .minimal-result {
    display: none !important;
}

.minimal-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a1e42;
}

.card-title i {
    color: #3b82f6;
    font-size: 1.375rem;
}

.card-toggle-btn {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.card-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #0a1e42;
}

.minimal-card-body {
    padding: 1.75rem;
}

.minimal-input-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-wrapper {
    position: relative;
}

.input-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0a1e42;
    margin-bottom: 0.625rem;
}

.input-with-btn {
    display: flex;
    gap: 0.5rem;
}

.minimal-input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 0.9375rem;
    color: #0a1e42;
    transition: all 0.2s;
}

.minimal-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.minimal-input::placeholder {
    color: #94a3b8;
}

.input-icon-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.2s;
}

.input-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.input-icon-btn:active {
    transform: translateY(0);
}

.input-icon-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.input-icon-btn.loading i {
    animation: spin 1s linear infinite;
}

.route-line-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 24px;
    margin: -0.25rem 0;
}

.route-line-indicator .line {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6 0%, #10b981 100%);
    opacity: 0.3;
}

.route-line-indicator i {
    color: #64748b;
    font-size: 0.875rem;
    background: white;
    padding: 0.25rem;
    z-index: 1;
}

.minimal-suggestions {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.minimal-suggestions.show {
    display: block;
}

.minimal-suggestions .suggestion-item {
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #0a1e42;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.minimal-suggestions .suggestion-item:last-child {
    border-bottom: none;
}

.minimal-suggestions .suggestion-item:hover {
    background: rgba(59, 130, 246, 0.05);
    color: #3b82f6;
}

.minimal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.minimal-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.2s;
}

.minimal-btn.primary {
    flex: 1;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.minimal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.minimal-btn.secondary {
    width: 52px;
    height: 52px;
    padding: 0;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.minimal-btn.secondary:hover {
    background: rgba(239, 68, 68, 0.2);
}

.minimal-info {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    font-size: 0.875rem;
    color: #64748b;
}

.minimal-info i {
    color: #3b82f6;
    font-size: 1rem;
}

/* Result Section */
.minimal-result {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.result-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

.result-box i {
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.125rem;
}

.result-data {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.result-label {
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.result-number {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0a1e42;
}

.result-number.price {
    color: #10b981;
}

/* Responsive */
@media (max-width: 768px) {
    .minimal-navbar {
        padding: 0 1rem;
    }
    
    .navbar-brand a {
        font-size: 1.25rem;
    }
    
    .navbar-brand i {
        font-size: 1.5rem;
    }
    
    .minimal-menu {
        width: 100%;
        right: -100%;
    }
    
    .minimal-calc-card {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        width: auto;
        max-width: none;
        transform: none;
    }
    
    .result-row {
        grid-template-columns: 1fr;
    }
}

/* ===== PRICING MODAL ===== */
.pricing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.pricing-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pricing-modal-content {
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideInModal 0.4s ease;
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pricing-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-modal-header i {
    color: #3b82f6;
    font-size: 1.875rem;
}

.close-modal-btn {
    width: 44px;
    height: 44px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.close-modal-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: rotate(90deg);
}

.pricing-modal-body {
    padding: 2rem;
}

.pricing-table {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:not(.pricing-header):hover {
    background: rgba(59, 130, 246, 0.05);
}

.pricing-header {
    background: rgba(59, 130, 246, 0.1);
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.pricing-cell {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #e2e8f0;
    font-size: 1rem;
}

.pricing-header .pricing-cell {
    font-weight: 700;
    color: #fff;
    font-size: 1.0625rem;
}

.pricing-cell.price {
    font-weight: 700;
    color: #10b981;
    font-size: 1.125rem;
    justify-content: flex-end;
}

.pricing-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    gap: 0.875rem;
}

.pricing-note i {
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-note p {
    color: #cbd5e1;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Info Button */
.pricing-info-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.75rem;
}

.pricing-info-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.pricing-info-btn i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.info-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
}

.info-subtitle {
    font-size: 0.8125rem;
    color: #94a3b8;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .pricing-modal {
        padding: 1rem;
    }
    
    .pricing-modal-content {
        max-height: 85vh;
    }
    
    .pricing-modal-header {
        padding: 1.5rem;
    }
    
    .pricing-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .pricing-modal-body {
        padding: 1.5rem;
    }
    
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .pricing-cell.price {
        justify-content: flex-start;
    }
}

/* ========================================
   NEW HOMEPAGE STYLES - MODERN & ANIMATED
   ======================================== */

/* Hero Section - New */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, #3b82f6 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #2563eb 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent);
    background-size: 200px 200px;
    animation: particlesMove 20s linear infinite;
}

@keyframes particlesMove {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.hero-visual {
    position: relative;
}

.hero-svg {
    width: 100%;
    height: auto;
    max-width: 700px;
    filter: drop-shadow(0 20px 60px rgba(59, 130, 246, 0.2));
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title-new {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card-new {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-new:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-new:hover::before {
    opacity: 1;
}

.feature-icon-new {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon-new svg {
    width: 100%;
    height: 100%;
}

.feature-card-new h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card-new p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: #0f172a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-new {
    max-width: 600px;
}

.about-paragraph {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.about-paragraph strong {
    color: #3b82f6;
    font-weight: 600;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #3b82f6;
    font-weight: 600;
}

.highlight-item i {
    font-size: 1.25rem;
}

.about-visual {
    max-width: 500px;
    margin: 0 auto;
}

.about-visual svg {
    width: 100%;
    height: auto;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

.value-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
}

.value-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.value-icon {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: #0f172a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
    font-size: 0.9375rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: #3b82f6;
}

.contact-social h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link-large {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    transform: translateY(-3px);
}

.contact-visual {
    max-width: 500px;
    margin: 0 auto;
}

.contact-visual svg {
    width: 100%;
    height: auto;
}

/* Footer New */
.footer-new {
    padding: 3rem 2rem 2rem;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-new .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .footer-logo i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.footer-brand .footer-logo img {
    height: 32px;
    width: auto;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #64748b;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual,
    .about-visual,
    .contact-visual {
        order: -1;
        max-width: 400px;
    }
    
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero Section - Mobile */
    .hero-new {
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .hero-particles {
        display: none; /* Mobilde animasyonları azalt */
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    /* SVG'leri mobilde küçült ve basitleştir */
    .hero-visual {
        max-width: 280px;
        margin: 0 auto 2rem;
    }
    
    .hero-svg {
        max-width: 100%;
        height: auto;
    }
    
    /* Section paddings - mobilde daha kompakt */
    .features-section,
    .about-section,
    .values-section,
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-title-new {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }
    
    /* Features Grid - Mobile */
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-new {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-new {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-card-new h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card-new p {
        font-size: 0.875rem;
    }
    
    /* About Section - Mobile */
    .about-grid {
        gap: 2rem;
    }
    
    .about-visual {
        max-width: 250px;
    }
    
    .about-visual svg {
        width: 100%;
        height: auto;
    }
    
    .about-paragraph {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .highlight-item {
        font-size: 0.9375rem;
    }
    
    /* Values Grid - Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }
    
    .value-icon-wrapper {
        width: 52px;
        height: 52px;
        margin-bottom: 1rem;
    }
    
    .value-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .value-card p {
        font-size: 0.875rem;
    }
    
    /* CTA Section - Mobile */
    .cta-content {
        padding: 0;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Buttons - Mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .btn-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    /* Footer - Mobile */
    .footer-new {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .footer-links a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
        gap: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8125rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Sidebar - Mobile Responsive */
@media (max-width: 1024px) {
    .dashboard-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        height: 100vh;
        width: 260px;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    }
    
    .dashboard-sidebar.active {
        left: 0;
    }
    
    .dashboard-main,
    .home-content {
        margin-left: 0;
    }
    
    .mobile-sidebar-toggle-home {
        display: flex;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 1001;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
        border: none;
        width: 48px;
        height: 48px;
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        transition: all 0.3s ease;
    }
    
    .mobile-sidebar-toggle-home:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
    }
    
    .mobile-sidebar-toggle-home:active {
        transform: scale(0.95);
    }
    
    /* Overlay arkaplandan tıklayınca sidebar kapansın */
    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .sidebar-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* Extra small devices (phones in portrait mode) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title-new {
        font-size: 1.375rem;
    }
    
    .hero-stats {
        width: 100%;
    }
    
    .stat-item {
        width: 100%;
        text-align: left;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* SVG animasyonlarını çok küçük ekranlarda tamamen kaldır */
    .hero-visual,
    .about-visual {
        display: none;
    }
    
    .features-section,
    .about-section,
    .values-section,
    .cta-section {
        padding: 2.5rem 1rem;
    }
}
