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

:root {
    --primary-green: #1e3a5f;
    --light-green: #3b82f6;
    --lighter-green: #60a5fa;
    --white: #ffffff;
    --cream: #f8f9fa;
    --text-dark: #0f172a;
    --text-gray: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-green);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    min-height: 44px;
    min-width: 44px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

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

.btn-sm i {
    font-size: 14px;
}

/* ===== TOP HEADER ===== */
.top-header {
    background: var(--primary-green);
    color: var(--white);
    font-size: 13px;
    padding: 6px 0;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-header-left,
.top-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-header-item {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    white-space: nowrap;
}

.top-header-item:hover {
    color: var(--lighter-green);
}

.top-header-item i {
    font-size: 14px;
}

/* Promosyon */
.top-header-promo {
    background: rgba(255, 193, 7, 0.2);
    padding: 3px 10px !important;
    border-radius: 15px;
    font-weight: 600;
    font-size: 12px !important;
    animation: pulse-promo 2s infinite;
}

.top-header-promo .text-content {
    font-size: 13px;
    font-weight: 700;
}

.top-header-promo i {
    font-size: 13px !important;
    margin-right: 5px;
}

.top-header-promo:hover {
    background: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

@keyframes pulse-promo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.social-icon {
    color: var(--white);
    font-size: 18px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.social-icon:hover {
    color: var(--lighter-green);
    transform: scale(1.1);
}

/* Mobil için top header optimizasyonu */
@media (max-width: 767px) {
    .top-header {
        font-size: 11px;
        padding: 5px 0 !important;
        min-height: 36px;
    }

    .top-header-content {
        gap: 8px;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
    }

    .top-header-left {
        flex: 0 0 auto;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
    }

    .top-header-right {
        gap: 8px;
        flex: 0 0 auto;
        align-items: center;
        display: flex;
    }

    .top-header-item {
        font-size: 10px !important;
        gap: 3px;
        padding: 3px 5px !important;
        min-width: auto;
        line-height: 1.2;
    }

    .top-header-item i {
        font-size: 13px !important;
        margin: 0;
    }

    /* Telefon ve konum: sadece ikon */
    .top-header-phone .text-content,
    .top-header-location .text-content {
        display: none !important;
    }

    .top-header-phone i,
    .top-header-location i {
        font-size: 15px !important;
    }

    /* Çalışma saatleri: mobilde gizle */
    .top-header-hours {
        display: none !important;
    }

    /* Promosyon: mobilde göster */
    .top-header-promo {
        display: flex !important;
        font-size: 12px !important;
        padding: 5px 10px !important;
    }

    .top-header-promo .text-content {
        display: inline !important;
        font-size: 12px;
        white-space: nowrap;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .top-header-promo i {
        font-size: 15px !important;
    }

    .social-icon {
        font-size: 14px !important;
        width: auto;
        height: auto;
        padding: 3px 4px !important;
    }
}

/* Küçük mobil cihazlar için */
@media (max-width: 480px) {
    .top-header {
        padding: 4px 0 !important;
        min-height: 32px;
    }

    .top-header-content {
        padding: 0 8px;
        gap: 6px;
    }

    .top-header-right {
        gap: 6px;
    }

    .top-header-item {
        padding: 2px 4px !important;
        font-size: 9px !important;
    }

    .top-header-item i {
        font-size: 13px !important;
    }

    .top-header-phone i,
    .top-header-location i {
        font-size: 14px !important;
    }

    .top-header-promo .text-content {
        font-size: 11px;
        letter-spacing: 0.2px;
    }

    .top-header-promo i {
        font-size: 14px !important;
    }

    .social-icon {
        font-size: 13px !important;
        padding: 2px 3px !important;
    }
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: background 0.3s ease;
}

.main-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    color: var(--light-green);
    font-size: 1.15rem;
}

/* ===== NAVIGATION ===== */
.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 5px 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-menu a i {
    font-size: 15px;
    color: var(--light-green);
    transition: transform 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--cream);
    color: var(--primary-green);
}

.nav-menu a:hover i,
.nav-menu a.active i {
    transform: scale(1.2);
    color: var(--primary-green);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1000;
    list-style: none;
}

.dropdown.active .dropdown-menu {
    display: block;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--primary-green);
    padding-left: 25px;
}

.dropdown-menu a i {
    font-size: 18px;
    color: var(--light-green);
    min-width: 20px;
}

.dropdown-menu a:hover i {
    color: var(--primary-green);
    transform: scale(1.1);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20ba5a;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 1.1rem;
}

/* ===== ABOUT INTRO SECTION ===== */
.about-intro {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-intro-image {
    text-align: center;
}

.profile-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 106, 79, 0.2);
    margin: 0 auto;
    transition: transform 0.3s ease;
}

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

.about-intro-text h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-intro-video {
    position: relative;
    width: 100%;
}

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

.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-video-content {
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(45, 106, 79, 0.2);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

/* Neden Ben Section */
.why-me-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.why-me-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.why-me-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.15);
}

.why-me-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.why-me-content h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-me-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Certificates Section */
.certificates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.certificate-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    align-items: center;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(45, 106, 79, 0.15);
}

.certificate-image {
    width: 150px;
    min-width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.9) 0%, rgba(82, 183, 136, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-item:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.certificate-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
}

.certificate-placeholder i {
    font-size: 4rem;
    color: var(--white);
}

.certificate-info {
    flex: 1;
}

.certificate-info h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.certificate-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.certificate-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.certificate-date i {
    color: var(--primary-green);
}

.no-certificates {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.no-certificates i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-certificates p {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-style: italic;
}

/* Hover Card Effect */
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.15) !important;
}

/* ===== TOAST NOTIFICATION SYSTEM ===== */
.toast-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 99999;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    min-width: 320px;
    max-width: 450px;
    pointer-events: auto;
    transform: translateX(-120%);
    animation: slideInLeft 0.4s ease forwards;
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.toast.success::before {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.toast.error::before {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.toast.warning::before {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.toast-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.toast.success .toast-icon {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.toast.error .toast-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.toast.warning .toast-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.toast-message {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
    word-wrap: break-word;
}

.toast-close {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-gray);
    transition: all 0.2s ease;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.toast.hiding {
    animation: slideOutLeft 0.3s ease forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-120%);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .toast-container {
        left: 10px;
        right: 10px;
        top: 10px;
    }

    .toast {
        min-width: auto;
        width: 100%;
        max-width: calc(100vw - 20px);
        padding: 14px 16px;
    }

    .toast-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 18px;
    }

    .toast-title {
        font-size: 0.9rem;
    }

    .toast-message {
        font-size: 0.8rem;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }

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

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .contact-info-card {
        padding: 15px;
        flex-direction: row;
        align-items: flex-start;
    }
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(45, 106, 79, 0.15);
}

.contact-info-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

@media (max-width: 767px) {
    .contact-info-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }
}

.contact-info-card-content {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.contact-info-card-content h3 {
    color: var(--primary-green);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-card-content p,
.contact-info-card-content a {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 767px) {
    .contact-info-card-content h3 {
        font-size: 0.95rem;
    }

    .contact-info-card-content p,
    .contact-info-card-content a {
        font-size: 0.85rem;
    }
}

.contact-info-card-content a:hover {
    color: var(--primary-green);
}

/* Working Hours List */
.working-hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.working-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 6px;
    transition: all 0.2s ease;
    gap: 10px;
}

.working-day:hover {
    background: rgba(46, 125, 50, 0.1);
    transform: translateX(2px);
}

.working-day.closed {
    background: rgba(255, 107, 107, 0.05);
}

.working-day.closed:hover {
    background: rgba(255, 107, 107, 0.1);
}

.working-day .day-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.working-day .day-hours {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: right;
}

.working-day.closed .day-hours {
    color: #ff6b6b;
}

@media (max-width: 767px) {
    .working-day {
        padding: 6px 10px;
        gap: 8px;
    }

    .working-day .day-name,
    .working-day .day-hours {
        font-size: 0.8rem;
    }
}

/* Footer Working Hours */
.footer-working-hours {
    margin-left: 28px;
    font-size: 14px;
    max-width: 100%;
    overflow: hidden;
}

.footer-working-hours>div {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 100%;
}

.footer-working-hours>div:last-child {
    border-bottom: none;
}

.footer-working-hours span:first-child {
    opacity: 0.9;
    white-space: nowrap;
}

.footer-working-hours span:last-child {
    font-weight: 600;
    white-space: nowrap;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.contact-form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .contact-form-card {
        padding: 20px;
    }
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-header i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-form-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.social-media-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.social-media-card h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.social-media-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-media-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn i {
    font-size: 1.3rem;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.alert p {
    margin: 0;
    font-size: 0.9rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-success i {
    color: #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-error i {
    color: #dc3545;
}

/* ===== CTA CARDS ===== */
.cta-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(45, 106, 79, 0.15);
}

.cta-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 20px;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.3);
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.cta-action {
    flex-shrink: 0;
}

.cta-action .btn {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 6px;
}

.pagination a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.pagination span.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.pagination a i {
    font-size: 0.75rem;
}

.intro-lead {
    font-size: 1.3rem;
    color: var(--light-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-intro-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--cream);
    border-radius: 25px;
    color: var(--primary-green);
    font-weight: 600;
}

.highlight-item i {
    font-size: 20px;
    color: var(--light-green);
}

/* Animasyonlar - Scroll-based */
.fade-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for cards */
.grid .fade-in-up:nth-child(1) {
    transition-delay: 0.1s;
}

.grid .fade-in-up:nth-child(2) {
    transition-delay: 0.2s;
}

.grid .fade-in-up:nth-child(3) {
    transition-delay: 0.3s;
}

.grid .fade-in-up:nth-child(4) {
    transition-delay: 0.4s;
}

.grid .fade-in-up:nth-child(5) {
    transition-delay: 0.5s;
}

.grid .fade-in-up:nth-child(6) {
    transition-delay: 0.6s;
}

/* Fallback keyframes */
@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop görünüm */
@media (min-width: 768px) {
    .about-intro-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .about-intro-text h2 {
        font-size: 3rem;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

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

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .certificate-image {
        width: 180px;
        min-width: 180px;
        height: 180px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }

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

    .contact-info-card {
        padding: 15px;
        gap: 12px;
    }

    .contact-info-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }

    .working-hours-list {
        gap: 6px;
        margin-top: 10px;
    }

    .working-day {
        padding: 6px 10px;
    }

    .working-day .day-name,
    .working-day .day-hours {
        font-size: 0.8rem;
    }
}

@media (min-width: 992px) {
    .about-intro-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .why-me-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .certificate-item {
        padding: 30px;
    }

    .certificate-image {
        width: 200px;
        min-width: 200px;
        height: 200px;
    }
}

@media (max-width: 767px) {
    .certificate-item {
        flex-direction: column;
        text-align: center;
    }

    .certificate-image {
        margin: 0 auto;
    }

    .why-me-item {
        flex-direction: column;
        text-align: center;
    }

    .why-me-icon {
        margin: 0 auto;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-card {
        padding: 25px 20px;
    }

    .social-media-buttons {
        flex-direction: column;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-action {
        width: 100%;
    }

    .cta-action .btn {
        width: 100%;
    }

    .pagination {
        gap: 5px;
    }

    .pagination a,
    .pagination span {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
        padding: 0 8px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.70);
}

.hero-content {
    max-width: 700px;
    padding: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== GRID LAYOUTS ===== */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* ===== CARD ===== */
.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.card-text {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.card-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

/* ===== FORM ===== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

input[type="datetime-local"].form-control {
    padding: 12px 15px;
    font-size: 16px;
    cursor: pointer;
}

input[type="datetime-local"].form-control::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 5px;
}

/* ===== CONTACT PREVIEW SECTION ===== */
.contact-preview-section {
    background: var(--cream);
    overflow: hidden;
}

.contact-preview-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
    max-width: 100%;
}

.contact-info-wrapper,
.contact-map-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-info-box {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

.contact-info-header h3 {
    color: var(--primary-green);
    margin: 0;
    font-size: 1.3rem;
    word-break: break-word;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--cream);
    border-radius: 10px;
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.contact-info-item-link {
    text-decoration: none;
    cursor: pointer;
}

.contact-info-item-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(45, 106, 79, 0.15);
}

.contact-info-item-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.location-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
}

.phone-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
}

.email-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
}

.time-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
}

.contact-info-item-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
}

.btn-contact-full {
    width: 100%;
    justify-content: center;
}

.contact-map-wrapper {
    height: 100%;
    min-height: 350px;
    max-width: 100%;
}

.contact-map-box {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact-map-box iframe {
    max-width: 100%;
}

/* Tablet (768px+) için contact preview */
@media (min-width: 768px) {
    .contact-preview-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-info-box {
        padding: 30px;
        border-radius: 20px;
    }

    .contact-info-header {
        gap: 15px;
        margin-bottom: 25px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        border-radius: 15px;
    }

    .contact-info-header h3 {
        font-size: 1.6rem;
    }

    .contact-info-items {
        gap: 18px;
        margin-bottom: 25px;
    }

    .contact-info-item {
        padding: 18px;
        gap: 15px;
        border-radius: 12px;
    }

    .contact-info-item-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 12px;
    }

    .contact-info-label {
        font-size: 13px;
    }

    .contact-info-value {
        font-size: 16px;
    }

    .contact-map-wrapper {
        min-height: 450px;
    }

    .contact-map-box {
        border-radius: 20px;
    }
}

/* Desktop (992px+) için contact preview */
@media (min-width: 992px) {
    .contact-preview-wrapper {
        gap: 40px;
    }

    .contact-info-box {
        padding: 40px;
    }

    .contact-info-header {
        margin-bottom: 30px;
    }

    .contact-info-items {
        gap: 20px;
        margin-bottom: 30px;
    }

    .contact-info-item {
        padding: 20px;
    }

    .contact-map-wrapper {
        min-height: 550px;
    }
}

/* ===== APPOINTMENT SECTION ===== */
.appointment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.appointment-info-card {
    text-align: center;
    padding: 20px;
}

.appointment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.appointment-icon i {
    font-size: 40px;
    color: var(--white);
}

.appointment-info-card h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 15px;
}

.appointment-highlight {
    font-size: 1.2rem;
    color: var(--light-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.appointment-features {
    margin-top: 30px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(45, 106, 79, 0.15);
}

.feature-item i {
    color: var(--light-green);
    font-size: 20px;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.2);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.phone-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.location-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.contact-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.appointment-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.appointment-form .form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cream);
}

.appointment-form .form-header i {
    font-size: 40px;
    color: var(--light-green);
    margin-bottom: 10px;
}

.appointment-form .form-header h2 {
    color: var(--primary-green);
    margin: 0;
}

@media (min-width: 768px) {
    .appointment-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

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

/* ===== FOOTER ===== */
.main-footer {
    background: #2d6a4f;
    color: white;
    padding: 40px 0 20px;
    overflow: hidden;
    width: 100%;
}

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

.footer-col {
    padding: 30px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-col:first-child {
    padding-top: 0;
}

.footer-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-col h3 {
    color: #b7e4c7;
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 15px;
}

.footer-col h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 18px;
    background: #74c69d;
    border-radius: 2px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #d8f3dc;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #74c69d;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    display: inline-block;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #74c69d;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 18px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.footer-contact i {
    font-size: 16px;
    min-width: 20px;
    color: #74c69d;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #74c69d;
}

.footer-contact span {
    color: white;
}

.footer-contact a:hover {
    color: var(--lighter-green);
}

.footer-map {
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

@media (min-width: 768px) {
    .footer-map {
        margin-bottom: 15px;
    }

    .footer-map iframe {
        height: 200px;
    }
}

@media (min-width: 992px) {
    .footer-map iframe {
        height: 220px;
    }
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #74c69d;
    color: #2d6a4f;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.map-link:hover {
    background: #52b788;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    margin: 10px 0;
    color: #d8f3dc;
}

.developer-credit a {
    color: #74c69d;
    text-decoration: none;
}

.developer-credit a:hover {
    color: white;
}

/* Mobil için footer extra optimizasyon */
@media (max-width: 767px) {
    .main-footer {
        padding: 40px 0 20px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .main-footer .container {
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }

    .footer-content {
        gap: 0;
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .footer-col {
        padding: 30px 0;
        width: 100% !important;
        max-width: 100%;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }

    .footer-col:first-child {
        padding-top: 0;
    }

    .footer-col:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 18px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-col h3::before {
        height: 18px;
    }

    .footer-col p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .footer-social {
        gap: 12px;
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 20px;
        flex-shrink: 0;
    }

    .footer-links {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .footer-links li {
        margin-bottom: 15px;
        width: 100%;
    }

    .footer-links a {
        font-size: 14px;
        padding: 8px 0;
        display: inline-block;
        word-wrap: break-word;
        max-width: 100%;
    }

    .footer-contact {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .footer-contact li {
        font-size: 14px;
        gap: 12px;
        margin-bottom: 18px;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-contact i {
        font-size: 16px;
        min-width: 20px;
        flex-shrink: 0;
    }

    .footer-contact a,
    .footer-contact span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: calc(100% - 32px);
    }

    .footer-map {
        margin-bottom: 18px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        width: 100%;
        max-width: 100%;
    }

    .footer-map iframe {
        height: 200px;
        width: 100% !important;
        max-width: 100%;
        display: block;
    }

    .map-link {
        font-size: 14px;
        padding: 12px 20px;
        display: inline-block;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }

    .footer-bottom {
        padding-top: 30px;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 100%;
    }

    .footer-bottom p {
        font-size: 13px;
        padding: 0;
        line-height: 1.8;
        margin: 10px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .footer-bottom a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* 430px ve altı için ekstra optimizasyon */
@media (max-width: 430px) {
    .main-footer {
        padding: 30px 0 15px;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .main-footer .container {
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-content {
        gap: 0 !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        display: grid !important;
    }

    .footer-col {
        padding: 22px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    .footer-col h3 {
        font-size: 1rem !important;
        margin-bottom: 14px !important;
        display: flex !important;
        width: 100% !important;
    }

    .footer-col p {
        font-size: 13px !important;
        line-height: 1.7 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-links,
    .footer-contact {
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-links li,
    .footer-contact li {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 14px !important;
    }

    .footer-links a {
        font-size: 13px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .footer-contact li {
        font-size: 13px !important;
        display: flex !important;
        align-items: flex-start !important;
    }

    .footer-map {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 16px !important;
    }

    .footer-map iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 180px !important;
    }

    .map-link {
        font-size: 13px !important;
        padding: 10px 16px !important;
        width: auto !important;
        max-width: 100% !important;
    }

    .footer-social {
        gap: 10px !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }

    .footer-social a {
        width: 40px !important;
        height: 40px !important;
        font-size: 17px !important;
    }

    .footer-bottom {
        padding-top: 25px !important;
        margin-top: 25px !important;
        width: 100% !important;
    }

    .footer-bottom p {
        font-size: 12px !important;
        line-height: 1.7 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Çok küçük mobil cihazlar için */
@media (max-width: 480px) {
    .main-footer {
        padding: 35px 0 15px;
        width: 100%;
        max-width: 100vw;
    }

    .main-footer .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        gap: 0;
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .footer-col {
        padding: 25px 0;
        width: 100% !important;
        max-width: 100%;
    }

    .footer-col:first-child {
        padding-top: 0;
    }

    .footer-col h3 {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }

    .footer-col h3::before {
        height: 16px;
        width: 2.5px;
    }

    .footer-col p {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-social {
        gap: 10px;
        margin-top: 15px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .footer-links li {
        margin-bottom: 13px;
    }

    .footer-links a {
        font-size: 13px;
        padding: 6px 0;
    }

    .footer-contact li {
        font-size: 13px;
        gap: 10px;
        margin-bottom: 16px;
    }

    .footer-contact i {
        font-size: 15px;
    }

    .footer-map iframe {
        height: 180px;
    }

    .map-link {
        font-size: 13px;
        padding: 10px 16px;
    }

    .footer-bottom {
        padding-top: 25px;
        margin-top: 25px;
    }

    .footer-bottom p {
        font-size: 12px;
        padding: 0;
        margin: 8px 0;
    }
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
    background: var(--white);
    color: var(--primary-green);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-weight: 600;
}

.pagination a:hover {
    background: var(--primary-green);
    color: var(--white);
}

.pagination .active {
    background: var(--primary-green);
    color: var(--white);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--light-green);
}

.modal-body {
    padding: 40px 20px 20px;
}

/* ===== RESPONSIVE - MOBILE FIXES ===== */
@media (max-width: 767px) {
    * {
        max-width: 100vw;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
    }

    .grid,
    .grid-2,
    .grid-3 {
        width: 100%;
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 20px !important;
    }

    .card {
        max-width: 100%;
        overflow: hidden;
    }

    .footer-working-hours {
        margin-left: 20px;
        font-size: 13px;
    }

    .contact-info-card .working-hours-list {
        gap: 5px;
        margin-top: 8px;
    }

    .contact-info-card .working-day {
        padding: 5px 8px;
        flex-wrap: nowrap;
    }

    .contact-info-card .working-day .day-name {
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .contact-info-card .working-day .day-hours {
        font-size: 0.75rem;
        text-align: right;
    }
}

/* Dropdown Mobile */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--cream);
        margin: 5px 0;
        padding: 5px 0;
        border-radius: 5px;
    }

    .dropdown-menu a {
        padding: 10px 15px 10px 30px;
        font-size: 15px;
    }

    .dropdown-arrow {
        margin-left: 5px;
    }
}

/* ===== RESPONSIVE - TABLET (768px+) ===== */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px;
        row-gap: 35px;
        display: grid !important;
    }

    .footer-col {
        max-width: 100%;
        width: auto;
        padding: 0 !important;
        border-bottom: none !important;
    }

    .footer-col:first-child {
        padding-top: 0;
    }

    .footer-col h3 {
        font-size: 1.2rem;
        border-bottom: none;
        padding-bottom: 0;
    }

    .map-link {
        width: auto;
        display: inline-flex;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .whatsapp-float {
        bottom: 40px;
        right: 40px;
    }
}

/* ===== RESPONSIVE - DESKTOP (992px+) ===== */
@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        position: static;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 5px;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 8px 12px;
    }

    .dropdown-toggle:hover,
    .dropdown.active .dropdown-toggle {
        background: var(--cream);
        color: var(--primary-green);
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-text span {
        font-size: 1.25rem;
    }

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

    .footer-col {
        padding: 0 !important;
        border-bottom: none !important;
        width: auto;
    }

    .footer-col h3 {
        font-size: 1.15rem;
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }
}

/* ===== VKI CALCULATOR ===== */
.vki-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-dark);
    padding: 40px 0 30px;
    text-align: center;
    border-bottom: 3px solid var(--primary-green);
}

.vki-hero-content h1 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.vki-hero-content h1 i {
    margin-right: 8px;
    font-size: 1.6rem;
    color: var(--primary-green);
}

.vki-hero-content p {
    font-size: 1rem;
    opacity: 0.85;
    padding: 0 15px;
    color: #495057;
}

.vki-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.vki-calculator-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.vki-info-card {
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5e9 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 106, 79, 0.1);
}

.vki-calculator-card h2,
.vki-info-card h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.vki-calculator-card h2 i,
.vki-info-card h3 i {
    font-size: 1.3rem;
}

.vki-info-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.vki-info-card h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vki-info-card h4 i {
    color: var(--light-green);
}

.vki-form .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.vki-form .form-label i {
    color: var(--light-green);
}

.vki-calc-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 700;
}

.vki-result {
    margin-top: 25px;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    animation: slideInUp 0.5s ease;
}

.vki-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vki-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.vki-unit {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

.vki-category {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vki-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* VKI Categories */
.vki-result.vki-underweight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
}

.vki-result.vki-normal {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

.vki-result.vki-overweight {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
}

.vki-result.vki-obese1 {
    background: linear-gradient(135deg, #ffe5e5 0%, #ffcccb 100%);
    color: #c62828;
}

.vki-result.vki-obese2 {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    color: #ad1457;
}

.vki-result.vki-obese3 {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #6a1b9a;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vki-formula {
    background: rgba(255, 255, 255, 0.5);
    padding: 18px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(45, 106, 79, 0.15);
}

.vki-formula h4 {
    color: var(--primary-green);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.formula-box {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    overflow-x: auto;
}

.formula-box span {
    color: var(--primary-green);
    font-weight: 700;
}

.vki-table {
    margin-top: 15px;
}

.vki-table-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.vki-table-row:hover {
    transform: translateX(3px);
}

.vki-table-row .range {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 700;
}

.vki-table-row .label {
    font-size: 13px;
}

.vki-table-row.vki-underweight {
    background: #e3f2fd;
    color: #1565c0;
}

.vki-table-row.vki-normal {
    background: #e8f5e9;
    color: #2e7d32;
}

.vki-table-row.vki-overweight {
    background: #fff3e0;
    color: #e65100;
}

.vki-table-row.vki-obese1 {
    background: #ffebee;
    color: #c62828;
}

.vki-table-row.vki-obese2 {
    background: #fce4ec;
    color: #ad1457;
}

.vki-table-row.vki-obese3 {
    background: #f3e5f5;
    color: #6a1b9a;
}

/* Tablet ve üzeri için VKI responsiveness */
@media (min-width: 768px) {
    .vki-hero {
        padding: 60px 0 40px;
    }

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

    .vki-hero-content h1 i {
        font-size: 2.3rem;
    }

    .vki-hero-content p {
        font-size: 1.2rem;
        padding: 0;
    }

    .vki-wrapper {
        gap: 30px;
    }

    .vki-calculator-card {
        padding: 30px;
    }

    .vki-info-card {
        padding: 30px;
    }

    .vki-calculator-card h2,
    .vki-info-card h3 {
        font-size: 1.8rem;
    }

    .vki-info-card h4 {
        font-size: 1.2rem;
    }

    .vki-calc-btn {
        padding: 15px;
        font-size: 18px;
    }

    .vki-result {
        padding: 30px;
        margin-top: 30px;
    }

    .vki-number {
        font-size: 4rem;
    }

    .vki-unit {
        font-size: 1.5rem;
    }

    .vki-category {
        font-size: 1.8rem;
    }

    .vki-description {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .vki-formula {
        padding: 20px;
    }

    .vki-formula h4 {
        font-size: 1.3rem;
    }

    .formula-box {
        font-size: 1.3rem;
        padding: 15px;
    }

    .vki-table-row {
        padding: 14px 18px;
        font-size: 15px;
    }

    .vki-table-row .range {
        font-size: 15px;
    }

    .vki-table-row .label {
        font-size: 15px;
    }
}

.vki-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px;
    margin-top: 20px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.vki-warning i {
    color: #ff9800;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.vki-warning p {
    margin: 0;
    font-size: 13px;
    color: #856404;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.hero-buttons-top {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.hero-vki-btn {
    width: auto;
    padding: 12px 35px;
}

/* Responsive VKI warning for tablet */
@media (min-width: 768px) {
    .vki-wrapper {
        grid-template-columns: 1fr 1fr;
    }

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

    .vki-warning {
        padding: 15px;
        gap: 12px;
    }

    .vki-warning i {
        font-size: 20px;
    }

    .vki-warning p {
        font-size: 15px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.bg-cream {
    background: var(--cream);
}

.bg-white {
    background: var(--white);
}