:root {
            --gold: #D4AF37;
            --black: #111111;
            --white: #ffffff;
            --gray: #666666;
            --light: #f5f5f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--black);
            background: var(--white);
            line-height: 1.6;
        }

        h1,
        h2,
        h3 {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.2;
        }

        .container {
            width: min(1140px, 92%);
            margin: auto;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #fff;
            border-bottom: 1px solid #eee;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, .92);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            gap: 16px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--black);
            text-decoration: none;
        }

        .logo img {
            width: 72px;
            height: 72px;
            object-fit: contain;
        }

        .menu {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .menu a {
            text-decoration: none;
            color: var(--black);
            font-weight: 600;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 26px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            transition: .25s ease;
        }

        .btn-gold {
            background: var(--gold);
            color: #fff;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            opacity: .95;
        }

        .hero {
            min-height: 72vh;
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            align-items: center;
            gap: 48px;
            padding: 64px 0;
        }

        .hero h1 {
            font-size: clamp(2.3rem, 5vw, 4.5rem);
            margin-bottom: 18px;
        }

        .hero h1 span {
            color: var(--gold);
        }

        .hero p {
            color: #333;
            font-size: 1.08rem;
            margin-bottom: 28px;
            max-width: 620px;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 22px;
            object-fit: cover;
            box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
            min-height: 420px;
        }

        .badge {
            display: inline-block;
            background: #111;
            color: #fff;
            padding: 8px 14px;
            border-radius: 999px;
            font-size: .9rem;
            margin-bottom: 18px;
        }

        section {
            padding: 84px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 44px;
        }

        .section-title h2 {
            font-size: 2.1rem;
            margin-bottom: 10px;
        }

        .section-title p {
            color: var(--gray);
        }

        .services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .card {
            border: 1px solid #eee;
            border-radius: 18px;
            padding: 28px;
            transition: .25s ease;
            background: #fff;
        }

        .card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
            border-color: var(--gold);
        }


        .card .icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(212, 175, 55, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 18px;
        }

        .card h3 {
            margin-bottom: 12px;
            font-size: 1.15rem;
        }

        .about {
            background: var(--light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about img {
            width: 100%;
            border-radius: 20px;
            object-fit: cover;
            min-height: 320px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 34px;
        }

        .feature {
            background: #fff;
            border-radius: 16px;
            padding: 22px;
            text-align: center;
            border: 1px solid #eee;
        }

        .feature strong {
            display: block;
            margin-top: 10px;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .gallery-item {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
            transition: .25s ease;
        }

        .gallery-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
            background: #f8f8f8;
        }

        .gallery-caption {
            padding: 14px 16px;
            font-size: .95rem;
            font-weight: 600;
            color: #222;
        }

        @media(max-width:900px) {
            .gallery {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width:560px) {
            .gallery {
                grid-template-columns: 1fr;
            }
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        .contact-box {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 18px;
            padding: 28px;
        }

        .contact-item {
            margin-bottom: 18px;
        }

        .contact-item strong {
            display: block;
            margin-bottom: 4px;
        }

        iframe {
            width: 100%;
            min-height: 360px;
            border: 0;
            border-radius: 18px;
        }

        footer {
            background: #111;
            color: #fff;
            padding: 28px 0;
            margin-top: 40px;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-inner a {
            color: #fff;
            text-decoration: none;
        }

        .whatsapp {
            position: fixed;
            right: 18px;
            bottom: 18px;
            width: 62px;
            height: 62px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
            z-index: 999;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
        }

        @media (max-width:900px) {
            .menu-toggle {
                display: block;
            }

            .menu {
                position: absolute;
                top: 84px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 20px;
                display: none;
                border-bottom: 1px solid #eee;
            }

            .menu.active {
                display: flex;
            }

            .hero,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .services {
                grid-template-columns: 1fr 1fr;
            }

            .features {
                grid-template-columns: 1fr 1fr;
            }

            .gallery {
                grid-template-columns: 1fr 1fr;
            }

            .menu {
                display: none;
            }

            .hero {
                padding-top: 40px;
            }
        }

        @media (max-width:560px) {

            .services,
            .features,
            .gallery {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .btn {
                width: 100%;
            }
        }

        @media (max-width:900px) {

            /* Sağdaki arama butonunu gizle */
            .nav .btn-gold {
                display: none;
            }

            /* Header düzenini mobil için sıkıştır */
            .nav {
                padding: 12px 0;
            }

            /* Logo biraz küçülsün */
            .logo img {
                width: 56px;
                height: 56px;
            }

            .logo span {
                font-size: 1rem;
            }

            /* Hamburger sağa yaslansın */
            .menu-toggle {
                margin-left: auto;
            }
        }

        .mobile-call {
            background: #D4AF37;
            color: #fff !important;
            padding: 12px 16px;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
            margin-top: 10px;
        }