:root {
    --primary-color: #2995B1;
    --secondary-color: #003c78;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f7fafd;
    color: #222;
    overflow-x: hidden;
    width: 100%;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,60,120,0.13);
    overflow: hidden;
    width: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 40, 80, 0.6);
    z-index: 2;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

nav.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

nav.scrolled .nav-links a {
    color: #000 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
    color: #000 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

nav .nav-links a:hover,
nav .nav-links a.active {
    color: #fff;
}

.nav-cta {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 149, 177, 0.3);
    display: inline-block;
}

.nav-cta:hover {
    background-color: #217a91;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 149, 177, 0.4);
    color: #fff !important;
}

nav.scrolled .nav-cta {
    background-color: var(--primary-color);
    color: #fff !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    width: 30px;
    height: 30px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.nav-toggle span:nth-child(1) {
    top: 5px;
}

.nav-toggle span:nth-child(2) {
    top: 12px;
}

.nav-toggle span:nth-child(3) {
    top: 19px;
}

nav.scrolled .nav-toggle span {
    background-color: #000;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: #000;
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background-color: #000;
}

.hero-content {
    text-align: center;
    margin-top: 120px;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,60,120,0.18);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 36px;
    color: #f0f5fa;
    text-shadow: 0 1px 8px rgba(0,60,120,0.10);
}

.cta-btn {
    background: linear-gradient(90deg, #2995B1 60%, #5ac8e4 100%);
    color: #fff;
    padding: 18px 48px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,60,120,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 #2995B155; }
    70% { box-shadow: 0 0 0 10px #2995B100; }
    100% { box-shadow: 0 0 0 0 #2995B100; }
}

.cta-btn:hover {
    background: #2995B1;
    color: #fff;
    transform: scale(1.05);
}

.services {
    padding: 80px 20px 60px 20px;
    background-image: linear-gradient(rgba(247, 250, 253, 0.9), rgba(247, 250, 253, 0.9)), url('../images/background.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    width: 100%;
}

.services h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #003c78;
    font-weight: 800;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #f7fafd;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,60,120,0.10);
    padding: 36px 24px;
    width: 320px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e7ef;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,60,120,0.18);
    border-color: #2995B1;
}

.card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0,60,120,0.08);
}

.card h3 {
    margin: 0 0 10px 0;
    color: #003c78;
    font-size: 1.4rem;
    font-weight: 700;
}

.card p {
    color: #444;
    font-size: 1.05rem;
}

.about {
    padding: 80px 20px;
    background: #fff;
    width: 100%;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #003c78;
    font-weight: 800;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,60,120,0.15);
}

.more-text {
    display: none;
}

.read-more-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #217a91;
}

.contact {
    padding: 80px 20px;
    background: #f7fafd;
    text-align: center;
    width: 100%;
}

.contact h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #003c78;
    font-weight: 800;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-row .form-group:only-child {
    flex: none;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e7ef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(41, 149, 177, 0.1);
}

.form-group select {
    background-color: #fff;
    cursor: pointer;
}

.form-group select:required:invalid {
    color: #999;
}

.submit-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background-color: #217a91;
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,60,120,0.1);
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-info strong {
    color: var(--primary-color);
}

footer {
    background: #003c78;
    color: #fff;
    text-align: center;
    padding: 30px 80px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

footer p, footer a {
    margin: 0;
    color: #ccc;
    text-decoration: none;
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit:hover {
    color: #fff;
}

.footer-credit img {
    height: 20px;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background: #fff;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.feature-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin: 0 0 10px 0;
    color: #003c78;
    font-size: 1.3rem;
}

.why-us {
    padding: 80px 20px;
    background-image: linear-gradient(rgba(0, 60, 120, 0.75), rgba(0, 60, 120, 0.75)), url('../images/kusadasi.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    width: 100%;
}

.why-us h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 800;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 1.1rem;
    color: #e0e7ef;
}

.testimonial-slider {
    max-width: 450px;
    width: 100%;
    overflow: hidden;
}

.testimonial {
    max-width: 450px;
    font-style: italic;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 16px;
    border-left: 5px solid #2995B1;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    color: #fff;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.testimonial h4 {
    margin: 10px 0 0 0;
    text-align: right;
    font-style: normal;
    font-weight: 700;
    color: #e0e7ef;
}

.wp-notification-badge {
    position: absolute;
    top: 8px;
    right: 12px;
    min-width: 22px;
    height: 22px;
    background: #e53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(229,57,53,0.18);
    border: 2px solid #fff;
    z-index: 1002;
    pointer-events: none;
    animation: badge-blink 1s infinite alternate;
}

@keyframes badge-blink {
    0% { opacity: 1; }
    100% { opacity: 0.2; }
}

.whatsapp-fab {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 90px;
    height: 90px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 40px 8px #25d36699, 0 2px 32px 0 #0006;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(.36,.07,.19,.97), box-shadow 0.3s cubic-bezier(.36,.07,.19,.97);
    animation: wp-bounce 1.2s infinite, wp-glow-strong 1.8s infinite alternate;
    overflow: visible;
}

.wp-hover-text {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    background: #25d366;
    color: #fff;
    padding: 8px 18px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    margin-right: 18px;
    box-shadow: 0 2px 12px rgba(37,211,102,0.15);
    transition: opacity 0.25s, transform 0.25s;
    z-index: 1001;
}

.whatsapp-fab:hover .wp-hover-text {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

@keyframes wp-bounce {
    0%, 100% { transform: scale(1) translateY(0); }
    10% { transform: scale(1.08) translateY(-6px); }
    20% { transform: scale(1.12) translateY(-12px); }
    30% { transform: scale(1.15) translateY(-18px); }
    40% { transform: scale(1.12) translateY(-12px); }
    50% { transform: scale(1.08) translateY(-6px); }
    60%, 90% { transform: scale(1) translateY(0); }
}

@keyframes wp-glow {
    0%, 100% { box-shadow: 0 0 0 0 #25d36655, 0 4px 32px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 24px 12px #25d36655, 0 4px 32px rgba(37, 211, 102, 0.4); }
}

@keyframes wp-glow-strong {
    0% { box-shadow: 0 8px 40px 8px #25d36699, 0 2px 32px 0 #0006; }
    100% { box-shadow: 0 0 60px 24px #25d366cc, 0 2px 32px 0 #0006; }
}

.whatsapp-fab:hover {
    transform: scale(1.22) rotate(-6deg);
    box-shadow: 0 12px 60px 16px #25d366cc, 0 2px 32px 0 #0008;
    animation: wp-bounce 0.7s infinite, wp-glow-strong 1s infinite alternate;
}

.whatsapp-icon {
    width: 54px;
    height: 54px;
    transition: transform 0.2s;
    filter: drop-shadow(0 0 8px #fff8);
}

@media (max-width: 700px) {
    .whatsapp-fab {
        width: 25vw;
        height: 25vw;
        min-width: 70px;
        min-height: 70px;
        max-width: 110px;
        max-height: 110px;
        bottom: 3vw;
        right: 3vw;
    }
    .whatsapp-icon {
        width: 70%;
        height: 70%;
        min-width: 40px;
        min-height: 40px;
        max-width: 80px;
        max-height: 80px;
    }
    .wp-notification-badge {
        top: 4px;
        right: 10px;
        min-width: 16px;
        height: 16px;
        border-width: 1.5px;
    }
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.copyright-text {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-image: url('../images/hamburgerarkaplan.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .nav-links.visible {
        right: 0;
    }
    
    .nav-links a {
        color: #fff !important;
        font-size: 1.3rem;
        font-weight: 600;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }

    .nav-toggle {
        display: block;
    }

    nav.scrolled .nav-toggle span {
        background-color: #000;
    }
    
    .nav-open .nav-toggle span {
        background-color: #000;
    }

    .nav-cta {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }

    .features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-fab {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .services, .about, .contact, .features, .why-us {
        padding-left: 15px;
        padding-right: 15px;
    }

    .why-us {
        background-attachment: scroll;
        padding: 60px 20px;
    }

    .testimonial {
        font-size: 1.05rem;
        padding: 20px;
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .services h2, .contact h2, .why-us h2, .about-text h2 {
        font-size: 2rem;
    }

    .card {
        width: 100%;
        max-width: 300px;
    }

    .about, .contact, .features, .why-us, .services {
        padding: 40px 15px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .testimonial {
        padding: 20px;
        margin: 10px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        width: 80%;
    }
}

/* Yeni sınıflar için stiller */
.section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.slogan {
    font-style: italic;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.arrow {
    font-size: 1.3em;
    vertical-align: middle;
}

.calendar-icon {
    margin-left: 8px;
    font-size: 1.1em;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-credit img {
    height: 36px; /* Büyütüldü */
}

.grecaptcha-badge { 
    visibility: hidden !important;
}

.recaptcha-notice {
    font-size: 0.8rem;
    color: #000;
    text-align: center;
    margin-top: 15px;
}

.recaptcha-notice a {
    color: #000;
    text-decoration: underline;
} 

.contact-form .form-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.contact-form .form-group {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form select#hizmet_id {
    min-width: 180px;
    max-width: 220px;
}

.contact-form select#hizmet_id option {
    text-align: center;
} 

.contact-form textarea#mesaj {
    width: 100%;
    max-width: 420px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    resize: none;
    display: block;
} 