/*
Theme Name: Modern Medical
Theme URI: https://drtugceturkoglu.com/
Author: Antigravity
Description: A modern, aesthetic, and professional medical theme.
Version: 1.0
*/

:root {
    --primary-color: #D4AF37;
    --primary-dark: #AA8C2C;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-text: #f5f5f5;
    --bg-color: #ffffff;
    --light-bg: #f9f9f9;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 10px 0;
    z-index: 1001;
    border-radius: 8px;
    list-style: none !important;
    margin: 0;
}

.nav-menu li:hover .sub-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.nav-menu .sub-menu li {
    padding: 0;
    margin: 0;
    list-style: none !important;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    transition: all 0.2s;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.nav-menu .sub-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.lang-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('image/IMG_6141.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background: transparent;
    color: #fff;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: #ddd;
    border-radius: 10px;
}

.about-content {
    white-space: pre-line;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    width: 40px;
    height: 40px;
    font-size: 20px;
    align-self: center;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 280px;
}

.footer-heading {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-text p {
    margin: 5px 0 0;
    line-height: 1.6;
    color: #ccc;
}

.contact-text a {
    color: #ccc;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--primary-color);
}

/* Social Area */
.social-area {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hours List */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #222;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: #fff;
    font-weight: 500;
}

.hours-list .time {
    color: #888;
}

/* Map */
.map-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
}

.map-column {
    flex: 1.2;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* RTL Support */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .nav-menu .sub-menu {
    left: auto;
    right: 0;
}

body.rtl .floating-buttons {
    right: auto;
    left: 20px;
}

body.rtl .footer-heading::after {
    left: auto;
    right: 0;
}

body.rtl .contact-list li {
    text-align: right;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    z-index: 1002;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-inner {
        justify-content: space-between;
        position: relative;
        height: 40px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        white-space: nowrap;
        font-size: 1.2rem;
        z-index: 1001;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 70px 25px 25px;
        box-shadow: none;
        z-index: 999;
        gap: 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: none;
    }

    .nav-wrapper.active {
        display: flex;
    }

    .mobile-menu-toggle {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu>li:last-child {
        border-bottom: none;
    }

    .nav-menu>li>a {
        padding: 16px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.05rem;
        font-weight: 500;
        color: #2c3e50;
        letter-spacing: 0.3px;
    }

    .nav-menu>li>a .fa-chevron-down {
        font-size: 0.75rem;
        color: #999;
        transition: transform 0.2s ease;
    }

    /* Submenu - hidden by default on mobile, shown via JS slideToggle */
    .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 15px;
        display: none;
        background: transparent;
        animation: none;
        min-width: unset;
        border-radius: 0;
    }

    /* Override hover completely on mobile - JS handles everything */
    .nav-menu li:hover>.sub-menu {
        display: none;
    }

    /* When jQuery slideToggle sets display:block via inline style, show it */
    .nav-menu .sub-menu[style*="display: block"],
    .nav-menu .sub-menu[style*="display:block"] {
        display: block !important;
    }

    .nav-menu .sub-menu li {
        border-bottom: none;
        padding: 0;
    }

    .nav-menu .sub-menu a {
        padding: 12px 15px;
        font-size: 0.95rem;
        border-left: 2px solid var(--primary-color);
    }

    /* Prevent long-press and text selection on mobile links */
    .nav-menu a,
    .nav-menu .sub-menu a {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        touch-action: manipulation;
    }

    .lang-switcher {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .lang-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .map-column {
        flex: 1;
    }
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    border-top: 1px solid #eee;
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
    flex: 1;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
}

.btn-accept {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-accept:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #f0f0f0;
    color: #333;
}

.btn-reject:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie {
        width: 100%;
    }
}

/* ===============================
   Gallery Page Styles
   =============================== */

.gallery-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.gallery-hero .container {
    position: relative;
    z-index: 1;
}

.gallery-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.gallery-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Grid */
.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    animation: fadeIn 0.8s ease;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* No Images Message */
.no-images-message {
    text-align: center;
    padding: 80px 20px;
    background: var(--light-bg);
    border-radius: 16px;
    border: 2px dashed #ddd;
}

.no-images-message i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
    display: block;
}

.no-images-message p {
    font-size: 1.2rem;
    color: #888;
    margin: 0;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoom 0.4s ease;
}

@keyframes lightboxZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* Gallery Page Responsive */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 120px 0 60px;
    }

    .gallery-hero h1 {
        font-size: 2rem;
    }

    .gallery-hero p {
        font-size: 1rem;
    }

    .gallery-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        aspect-ratio: 1/1;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
}

/* ===============================
   Contact Page Styles
   =============================== */

.contact-page {
    min-height: 100vh;
}

.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    padding: 140px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.contact-hero p {
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-submit i {
    font-size: 1rem;
}

/* Success & Error Messages */
.form-success,
.form-error-message {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.form-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.form-error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    margin-bottom: 20px;
}

.form-error-message i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card h3 i {
    font-size: 1.2rem;
}

.contact-info-card p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

/* WhatsApp Card */
.whatsapp-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    text-align: center;
}

.whatsapp-card a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-card a i {
    font-size: 1.5rem;
}

.whatsapp-card:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Contact Bottom */
.contact-bottom {
    text-align: center;
}

.contact-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.form-error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    margin-bottom: 20px;
}

.form-error-message i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card h3 i {
    font-size: 1.2rem;
}

.contact-info-card p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

/* WhatsApp Card */
.whatsapp-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    text-align: center;
}

.whatsapp-card a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-card a i {
    font-size: 1.5rem;
}

.whatsapp-card:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Contact Bottom */
.contact-bottom {
    text-align: center;
}

.contact-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }

    .whatsapp-card {
        grid-column: span 1;
    }

    .contact-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 120px 15px 60px;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .btn-submit {
        width: 100%;
        padding: 14px 20px;
    }
}

/* KVKK Checkbox Styles */
.kvkk-checkbox {
    margin-top: 20px;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    gap: 12px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-text {
    color: #555;
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-text a:hover {
    color: var(--primary-dark);
}

/* KVKK Page Styles */
.kvkk-page {
    background: var(--light-bg);
    min-height: 100vh;
}

.kvkk-content h2 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.kvkk-content h2:first-child {
    margin-top: 0;
}

.kvkk-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
}

.kvkk-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.kvkk-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
}

.kvkk-content strong {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .kvkk-content {
        padding: 25px !important;
    }

    .kvkk-content h2 {
        font-size: 1.1rem;
    }
}