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

:root {
    --black: #000000;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --dark-gray: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.loader-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .loader-spinner {
        width: 60px;
        height: 60px;
    }

    .loader-logo {
        width: 120px;
        height: 120px;
    }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 0 !important;
    border-left: 1px solid rgba(212, 175, 55, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 0 !important;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
    min-height: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: inset 0 0 5px rgba(212, 175, 55, 0.1);
    border-radius: 0 !important;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border-color: rgba(212, 175, 55, 0.3);
    border-radius: 0 !important;
}

::-webkit-scrollbar-corner {
    background: #0f0f0f;
    border-radius: 0 !important;
}

/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #2a2a2a #0f0f0f;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.logo {
    position: relative;
    z-index: 2;
    order: 1;
}

@media (min-width: 901px) {
    .logo {
        position: relative;
        left: auto;
        transform: none;
        order: 0;
    }

    .nav-menu {
        order: 2;
    }
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--gold);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.dropdown:hover .dropdown-toggle svg,
.dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    text-transform: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.dropdown-menu a::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease;
}

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

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

/* Volume Control Button */
.volume-control {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.volume-control:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--white);
    transform: scale(1.1);
}

.volume-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    transition: color 0.3s ease;
}

.volume-control:hover .volume-icon {
    color: var(--white);
}

.volume-icon.volume-off {
    display: none;
}

.volume-control.muted .volume-icon.volume-on {
    display: none;
}

.volume-control.muted .volume-icon.volume-off {
    display: block !important;
}

/* Services Section */
.services {
    padding: 6rem 0 0 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.service-card {
    background: var(--black);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
    transition: opacity 0.6s ease, background 0.6s ease;
    pointer-events: none;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card:hover .service-image::after {
    opacity: 0;
}

.service-card:hover .service-image::before {
    opacity: 1;
}

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

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.service-content h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-left: 3px solid var(--gold);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transform: translateX(100%) scale(0.8);
        transform-origin: top right;
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            opacity 0.4s ease,
            backdrop-filter 0.5s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(6) {
        transition-delay: 0.3s;
    }

    .nav-menu>li>a {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-menu>li>a::before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.3s ease;
    }

    .nav-menu>li>a:hover::before {
        width: 1.5rem;
    }

    .nav-menu>li>a:hover {
        padding-left: 1rem;
        color: var(--gold);
    }

    .nav-menu a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transform: translateY(-10px);
        background: rgba(212, 175, 55, 0.1);
        border: none;
        border-radius: 8px;
        margin: 0.5rem 0 0 1rem;
        padding: 0;
        min-width: auto;
        width: calc(100% - 1rem);
        overflow: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, transform 0.3s ease, padding 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        transform: translateY(0);
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .nav-container .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-container .logo img {
        height: 50px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .logo img {
        height: 45px;
    }
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6rem 0 3rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact li svg {
    color: var(--gold);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

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

@media (max-width: 600px) {
    .footer {
        padding: 4rem 0 2rem;
    }

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

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

    .footer-copyright {
        order: 2;
    }

    .footer-social {
        order: 1;
    }
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    right: 1rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0rem;
    /*background-color: #D4AF37 !important;
    border: 2px solid #D4AF37 !important;*/
    padding: 0.8rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-btn-whatsapp {
    bottom: 5rem;
    background: #25D366;
}

    .floating-btn-whatsapp:hover {
        box-shadow: 0 8px 22px rgba(37, 211, 102, 0.6);
    }


.floating-btn-call {
    bottom: 1rem;
    background: #D4AF37;
}

    .floating-btn-call:hover {
        box-shadow: 0 8px 22px rgba(212, 175, 55, 0.6);
    }


.floating-btn-location {
    bottom: 9rem;
    background: #FF5722;
}

    .floating-btn-location:hover {
        box-shadow: 0 8px 22px rgba(255, 87, 34, 0.6);
    }



.floating-btn-instagram {
    bottom: 13rem; /* WhatsApp + Konum üstüne denk gelecek */
    background: linear-gradient( 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888 );
    border: none;
    color: #fff;
}

    .floating-btn-instagram:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
    }




.floating-btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-btn-icon svg {
    width: 100%;
    height: 100%;
}

.floating-btn-text {
    white-space: nowrap;
}

/* Floating Buttons Responsive */
@media (max-width: 768px) {
    .volume-control {
        left: 1rem;
    }

    .floating-btn {
        right: 1rem;
        padding: 1rem;
        font-size: 0.85rem;
    }

    .floating-btn-whatsapp {
        bottom: 5rem;
    }

    .floating-btn-call {
        bottom: 1rem;
    }

    .floating-btn-location {
        bottom: 9rem;
    }

    .floating-btn-instagram {
        bottom: 13rem;
    }

    .floating-btn-text {
        display: none;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-btn-icon {
        width: 24px;
        height: 24px;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('yuvammmm/assets/img/gallery/DSC04678.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.about-hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.about-hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.about-content {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

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

.about-image:hover img {
    transform: scale(1.1);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.feature-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.mission-content {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 3rem;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.5rem;
}

/* About Page Responsive */
@media (max-width: 1000px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-mission {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
        min-height: 300px;
    }

    .about-hero-title {
        font-size: 3rem;
    }

    .about-hero-subtitle {
        font-size: 1.4rem;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 300px;
    }

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

    .about-content {
        padding: 4rem 0;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('yuvammmm/assets/img/gallery/DSC04678.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.gallery-hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.gallery-hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.gallery-section {
    padding: 6rem 0 0 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
}

.gallery-section .container {
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.gallery-item {
    position: relative;
    width: 100%;
    min-height: 350px;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    border: none;
    background: var(--black);
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Load More Button */
.gallery-load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    width: 100%;
}

.gallery-load-more-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1rem 3rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-load-more-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-50%) scale(1.1);
}

/* Gallery Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .gallery-hero-title {
        font-size: 3rem;
    }

    .gallery-hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gallery-hero {
        height: 40vh;
        min-height: 300px;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('yuvammmm/assets/img/gallery/DSC04678.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.contact-hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.contact-hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.contact-section {
    padding: 6rem 0;
    background: var(--black);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-text a,
.contact-text p {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    padding: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    padding: 1rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.map-section {
    width: 100%;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Service Pages Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    overflow: hidden;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.service-hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    margin: 0;
}

.service-content-section {
    padding: 6rem 0;
    background: var(--black);
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}

.service-gallery {
    width: 100%;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.service-gallery-item {
    position: relative;
    width: 100%;
    min-height: 350px;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-gallery-item:hover img {
    transform: scale(1.15);
}

/* Service Pages Responsive */
@media (max-width: 1200px) {
    .service-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .service-hero {
        height: 40vh;
        min-height: 300px;
    }

    .service-hero-title {
        font-size: 3rem;
    }

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

    .service-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .service-hero {
        height: 35vh;
        min-height: 250px;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-content-section {
        padding: 4rem 0;
    }

    .service-description {
        font-size: 1rem;
    }
}

/* Contact Page Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-hero-title {
        font-size: 3rem;
    }

    .contact-hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        height: 40vh;
        min-height: 300px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .map-container {
        height: 300px;
    }
}





























/* Salon Hizmetlerimiz Section */
.salon-services {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

.salon-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.salon-service-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem 1.5rem;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: var(--gold);
    border-radius: 15px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .salon-service-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(212,175,55,0.25), transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .salon-service-item:hover::after {
        opacity: 1;
    }

    .salon-service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
        background: rgba(212, 175, 55, 0.1);
    }

/* Responsive */
@media (max-width: 900px) {
    .salon-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .salon-services-grid {
        grid-template-columns: 1fr;
    }

    .salon-service-item {
        font-size: 1.4rem;
        padding: 2rem 1rem;
    }
}


.salon-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.salon-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.salon-service-item span {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: var(--gold);
}

/* Hover Efektleri */
.salon-service-item:hover .salon-icon {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.15) rotate(5deg);
}



.salon-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s ease;
}

    .salon-icon svg {
        width: 36px;
        height: 36px;
    }

.salon-service-item span {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: var(--gold);
    text-align: center;
}

/* Hover */
.salon-service-item:hover .salon-icon {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-5px) scale(1.1);
}

























/* Salon Hizmetlerimiz - Yeni Layout */
.salon-services {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

.salon-services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Sol Görsel */
.salon-services-image {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

    .salon-services-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .salon-services-image:hover img {
        transform: scale(1.08);
    }

/* Sağ Liste */
.salon-services-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Tek Satır Hizmet */
.salon-service-row {
    padding: 1.2rem 1.5rem;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.06);
    font-family: 'Dancing Script', cursive;
    font-size: 1.7rem;
    color: var(--gold);
    transition: all 0.35s ease;
}

    .salon-service-row:hover {
        background: rgba(212, 175, 55, 0.15);
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    }

/* Mobil */
@media (max-width: 900px) {
    .salon-services-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .salon-services-image {
        height: 300px;
    }

    .salon-service-row {
        font-size: 1.5rem;
    }
}
