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

body {
    font-family: 'Montserrat', sans-serif;
    color: #444;
    overflow-x: hidden;
}
:root {
    --primary-color: #123e75; /* Dark blue from the design */
    --secondary-color: #3187c3; /* Light cyan/blue for logo subtitle & gradients */
    --whatsapp-color: #1ea34d;
    --bg-light: #f8fafc;
}
a { text-decoration: none; }
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.fw-black { font-weight: 900 !important; }

/* Premium Layout & Glassmorphism */
.glass-nav {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.section-padding {
    padding: 100px 0;
}

/* Global Animations / Effects */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
    .hover-scale:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 35px rgba(18, 62, 117, 0.12) !important;
        border-color: rgba(18, 62, 117, 0.2) !important;
    }
}

.shadow-fancy {
    box-shadow: 0 10px 25px rgba(18, 62, 117, 0.08) !important;
    border: 1px solid rgba(18, 62, 117, 0.05) !important;
    border-radius: 12px !important;
}

/* Card Enhancements for 30yr Pro Look */
.card {
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
}
@media (hover: hover) and (pointer: fine) {
    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
        border-color: rgba(18, 62, 117, 0.15);
    }
    .card:hover .fa-solid {
        transform: scale(1.08);
        transition: transform 0.25s ease;
    }
}
.hover-rotate {
    transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
    .hover-rotate:hover {
        transform: rotate(12deg) scale(1.08);
    }
}
.nav-hover {
    position: relative;
}
.nav-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 10%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-hover:hover::after {
    width: 80%;
}
.feature-hover {
    transition: transform 0.3s ease;
}
.feature-hover:hover {
    transform: scale(1.05);
}

.btn-primary { 
    background: linear-gradient(135deg, var(--primary-color), #0b2547);
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(18, 62, 117, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 62, 117, 0.3);
    background: linear-gradient(135deg, #0b2547, var(--primary-color));
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
    transition: all 0.4s ease;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 62, 117, 0.3);
}
.btn-success {
    background: linear-gradient(135deg, var(--whatsapp-color), #167a3a);
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(30, 163, 77, 0.2);
}
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 163, 77, 0.3);
    background: linear-gradient(135deg, #167a3a, var(--whatsapp-color));
}

/* Header Navigation */
.nav-link {
    color: #444;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 12px !important;
    position: relative;
    transition: color 0.25s ease;
}
.nav-link.active {
    color: var(--primary-color) !important;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: var(--primary-color);
}
.nav-link:hover { color: var(--primary-color) !important; }

/* Hero */
.hero-section {
    background: url('../img/hero-bg.jpg') no-repeat center right;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(248,250,252,1) 0%, rgba(248,250,252,0.9) 45%, rgba(255,255,255,0) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-title-top {
    font-weight: 700;
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.hero-title-main {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}
.hero-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid #e9ecef !important;
    }
}
.features-bar {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e1e5e8;
}
.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #222;
}
.feature-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}
@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #e0e0e0 !important;
    }
}

/* Services */
.section-title {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.7rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}
.service-card {
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 35px 20px;
    text-align: center;
    background: white;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.service-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-8px);
    border-color: #ddd;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover .service-icon {
    transform: scale(1.15);
}
.service-icon {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}
.service-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.4;
}
.service-desc {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.6;
}
.cta-box {
    background-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* How it works */
.how-it-works {
    background-color: var(--primary-color);
    color: white;
    padding: 70px 0;
}
.how-it-works-title {
    font-weight: 800;
    margin-bottom: 50px;
}
.step-item-hover {
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.step-item-hover:hover {
    background-color: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}
.step-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: background-color 0.3s, color 0.3s;
}
.step-item-hover:hover .step-icon {
    background-color: white;
    color: var(--primary-color);
}
.step-number {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 5px;
    color: #fff;
}
.step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.step-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

/* Pro Management */
.pro-management {
    padding: 80px 0;
}
.pro-title {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* FAQ */
.faq-section {
    background-color: var(--bg-light);
    padding: 70px 0;
}
.faq-item {
    background: white;
    border: 1px solid #e1e5e8;
    padding: 18px 25px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #333;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    cursor: pointer;
}
.faq-item:hover {
    border-color: var(--primary-color);
}
.faq-item i {
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 70px 0 0 0;
    background: #fff;
}
.footer-title {
    font-weight: 900;
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 25px;
}
.footer-links li {
    margin-bottom: 12px;
    font-size: 0.85rem;
}
.footer-links a {
    color: #666;
    transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.footer-bottom {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 18px 0;
    font-size: 0.85rem;
    margin-top: 50px;
}

/* Step Card Effects */
.step-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 30px 20px;
    border-radius: 20px;
    cursor: default;
    border: 1px solid transparent;
}
.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.step-card .step-icon-wrap {
    transition: all 0.5s ease;
    box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
}
.step-card:hover .step-icon-wrap {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 0 20px rgba(13, 202, 240, 0);
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}
.step-card:hover .step-icon-wrap i {
    color: var(--bs-info) !important;
}
.step-card:hover h6 {
    color: #0dcaf0 !important;
}
.step-card:hover .step-text {
    color: rgba(255,255,255,0.9) !important;
}

.hover-text-white:hover {
    color: #ffffff !important;
}

/* Accessible Touch Targets for Mobile (Lighthouse 100) */
.swiper-pagination-bullet {
    width: 16px !important;
    height: 16px !important;
    margin: 0 8px !important;
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: -14px;
    bottom: -14px;
    left: -14px;
    right: -14px;
}
.swiper-button-next, .swiper-button-prev {
    width: 48px !important;
    height: 48px !important;
}

/* ====================================================
   MOBILE & RESPONSIVE PERFECTION (YAZICI ULTRA POLISH)
   ==================================================== */
.feature-card-box {
    transition: all 0.25s ease;
}
@media (min-width: 992px) {
    .feature-card-box:not(:last-child) {
        border-right: 1px solid #e2e8f0;
    }
}
@media (max-width: 991.98px) {
    .feature-card-box {
        background-color: #f8fafc;
        border: 1px solid #e2e8f0;
    }
    .hero-section {
        padding: 45px 0 !important;
        min-height: auto !important;
    }
}
@media (max-width: 767.98px) {
    .hero-section {
        padding: 35px 0 25px 0 !important;
        min-height: auto !important;
        background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 100%), url('../img/hero-bg.jpg') center / cover no-repeat !important;
    }
    .hero-main-title {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 14px !important;
    }
    .hero-sub-title {
        font-size: 0.85rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 8px !important;
    }
    .hero-desc-p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    .hero-btn-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .hero-btn-group .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 18px !important;
    }
    .hero-contact-links {
        max-width: 100% !important;
    }
    .feature-highlight-section {
        margin-top: 15px !important;
        margin-bottom: 25px !important;
    }
    .feature-bar-wrapper {
        padding: 12px 10px !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    }
    .feature-icon-box {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    .feature-title {
        font-size: 0.78rem !important;
        letter-spacing: -0.2px;
    }
    .feature-sub {
        font-size: 0.68rem !important;
    }
    .step-card {
        padding: 22px 18px !important;
        border-radius: 18px !important;
    }
    .step-number-large {
        font-size: 2.2rem !important;
    }
    .mock-metric-box {
        padding: 16px 12px !important;
        border-radius: 16px !important;
    }
    .metric-icon-circle {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    /* Footer Mobile Refinements */
    footer.footer-master {
        padding-top: 20px !important;
    }
    .footer-col-title {
        font-size: 0.92rem !important;
        padding-bottom: 6px !important;
        margin-bottom: 8px !important;
    }
    .footer-intro-p {
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }
    .footer-nav-links a {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
        padding: 2.5px 0 !important;
    }
    .footer-legal-links {
        gap: 4px 8px !important;
    }
    .footer-legal-links a {
        font-size: 0.74rem !important;
        padding: 2px 4px !important;
    }
}
@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.85rem !important;
    }
    .footer-thumb-box {
        border-radius: 4px !important;
    }
    .social-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.88rem !important;
    }
}

