/* ===========================
   RESET & GLOBAL STYLES
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* ===========================
   TOP BAR - UYARI BANDI
   =========================== */

.top-bar {
    background-color: #f0f0f0;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    border-bottom: 2px solid #1f7a4d;
}

.top-bar p {
    margin: 0;
}

/* ===========================
   HEADER
   =========================== */

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    color: #1f7a4d;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1f7a4d;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1f7a4d;
}

.btn-call {
    background-color: #1f7a4d;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-call:hover {
    background-color: #165a3a;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #1f7a4d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #165a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 122, 77, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1f7a4d;
    border: 2px solid #1f7a4d;
    padding: 10px 24px;
    font-size: 14px;
}

.btn-secondary:hover {
    background-color: #1f7a4d;
    color: #ffffff;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-content h2 {
    font-size: 42px;
    color: #1f7a4d;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(31, 122, 77, 0.15));
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services h2 {
    font-size: 36px;
    color: #1f7a4d;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 122, 77, 0.15);
    border-color: #1f7a4d;
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

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

.service-card h3 {
    font-size: 22px;
    color: #1f7a4d;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

/* ===========================
   PRICING & TRUST SECTION
   =========================== */

.pricing-trust {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-box,
.trust-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-box h3,
.trust-box h3 {
    font-size: 24px;
    color: #1f7a4d;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-box p,
.trust-box p {
    color: #666;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.guarantee-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.guarantee-icon svg {
    width: 100px;
    height: 100px;
}

.trust-box p strong {
    color: #1f7a4d;
    font-weight: 700;
}

/* ===========================
   CONTACT & LOCATION SECTION
   =========================== */

.contact-location {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-location h2 {
    font-size: 36px;
    color: #1f7a4d;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-area {
    text-align: center;
    font-size: 20px;
    color: #1f7a4d;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.info-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #1f7a4d;
}

.info-box h4 {
    font-size: 18px;
    color: #1f7a4d;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-box p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.info-box a {
    color: #1f7a4d;
    text-decoration: none;
    font-weight: 600;
}

.info-box a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: #1f7a4d;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1.8;
    border-left: 4px solid #ffffff;
}

.footer-company {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 13px;
}

.footer-company p {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* ===========================
   MOBILE STICKY CALL BUTTON
   =========================== */

.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #1f7a4d;
    z-index: 999;
    padding: 0;
}

.btn-mobile-call {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #1f7a4d;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-mobile-call:active {
    background-color: #165a3a;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }
}

/* Mobil (< 768px) */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo h1 {
        font-size: 20px;
        flex: 1 1 100%;
    }

    .nav {
        flex: 1 1 100%;
        gap: 15px;
        justify-content: flex-start;
        order: 3;
    }

    .nav-link {
        font-size: 13px;
    }

    .btn-call {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .services {
        padding: 40px 20px;
    }

    .services h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

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

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .pricing-trust {
        padding: 40px 20px;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-box,
    .trust-box {
        padding: 25px 20px;
    }

    .pricing-box h3,
    .trust-box h3 {
        font-size: 20px;
    }

    .guarantee-icon svg {
        width: 80px;
        height: 80px;
    }

    .contact-location {
        padding: 40px 20px;
    }

    .contact-location h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .info-box {
        padding: 20px;
    }

    .info-box h4 {
        font-size: 16px;
    }

    .map-container {
        height: 300px;
    }

    .footer {
        padding: 40px 20px 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-disclaimer {
        font-size: 12px;
        padding: 15px;
    }

    .footer-company {
        font-size: 12px;
        padding: 15px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .mobile-call-bar {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Küçük Mobil (< 480px) */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .nav {
        gap: 10px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .services h2 {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }

    .contact-location h2 {
        font-size: 24px;
    }

    .service-area {
        font-size: 18px;
    }

    .info-box h4 {
        font-size: 15px;
    }

    .info-box p {
        font-size: 14px;
    }

    .top-bar {
        font-size: 12px;
        padding: 10px 0;
    }

    .top-bar p {
        line-height: 1.4;
    }
}
