:root {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color: #333;
    background-color: #ffffff;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

button {
    font-family: inherit;
}
.text-center {
    text-align: center;
}
.text-primary {
    color: #6CCFF3;
}
.text-secondary {
    color: #bbb;
}
input, textarea, select {
    font-family: inherit;
}

.container-fluid {
    width: 100%;
}

.bg-primary {
    background-color: #6CCFF3;
}

.bg-secondary {
    background-color: #bbb;
}
.my-5 {
    margin: 1rem 0;
}
.py-5 {
    padding: 1rem 0;
}
.py-10 {
    padding: 2rem 0;
}
#root {
    width: 100%;
    margin: 0;
    padding: 0;
}
.y10{
    height:10px;
}
.y20{
    height:20px;
}
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-container {
    display: flex;
    justify-content: center;
}

    .btn-container .btn {
        display: inline-block;
        width: auto;
        padding: 1rem 2rem;
        background-color: #6CCFF3;
        color: white;
        margin-top: 10px;
        border: 3px solid white;
        font-size: 1.5rem;
        border-radius: 25px;
    }

        .btn-container .btn:hover {
            border: 3px solid #6CCFF3;
            color: #6CCFF3;
            background-color: white;
        }

.btn-primary {
    background-color: #1a73e8;
    color: white;
}

    .btn-primary:hover {
        background-color: #1557b0;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(26, 115, 232, 0.3);
    }

.btn-secondary {
    background-color: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}

    .btn-secondary:hover {
        background-color: #f0f7ff;
        transform: translateY(-2px);
    }

.page-title{
    padding : .4rem;
    margin : 0;
}
.page-title-primary {
    color: #6CCFF3;
    background-color: #F56B22;
    border : 3px solid #6CCFF3;
}
    .page-title-primary:hover {
        color: #F56B22;
        background-color: #6CCFF3;
        border: 3px solid #F56B22;
    }
.page-title-secondary {
    background-color: #6CCFF3;
    color: #F56B22;
    border: 3px solid #F56B22;
}
.page-title-secondary:hover {
    color: #6CCFF3;
    background-color: #F56B22;
    border: 3px solid #6CCFF3;
}

/*.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 2rem;
}

.navbar-logo h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #1a73e8;
    font-weight: 700;
}

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

    .nav-menu li a {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
        padding: 0.5rem 0;
        text-decoration:none;
    }

        .nav-menu li a:hover {
            color: #1a73e8;
        }

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
    min-height: 600px;
}

.hero-content {
    flex: 1;
}

    .hero-content h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 1rem 0;
        line-height: 1.2;
    }

    .hero-content > p:nth-of-type(1) {
        font-size: 1.5rem;
        color: #1a73e8;
        margin: 0 0 1rem 0;
        font-weight: 600;
    }

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin: 1rem 0 2rem 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .hero-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-container {
    display: flex;
    justify-content: center;
}
    .btn-container .btn {
        display: inline-block;
        width: auto;
        padding: 1rem 2rem;
        background-color: #6CCFF3;
        color:white;
        margin-top:10px;
        border:3px solid white;
        font-size:1.5rem;
        border-radius : 25px;
    }
        .btn-container .btn:hover {
            border: 3px solid #6CCFF3;
            color: #6CCFF3;
            background-color : white;
        }

.btn-primary {
    background-color: #1a73e8;
    color: white;
}

    .btn-primary:hover {
        background-color: #1557b0;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(26, 115, 232, 0.3);
    }

.btn-secondary {
    background-color: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}

    .btn-secondary:hover {
        background-color: #f0f7ff;
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
        min-height: auto;
        gap: 2rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content > p:nth-of-type(1) {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem;
    }

    .navbar-logo h1 {
        font-size: 1.4rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        padding: 2rem 1rem;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

        .nav-menu.active {
            max-height: 400px;
        }

        .nav-menu li button {
            font-size: 1.1rem;
            width: 100%;
            text-align: left;
            padding: 0.75rem;
        }
}


.services {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    align-items:center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 1rem 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #1a73e8;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .services {
        padding: 2rem 1rem;
    }

        .services h2 {
            font-size: 2rem;
        }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-subtitle {
        margin-bottom: 2rem;
    }
}

.portfolio {
    padding: 4rem 2rem;
    background-color: white;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 1rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.portfolio-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .portfolio-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 115, 232, 0.8);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.category-badge {
    background-color: white;
    color: #1a73e8;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.portfolio-content {
    padding: 1.5rem;
}

    .portfolio-content h3 {
        font-size: 1.2rem;
        color: #1a1a1a;
        margin: 0 0 0.5rem 0;
    }

    .portfolio-content p {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .portfolio {
        padding: 2rem 1rem;
    }

        .portfolio h2 {
            font-size: 2rem;
        }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .portfolio-image {
        height: 200px;
    }
}
.appointment {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.appointment-container {
    max-width: 800px;
    margin: 0 auto;
}

.appointment h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 1rem 0;
}

.appointment-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #28a745;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #dc3545;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
        font-family: inherit;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #1a73e8;
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
        }

.appointment-form .form-group:last-of-type {
    margin-bottom: 2rem;
}

.appointment-form .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .appointment {
        padding: 2rem 1rem;
    }

        .appointment h2 {
            font-size: 2rem;
        }

    .appointment-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

.contact {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: white;
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1rem 0;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    color: white;
}

.contact-item p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

    .contact-item a:hover {
        opacity: 0.8;
        text-decoration: none;
    }

.social-media {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .social-media h3 {
        margin: 0 0 1.5rem 0;
        font-size: 1.3rem;
        color: white;
    }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background-color: white;
        color: #1a73e8;
        transform: translateY(-3px);
    }

@media (max-width: 768px) {
    .contact {
        padding: 2rem 1rem;
    }

        .contact h2 {
            font-size: 2rem;
        }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-item {
        padding: 1.5rem;
    }

    .social-media {
        padding: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: white;
    margin: 0 0 1rem 0;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: white;
    margin: 0 0 1rem 0;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

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

    .footer-section ul li {
        margin: 0.5rem 0;
    }

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-section a:hover {
        color: #1a73e8;
    }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #808080;
}

    .footer-bottom p {
        margin: 0;
    }

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

        .footer-section h3,
        .footer-section h4 {
            margin-bottom: 0.75rem;
        }
}
.global-alert-box {
    position: absolute;
    top: 20px;  ekranın üstünden 20px aşağı 
    right: 20px;  sağdan 20px içeride 
    z-index: 99999;
    max-width: 260px;  küçük kutu görünümü 
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0.95;
}

.price-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ddd;
    padding: 2rem;
    margin-bottom: 4rem;
}
.table tbody tr, .table thead tr {
    height: 60px;  istediğin değer 
}
@media (max-width: 768px) {

     Hamburger görünür 
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }

        .menu-toggle span {
            width: 26px;
            height: 3px;
            background-color: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

     Menü kapalı iken 
    .nav-menu {
        position: absolute;
        top: 80px;  Logo yüksekliğine göre ayarlandı 
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

         Menü açıkken 
        .nav-menu.active {
            max-height: 500px;  Daha geniş menüler için artırıldı 
            padding: 1rem 0;
        }

         Menü elemanları 
        .nav-menu li {
            width: 100%;
            list-style: none;
        }

            .nav-menu li a {
                display: block;
                width: 100%;
                text-align: center;
                padding: 1rem 0;
                font-size: 1.1rem;
                color: #333;
                border-bottom: 1px solid #eee;
                transition: background 0.2s ease;
            }

            .nav-menu li:last-child a {
                border-bottom: none;
            }

            .nav-menu li a:hover {
                background-color: #f5f5f5;
            }

     Navbar container hizalama 
    .navbar-container {
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

     Logo boyutu mobilde daha iyi görünür 
    .navbar-logo img {
        width: 70px;
        height: 70px;
    }
}*/
/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo img {
    width: 100px;
    height: 100px;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .nav-menu li a {
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        padding: 0.5rem 0;
        transition: color 0.3s ease;
    }

        .nav-menu li a:hover {
            color: #1a73e8;
        }

/* Hamburger Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

    .menu-toggle span {
        width: 26px;
        height: 3px;
        background-color: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

/* MOBILE NAVIGATION */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        gap: 0;
        transition: max-height 0.35s ease, padding 0.3s ease;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

        .nav-menu.active {
            max-height: 500px;
            padding: 1rem 0;
        }

        .nav-menu li a {
            width: 100%;
            text-align: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
            font-size: 1.1rem;
        }

        .nav-menu li:last-child a {
            border-bottom: none;
        }

    .navbar-container {
        padding: 1rem;
    }

    .navbar-logo img {
        width: 70px;
        height: 70px;
    }
}
/* HERO SECTION */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

    .hero-content h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .hero-content > p:nth-of-type(1) {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1a73e8;
        margin-bottom: 0.5rem;
    }

.hero-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .hero-image img {
        width: 100%;
        max-width: 450px;
        height: auto;
        border-radius: 8px;
    }

/* TABLET */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-content h2 {
        font-size: 2.4rem;
    }

    .hero-content > p:nth-of-type(1) {
        font-size: 1.3rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content > p:nth-of-type(1) {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

        .hero-buttons .btn {
            width: 100%;
            text-align: center;
        }

    .hero-image img {
        max-width: 300px;
    }
}

/* SERVICES SECTION */
.services {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* CARD */
.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #1a73e8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 260px;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* BUTTON AREA */
.btn-container {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

    .btn-container .btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        border-radius: 25px;
    }

/* TABLET */
@media (max-width: 992px) {
    .services {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .services {
        padding: 2rem 1rem;
    }

        .services h2 {
            font-size: 2rem;
        }

    .section-subtitle {
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .btn-container .btn {
        width: 100%;
        text-align: center;
    }
}
/* PORTFOLIO SECTION */
.portfolio {
    padding: 4rem 2rem;
    background-color: white;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

/* GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* CARD */
.portfolio-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .portfolio-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

/* IMAGE */
.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

/* OVERLAY */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 115, 232, 0.8);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.category-badge {
    background-color: white;
    color: #1a73e8;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* CONTENT */
.portfolio-content {
    padding: 1.5rem;
}

    .portfolio-content h3 {
        font-size: 1.2rem;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }

    .portfolio-content p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }

/* TABLET */
@media (max-width: 992px) {
    .portfolio {
        padding: 3rem 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .portfolio-image {
        height: 220px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .portfolio {
        padding: 2rem 1rem;
    }

        .portfolio h2 {
            font-size: 2rem;
        }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-content h3 {
        font-size: 1.1rem;
    }
}
/* APPOINTMENT SECTION */
.appointment {
    padding: 4rem 2rem;
}

.appointment-container {
    max-width: 800px;
    margin: 0 auto;
}

.appointment h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 2rem;
}

/* FORM */
.appointment-form {
    background-color: #09a;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* SUCCESS & ERROR */
.success-message,
.error-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* GRID */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* FORM ELEMENTS */
.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #1a73e8;
            box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
        }

/* BUTTON */
.appointment-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* TABLET */
@media (max-width: 992px) {
    .appointment {
        padding: 3rem 1.5rem;
    }

    .appointment-form {
        padding: 2rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .appointment {
        padding: 2rem 1rem;
    }

        .appointment h2 {
            font-size: 2rem;
        }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .appointment-form {
        padding: 1.5rem;
    }

        .appointment-form .btn {
            font-size: 1rem;
        }
}
/* CONTACT SECTION */
.contact {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: white;
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.contact .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

/* GRID */
.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

/* CARD */
.contact-item {
    background-color: rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

/* ICON */
.contact-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

/* TEXT */
.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-item p {
    margin: 0.4rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

    .contact-item a:hover {
        opacity: 0.8;
    }

/* TABLET */
@media (max-width: 992px) {
    .contact {
        padding: 3rem 1.5rem;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .contact {
        padding: 2rem 1rem;
    }

        .contact h2 {
            font-size: 2rem;
        }

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

    .contact-item {
        padding: 1.5rem;
    }

    .contact-icon {
        font-size: 2.2rem;
    }
}
/* FOOTER SECTION */
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* SECTION TITLES */
.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* TEXT */
.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* LIST */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-section ul li {
        margin: 0.5rem 0;
    }

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-section a:hover {
        color: #6CCFF3;
    }

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #808080;
}

/* TABLET */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 0.75rem;
    }

    .footer-section ul li {
        margin: 0.4rem 0;
    }
}
/* PRICE SECTION */
.price-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ddd;
    padding: 2rem;
    margin-bottom: 4rem;
    border-radius: 10px;
}

/* Table wrapper for mobile */
.table-responsive-custom {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Table styling */
.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Mobilde kaydırma için gerekli */
}

    .table thead th {
        background-color: #f5f5f5;
        font-weight: 700;
        text-align: center;
        padding: 1rem;
        border-bottom: 2px solid #ccc;
    }

    .table tbody td {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
    }

    /* Row height */
    .table tbody tr,
    .table thead tr {
        height: 60px;
    }

        /* Hover effect */
        .table tbody tr:hover {
            background-color: #f9f9f9;
        }

/* TABLET */
@media (max-width: 992px) {
    .price-container {
        padding: 1.5rem;
    }

    .table {
        min-width: 600px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .price-container {
        padding: 1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .table {
        min-width: 550px;
    }

        .table thead th,
        .table tbody td {
            padding: 0.75rem;
            font-size: 0.95rem;
        }
}
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

    .dropdown-menu li a:hover {
        background: #f0f0f0;
    }
