* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #fff;
    --dark-earth: #d4af37;
    --cream: #fff;
    --copper: #d4af37;
    --dark-olive: #556b2f;
    --dark: #000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-earth);
    overflow-x: hidden;
    background: #0f0f0f;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231a2332" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom; */
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    padding: 40px;
    width: 100%;
}

.hero-text {
    color: var(--cream);
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    color: var(--cream);
}

.hero-text p {
    font-size: 1.0rem;
    margin-top: 30px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
    color: var(--cream);
    opacity: 0.9;
}

.hero-image {
    position: relative;
    animation: fadeInUp 1s ease 0.4s both;
}

 .hero-image-container {
    width: 100%;
    max-width: 450px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 4px solid var(--copper);
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.hero-image-container {
    width: 100%;
    max-width: 450px;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.hero-image-container video {
    max-width: 450px;
    height: inherit;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-olive) 0%, var(--copper) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--cream);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--copper);
    color: var(--cream);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 115, 51, 0.4);
    background: #a66429;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 30px;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--copper);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: linear-gradient(135deg, var(--dark-olive) 0%, var(--navy-blue) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--cream);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--copper);
}

/* Clients Slider */
.clients {
    background: var(--dark);
    padding: 80px 20px;
}

.clients h2 {
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 50px;
    text-align: center;
}

.slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.client-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--copper);
}

.client-initial {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--dark-olive);
    margin: 0 auto 20px;
    border: 3px solid var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--cream);
}

.client-card h3 {
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.client-card span {
    color: var(--copper);
}

.client-card p {
    color: var(--dark-earth);
    font-style: italic;
    margin-top: 15px;
}

.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cream);
    opacity: 0.3;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--copper);
    opacity: 1;
}

/* Experience Section */
.experience {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.experience h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 50px;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--copper);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--copper);
    border: 4px solid var(--cream);
    box-shadow: 0 0 0 2px var(--copper);
}

.timeline-item h3 {
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.timeline-item .date {
    color: var(--dark-olive);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--dark-earth);
}

/* Certificates */
.certificates {
    background: var(--dark);
    padding: 80px 20px;
}

.certificates h2 {
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 50px;
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--copper);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 115, 51, 0.3);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cert-card h3 {
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.cert-card p {
    color: var(--dark-earth);
}

/* Contact Section */
.contact {
    background: var(--dark);
    color: var(--cream);
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid var(--dark-earth);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--copper);
}

.form-group input::placeholder {
    color: #999;
}

.submit-button {
    width: 100%;
    padding: 15px 40px;
    background: var(--copper);
    color: var(--cream);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 115, 51, 0.4);
    background: #a66429;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.3;
    animation: pulse 2s ease-out infinite;
}

/* WhatsApp Floating Button */
.instagram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #fefefe; /* Instagram rengi */
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.7);
}

.instagram-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #E1306C;
    opacity: 0.3;
    animation: pulse 1s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-container {
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.0rem;
    }

    .hero-image-container {
        max-width: 350px;
        height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
    .instagram-float {
        width: 55px;
        height: 55px;
        bottom: 90px;
        right: 20px;
        font-size: 30px;
    }
}

    /* Gallery Section */
.gallery {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 50px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    animation: zoomIn 0.3s ease;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.membership {
    padding: 80px 20px;
    background: #0f0f0f;
    color: #fff;
}

.membership-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.membership-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.membership-header p {
    color: #bbb;
    margin-bottom: 50px;
}

/* GRID YAPI */
.membership-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Webde 3 sütun */
    gap: 30px;
}

.membership-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    transition: 0.3s ease;
    border-top: 4px solid transparent;
}

.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.membership-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.membership-card p {
    color: #ccc;
    margin-bottom: 25px;
}

.membership-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.membership-btn:hover {
    background: #ff3c3c;
    color: #fff;
}

/* Paket Renkleri */
.silver { border-top-color: #c0c0c0; }
.gold { border-top-color: #d4af37; }
.platinum { border-top-color: #e5e4e2; }

/* 📱 Mobilde alt alta */
@media (max-width: 768px) {
    .membership-cards {
        grid-template-columns: 1fr; /* Tek sütun */
    }

    .membership-header h2 {
        font-size: 28px;
    }
}


.form-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.form-container iframe {
    width: 100%;
    border: 0;
}

/* Mobil için ekstra düzeltme */
@media (max-width: 768px) {
    .form-container iframe {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
}


.instagram-area {
    width: 100%;
    padding: 40px 0;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil */
@media (max-width: 576px) {
    .insta-grid {
        grid-template-columns: 1fr;
    }
}

/* Instagram embed kutusunu sabitle */
.instagram-media {
    min-height: 520px !important;
    max-height: 520px !important;
    overflow: hidden !important;
}

/* Caption (açıklama) kısmını gizle */
.instagram-media div[style*="padding"] + div {
    display: none !important;
}

.insta-item {
    display: flex;
    justify-content: center;
}

.instagram-area h2 {
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 50px;
    text-align: center;
}

.footer {
    background: var(--dark);
    color: #fff;
    padding-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.footer-map iframe {
    border-radius: 12px;
}

.footer-info h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #25D366;
}

.social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social a {
    background: #222;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.social a:hover {
    background: #25D366;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #000;
    margin-top: 30px;
    font-size: 14px;
}

/* MOBİL */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-map iframe {
        height: 250px;
    }
}

