/**
 * Ankara Tekel - Main Styles
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(120deg, #151515 0%, #232323 100%);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0f7c8f 0%, #16a3b8 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.32);
}

.logo h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.logo-sub {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: #bdbdbd;
    letter-spacing: 0.2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0f7c8f;
}

.nav-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-call-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.nav-call-chip:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    padding: 7px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.25s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f7c8f 0%, #16a3b8 100%);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(255, 107, 53, 0.35);
    transition: all 0.3s ease;
}

.btn-call span,
.btn-whatsapp-sticky span {
    display: none;
}

.btn-call:hover {
    transform: scale(1.08);
}

.btn-whatsapp-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #21c45c 0%, #2add72 100%);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.btn-whatsapp-sticky:hover {
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 63px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #191919 0%, #262626 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
    padding: 14px 16px 16px;
    z-index: 99;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 11px 12px;
    border-radius: 10px;
    transition: all 0.25s;
    font-weight: 600;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu a.active {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.35);
}

.mobile-menu.active {
    display: flex;
}

.mobile-cta-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.mobile-cta-call,
.mobile-cta-wa {
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
}

.mobile-cta-call {
    background: linear-gradient(135deg, #0f7c8f 0%, #ff8f66 100%);
}

.mobile-cta-wa {
    background: linear-gradient(135deg, #21c45c 0%, #2add72 100%);
}

/* Homepage Mobile-First Hero */
.hero-mobile-first {
    position: relative;
    min-height: calc(100svh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.22), transparent 40%),
                linear-gradient(145deg, #101010 0%, #222 50%, #1a1a1a 100%);
    color: #fff;
    padding: 26px 0;
    overflow: hidden;
}

.hero-mobile-first::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-mobile-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-mobile-content h1 {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.hero-mobile-content > p {
    color: #e6e6e6;
    font-size: 15px;
    margin-bottom: 20px;
}

.hero-conversion-points {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 22px;
    overflow-x: auto;
    scrollbar-width: none;
}

.hero-conversion-points::-webkit-scrollbar {
    display: none;
}

.hero-conversion-points span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 10.5px;
    color: #f3f3f3;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    min-height: 28px;
    padding: 4px 8px;
    animation: pointGlow 2.4s ease-in-out infinite;
    white-space: nowrap;
    flex: 0 0 auto;
}

.hero-conversion-points span:nth-child(2) {
    animation-delay: 0.25s;
}

.hero-conversion-points span:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-conversion-points i {
    color: #25d366;
}

@keyframes pointGlow {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(255, 107, 53, 0);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.22);
    }
}

@keyframes ctaShine {
    0% {
        left: -65%;
    }
    100% {
        left: 130%;
    }
}

.hero-mobile-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.hero-action-btn {
    width: 100%;
    min-height: 64px;
    justify-content: center;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.hero-mobile-actions .btn-primary.hero-action-btn {
    background: linear-gradient(135deg, #0f7c8f 0%, #16a3b8 100%);
}

.hero-mobile-actions .btn-secondary.hero-action-btn {
    background: linear-gradient(135deg, #21c45c 0%, #2add72 100%);
}

.hero-action-btn:hover {
    transform: translateY(-2px) scale(1.01);
}

.hero-action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -65%;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: ctaShine 2.8s linear infinite;
}

.hero-mini-note {
    margin-top: 14px;
    font-size: 13px;
    color: #cfcfcf;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ddd;
    animation: fadeInUp 0.6s ease;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.btn-primary {
    background-color: #0f7c8f;
    color: white;
}

.btn-primary:hover {
    background-color: #0c6676;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background-color: #25d366;
    color: white;
}

.btn-secondary:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

@media (min-width: 768px) {
    .hero-mobile-first {
        min-height: 82vh;
        padding: 40px 0;
    }

    .hero-mobile-content h1 {
        font-size: 54px;
    }

    .hero-mobile-content > p {
        font-size: 18px;
    }

    .hero-conversion-points {
        gap: 10px;
        justify-content: center;
    }

    .hero-conversion-points span {
        font-size: 12px;
        min-height: 32px;
        padding: 5px 12px;
    }

    .hero-mobile-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Features Section */
.features {
    padding: 60px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.features-intro {
    max-width: 760px;
    margin: -18px auto 26px;
    text-align: center;
    color: #5e5e5e;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: left;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
    animation: featureRise 0.55s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.06s; }
.feature-card:nth-child(3) { animation-delay: 0.12s; }
.feature-card:nth-child(4) { animation-delay: 0.18s; }
.feature-card:nth-child(5) { animation-delay: 0.24s; }
.feature-card:nth-child(6) { animation-delay: 0.30s; }

.feature-card:hover {
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    border-color: #ffd5c6;
}

.feature-card i {
    font-size: 30px;
    color: #0f7c8f;
    margin-bottom: 12px;
}

.feature-card h3 {
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 20px;
}

.feature-card p {
    color: #5f5f5f;
    line-height: 1.7;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 28px 0 18px;
}

.trust-strip span {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    color: #3a3a3a;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.trust-strip i {
    color: #25d366;
}

.features-cta-box {
    max-width: 760px;
    margin: 10px auto 0;
    background: linear-gradient(135deg, #1d1d1d 0%, #2b2b2b 100%);
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.features-cta-box p {
    margin-bottom: 14px;
    font-size: 17px;
    color: #f0f0f0;
}

.features-cta-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.features-cta-actions .btn {
    min-width: 220px;
    justify-content: center;
}

@keyframes featureRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f7c8f;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group button {
    width: 100%;
    padding: 12px;
    background-color: #0f7c8f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-group button:hover {
    background-color: #0c6676;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

/* Service Areas Section */
.service-areas-section {
    background-color: #fff;
    padding: 60px 20px;
    margin: 30px 0;
}

.service-areas-intro {
    text-align: center;
    color: #5e5e5e;
    margin: -10px auto 22px;
    max-width: 680px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.service-area-card {
    border: 1px solid #ececec;
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.service-area-card i {
    color: #0f7c8f;
    font-size: 20px;
    margin-bottom: 8px;
}

.service-area-card h3 {
    margin: 0;
    font-size: 17px;
    color: #1a1a1a;
}

.service-areas-empty {
    border: 1px dashed #d8d8d8;
    border-radius: 12px;
    background: #fafafa;
    padding: 24px;
    text-align: center;
    color: #646464;
}

.service-areas-empty i {
    color: #0f7c8f;
    font-size: 22px;
    margin-bottom: 8px;
}

/* Order CTA Section */
.order-cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #161616 0%, #252525 100%);
}

.order-cta-box {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.16) 0%, rgba(37, 211, 102, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 30px 22px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.order-cta-badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.order-cta-box h2 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.order-cta-box p {
    color: #ededed;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 20px;
}

.order-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.order-cta-btn {
    min-height: 60px;
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
}

.order-cta-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.order-cta-points span {
    font-size: 13px;
    color: #f4f4f4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.order-cta-points i {
    color: #25d366;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #0f7c8f;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #0f7c8f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Legal Pages */
.legal-content {
    max-width: 980px;
}

.legal-update {
    margin-top: 18px;
    color: #666;
    font-size: 14px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 150;
    background: rgba(22, 22, 22, 0.95);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-consent-inner {
    padding: 14px;
}

.cookie-consent p {
    margin: 0 0 10px;
    color: #f1f1f1;
    font-size: 13px;
    line-height: 1.45;
}

.cookie-consent a {
    color: #8cdbe6;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

#cookieConsentAcceptBtn,
#cookieConsentRejectBtn {
    min-height: 42px;
    border-radius: 9px;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

#cookieConsentAcceptBtn {
    background: linear-gradient(135deg, #0f7c8f 0%, #16a3b8 100%);
}

#cookieConsentRejectBtn {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

@media (min-width: 768px) {
    .cookie-consent {
        left: auto;
        right: 18px;
        width: 420px;
        bottom: 18px;
    }
}

@media (min-width: 768px) {
    .order-cta-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.section-title .highlight {
    color: #0f7c8f;
}




