/* Papatya renk paleti: beyaz, sarı, yeşil */
:root {
    --daisy-yellow: #ffe066;
    --daisy-white: #fffefa;
    --daisy-green: #7bb661;
    --daisy-yellow-dark: #ffd700;
    --main-navy: #22304a;
    --main-bg: #f4f6fa;
    --main-white: #fff;
    --main-gray: #222;
    --main-bluegray: #6c7a89;
    --main-border: #d1d6de;
}

body {
    background: var(--main-bg);
    color: var(--main-gray);
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar ve logo düzeni */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 0;
    background: var(--main-white);
    box-shadow: 0 2px 8px rgba(34,48,74,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    backdrop-filter: blur(4px);
}
.logo {
    background: var(--main-white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(34,48,74,0.04);
    padding: 6px 18px;
    display: flex;
    align-items: center;
}
.logo img {
    height: 110px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(255,224,102,0.10));
    margin-left: 100px;
}
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border-radius: 20px;
    margin: 0 16px;
    padding: 0 16px;
    transition: box-shadow 0.2s, border 0.2s;
    backdrop-filter: blur(6px);
}
.navbar:hover {
    box-shadow: 0 8px 32px 0 rgba(255,224,102,0.18), 0 3px 12px 0 rgba(123,182,97,0.12);
}
.navbar ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}
.nav-link {
    color: var(--main-navy);
    background: transparent;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 12px;
    transition: color 0.2s;
    position: relative;
    text-decoration: none;
}
.nav-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 3px;
    background: #ff8c42;
    border-radius: 2px;
    transition: width 0.25s cubic-bezier(.4,2,.6,1), left 0.25s cubic-bezier(.4,2,.6,1);
}
.nav-link:hover::after, .nav-link:focus::after {
    width: 24px;
    left: calc(50% - 12px);
}
.nav-link.active::after {
    width: 24px;
    left: calc(50% - 12px);
}
.nav-link.active {
    color: #ff8c42;
}
@media (max-width: 700px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
        border-radius: 0 0 16px 16px;
    }
    .logo {
        margin: 8px 0 8px 10px;
        align-self: flex-start;
        background: var(--main-white);
        border-radius: 12px;
        box-shadow: 0 1px 4px rgba(34,48,74,0.06);
        padding: 4px 10px;
    }
    .logo img {
        height: 130px;
        margin-left: 0;
        max-width: 200px;
        width: auto;
        display: block;
    }
    .navbar {
        width: 100%;
        margin: 0;
        border-radius: 20px;
        padding: 8px 8px;
    }
    .navbar ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .navbar ul li a {
        font-size: 1rem;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
}

.hero {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 56px 0 32px 0;
    box-sizing: border-box;
}
.hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(34,48,74,0.28);
    z-index: 1;
    border-radius: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 28px;
    background: rgba(44, 57, 76, 0.466);
    border-radius: 36px;
    box-shadow: 0 8px 36px 0 rgba(34,48,74,0.13);
}
.hero-content h1, .hero-content p, .hero-btn {
    opacity: 0;
    transform: translateY(-40px);
    animation: fadeInDown 1s cubic-bezier(.4,2,.6,1) forwards;
}
.hero-content h1 {
    font-size: 2rem;
    color: var(--main-navy);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #aaa9c0;
    animation-delay: 0.1s;
}
.hero-content h2 {
    color: #fff;
}
.hero-content p {
    font-size: 1.08rem;
    color: #d0d1d2;
    margin-bottom: 32px;
    font-weight: 500;
    animation: heroParagFadeIn 1.1s cubic-bezier(.4,2,.6,1) 0.7s both;
    opacity: 0;
    transform: translateY(-30px);
}
@keyframes heroParagFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-btn {
    display: inline-block;
    background: var(--main-navy);
    color: var(--main-white);
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(34,48,74,0.08);
    transition: background 0.2s, color 0.2s;
    border: none;
    animation-delay: 0.7s;
}
.hero-btn:hover, .hero-btn:focus {
    background: var(--main-bluegray);
    color: var(--main-white);
}
.hero-btn.call-btn {
    background: #34b7f1;
    color: #fff;
    margin-left: 12px;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(52,183,241,0.18);
    border: none;
    transition: background 0.2s, color 0.2s;
}
.hero-btn.call-btn:hover, .hero-btn.call-btn:focus {
    background: #25D366;
    color: #fff;
}
@media (max-width: 700px) {
    .hero {
        min-height: 40vh;
        padding: 24px 0 16px 0;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-btn,
    .hero-btn.call-btn {
        width: 90vw;
        max-width: 340px;
        display: block;
        border-radius: 16px;
        font-size: 1.08rem;
        padding: 12px 0;
        box-shadow: 0 2px 8px rgba(52,183,241,0.13);
        text-align: center;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
    }
    .hero-btn {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .hero-btn.call-btn {
        margin-top: 0;
    }
}
@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hizmetler {
    background: var(--main-bg);
    padding: 36px 0 32px 0;
}
.hizmetler-content {
    background: var(--main-white);
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(34,48,74,0.06);
    padding: 28px 12px;
}
.hizmetler-content h2 {
    color: var(--main-navy);
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.hizmetler-list li {
    background: var(--main-bg);
    color: var(--main-bluegray);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(34,48,74,0.04);
    border: 1px solid var(--main-border);
    margin-bottom: 10px;
    transition: box-shadow 0.2s, color 0.2s;
}
.hizmetler-list li:hover {
    box-shadow: 0 4px 16px rgba(34,48,74,0.10);
    color: var(--main-navy);
}

@media (max-width: 700px) {
    .logo img {
        height: 56px;
    }
    .hizmetler-content {
        padding: 8px 2px;
        border-radius: 8px;
    }
    .hizmetler-list li {
        font-size: 0.95rem;
        padding: 8px 6px;
        border-radius: 6px;
    }
}

.hizmetler-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    margin-top: 36px;
}
.hizmetler-cards > .hizmet-kart {
    align-self: stretch;
}
.hizmet-kart {
    background: linear-gradient(135deg, var(--daisy-white) 70%, var(--daisy-yellow) 100%);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(34,48,74,0.10), 0 1.5px 8px rgba(255,224,102,0.10);
    border: 1.5px solid var(--main-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    min-width: 340px;
    max-width: 420px;
    min-height: 480px;
    height: 100%;
}
.hizmet-kart:hover {
    box-shadow: 0 12px 36px rgba(34,48,74,0.18), 0 4px 16px rgba(255,224,102,0.18);
    transform: translateY(-10px) scale(1.04);
    border: 2.5px solid var(--daisy-yellow-dark);
}
.hizmet-kart img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0 2px 12px rgba(255,224,102,0.10);
    margin-bottom: 8px;
    min-height: 220px;
    max-height: 300px;
}
.hizmet-kart h3 {
    font-size: 1.35rem;
    color: var(--main-navy);
    margin: 18px 0 10px 0;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(255,224,102,0.10);
}
.hizmet-kart p {
    color: var(--main-bluegray);
    font-size: 1.08rem;
    text-align: center;
    padding: 0 18px 18px 18px;
    flex: 1;
    justify-content: center;
    font-weight: 500;
}
@media (max-width: 900px) {
    .hizmetler-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .hizmet-kart {
        min-width: 98vw;
        max-width: 100vw;
        min-height: 340px;
        height: auto;
    }
    .hizmet-kart img {
        height: 200px;
        min-height: 180px;
        max-height: 240px;
    }
    .logo img {
        height: 150px;
        max-width: 240px;
        margin-left: 0;
        width: auto;
        display: block;
    }
}

.hakkımızda {
    width: 100%;
    background: var(--main-white);
    padding: 64px 0 56px 0;
    display: flex;
    justify-content: center;
}
.hakkımızda-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 18px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,2,.6,1), transform 0.8s cubic-bezier(.4,2,.6,1);
}
.hakkımızda-content.show {
    opacity: 1;
    transform: translateY(0);
}
.hakkımızda-content h2 {
    font-size: 2.6rem;
    color: var(--main-navy);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.hakkimizda-underline {
    width: 70px;
    height: 4px;
    background: #ff8c42;
    margin: 0 auto 32px auto;
    border-radius: 2px;
}
.hakkımızda-content p {
    font-size: 1.18rem;
    color: var(--main-bluegray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.01em;
}
@media (max-width: 700px) {
    .hakkımızda-content h2 {
        font-size: 1.3rem;
    }
    .hakkimizda-underline {
        width: 40px;
        height: 3px;
        margin-bottom: 18px;
    }
    .hakkımızda-content p {
        font-size: 1rem;
        padding: 0 2px;
    }
    .hakkımızda {
        padding: 32px 0 24px 0;
    }
}

/* Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 120;
    margin-right: 18px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3.5px;
    margin: 4px 0;
    background: var(--main-navy);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .navbar {
        position: absolute;
        top: 80px;
        right: 0;
        left: 0;
        background: var(--main-white);
        box-shadow: 0 8px 32px 0 rgba(34,48,74,0.10);
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        flex-direction: column;
        align-items: flex-start;
        width: 100vw;
        max-width: 100vw;
        padding: 0 0 16px 0;
        z-index: 110;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(.4,2,.6,1), opacity 0.25s;
    }
    .navbar.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .navbar ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: flex-start;
        padding-left: 24px;
        margin-top: 12px;
    }
    .navbar ul li a {
        font-size: 1.1rem;
        width: 100%;
        text-align: left;
        padding: 12px 0;
    }
    .navbar-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
        border-radius: 0 0 16px 16px;
        position: relative;
    }
    .logo {
        margin: 0 0 0 16px;
        align-self: flex-start;
    }
    .logo img {
        height: 48px;
        margin-left: 0;
    }
    .hamburger {
        margin-right: 16px;
    }
}

.fixed-contact-icons {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(34,48,74,0.18), 0 2px 8px rgba(52,183,241,0.10);
    background: #fff;
    transition: transform 0.18s, box-shadow 0.18s;
    text-decoration: none;
    border: 2.5px solid #e6e6e6;
}
.contact-icon svg {
    width: 38px;
    height: 38px;
    display: block;
}
.contact-icon.whatsapp {
    border-color: #25D366;
}
.contact-icon.phone {
    border-color: #34b7f1;
}
.contact-icon:hover, .contact-icon:focus {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 12px 36px rgba(34,48,74,0.22);
    background: #f4f6fa;
}
@media (max-width: 700px) {
    .fixed-contact-icons {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }
    .contact-icon {
        width: 46px;
        height: 46px;
    }
    .contact-icon svg {
        width: 26px;
        height: 26px;
    }
    .hero-btn.call-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        display: block;
    }
}

.iletisim {
    width: 100%;
    background: var(--main-white);
    padding: 64px 0 56px 0;
    display: flex;
    justify-content: center;
}
.iletisim-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 0 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(34,48,74,0.08);
}
.iletisim-content h2 {
    font-size: 2.2rem;
    color: var(--main-navy);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.iletisim-aciklama {
    color: var(--main-bluegray);
    font-size: 1.08rem;
    margin-bottom: 24px;
}
.iletisim-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}
.form-row {
    width: 100%;
}
.iletisim-form input,
.iletisim-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--main-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: #f4f6fa;
    color: var(--main-gray);
    transition: border 0.2s;
    outline: none;
    resize: none;
}
.iletisim-form input:focus,
.iletisim-form textarea:focus {
    border: 1.5px solid #ff8c42;
}
.iletisim-btn {
    background: #ff8c42;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 12px 0;
    border-radius: 10px;
    border: none;
    cursor: not-allowed;
    opacity: 0.7;
    margin-top: 6px;
    transition: background 0.2s;
}
.iletisim-bilgi {
    margin-top: 18px;
    color: var(--main-bluegray);
    font-size: 1.05rem;
    text-align: left;
    background: #f4f6fa;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 1px 4px rgba(34,48,74,0.04);
}
.iletisim-bilgi a {
    color: #ff8c42;
    text-decoration: none;
    font-weight: 600;
}
.iletisim-bilgi a:hover {
    text-decoration: underline;
}
@media (max-width: 700px) {
    .iletisim {
        padding: 32px 0 24px 0;
    }
    .iletisim-content {
        padding: 0 4px;
        border-radius: 10px;
    }
    .iletisim-content h2 {
        font-size: 1.3rem;
    }
    .iletisim-bilgi {
        font-size: 0.98rem;
        padding: 10px 6px;
    }
}

.guven-efekt {
    display: inline-block;
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #34b7f1;
    text-shadow: 0 4px 18px rgba(52,183,241,0.10);
    opacity: 0;
    transform: scale(0.85) translateY(-30px);
    animation: guvenFadeIn 1.2s cubic-bezier(.4,2,.6,1) 0.2s forwards;
}
@keyframes guvenFadeIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@media (max-width: 700px) {
    .guven-efekt {
        font-size: 1.3rem;
    }
}
