@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #006994;
    /* Derin Deniz Mavisi */
    --primary-dark: #004d6e;
    --primary-light: #e0f2f7;
    --secondary-color: #FF8C00;
    /* Sıcak Turuncu */
    --secondary-light: #fff3e0;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Glassmorphism Header */
header {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    align-items: center;
    padding: 0 5%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-right: auto;
    z-index: 1001;
}

.logo img {
    height: 55px;
    margin-right: 12px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    /* Prevent wrapping */
}

.nav-links a {
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
    /* Prevent individual wrapping */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--secondary-color), #ffb74d);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    /* Prevent wrapping explicitly */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f57c00, var(--secondary-color));
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.4);
    color: white;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white !important;
    box-shadow: 0 10px 20px rgba(0, 105, 148, 0.2);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.6;
    z-index: -1;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img,
.hero-image video {
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    mask-image: radial-gradient(white, black);
    /* Fix for some browsers clipping borders */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    border-radius: 20px;
    /* Optional: smooth corners if video has sharp edges */
}

/* Background Blobs */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #e0f2f7, #ffffff);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: morph 8s ease-in-out infinite alternate;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Section Separation (Waves) */
.wave-separator {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -1px;
    /* Gap fix */
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 100px;
}

.wave-separator .shape-fill {
    fill: var(--white);
}

.wave-bottom {
    transform: rotate(180deg);
}

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 4rem 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features / Services */
.features {
    padding: 6rem 5%;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3.5rem;
    background: var(--primary-light);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Filter Buttons */
.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 105, 148, 0.2);
}

/* Products Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 4rem 5%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 280px;
    background-color: #f1f3f5;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 2rem;
}

.product-price {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Projects Gallery */
.gallery-grid {
    gap: 2rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    height: 350px;
    box-shadow: var(--shadow-md);
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(0, 105, 148, 0.9), rgba(0, 105, 148, 0.4));
    backdrop-filter: blur(3px);
}

/* Ultra Premium Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 0 5% 6rem;
    max-width: var(--container-width);
    margin: -5rem auto 0;
    position: relative;
    z-index: 10;
}

.contact-info {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 105, 148, 0.3);
    height: fit-content;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.contact-info>* {
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.info-item .info-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:hover .info-icon {
    background: var(--white);
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
    border: 5px solid white;
    transition: var(--transition);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 105, 148, 0.08);
    transform: translateY(-2px);
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    color: var(--text-color);
    margin-left: 0.5rem;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        margin-top: -2rem;
        gap: 3rem;
    }

    .contact-info {
        padding: 2.5rem;
    }
}

/* Timeline (About Page) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--secondary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

/* Footer (Advanced) */
footer {
    background: linear-gradient(135deg, #004d6e 0%, #002b3d 100%);
    /* Deep Blue Gradient */
    color: #e2e8f0;
    padding: 6rem 5% 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 77, 110, 0.2);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: white;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-links li a {
    display: inline-block;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Hamburger Menu (hidden by default, shown on mobile) */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger .bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px 0;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        padding-top: 7rem;
        padding-bottom: 2rem;
        text-align: center;
        min-height: auto;
        gap: 1.5rem;
    }

    .hero::before {
        width: 300px;
        height: 300px;
        top: -10%;
        right: -15%;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-buttons .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-image {
        flex: none;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-image img,
    .hero-image video {
        max-height: 300px;
        width: 100%;
        object-fit: contain;
    }

    .blob {
        width: 250px;
        height: 250px;
    }

    /* Navigation - Mobil Menü */
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        transform: none;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: 100vh;
        padding: 6rem 2rem 3rem;
        box-shadow: var(--shadow-lg);
        gap: 1.5rem;
        align-items: center;
        justify-content: flex-start;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

    .logo {
        margin-right: 0;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 2rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    /* Stats */
    .stat-item h3 {
        font-size: 2rem;
    }

    /* Features Grid */
    .features {
        padding: 3rem 5%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2.5rem;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        padding: 2rem 5%;
    }

    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Wave Separator */
    .wave-separator svg {
        width: 100%;
        height: 50px;
    }

    /* Page Header (Alt sayfalar) */
    .page-header {
        padding: 7rem 5% 3rem;
        margin-bottom: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Timeline */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .left::after,
    .right::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }

    /* Shower Slider */
    .shower-slide {
        width: 280px;
        min-height: 250px;
        height: 40vh;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer {
        padding: 3rem 5% 2rem;
        margin-top: 3rem;
    }

    /* Copyright */
    .copyright {
        font-size: 0.85rem;
    }
}

/* Subpage Header (Gelişmiş Başlık) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 10rem 5% 6rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    border-radius: 0 0 50% 50% / 4%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--white) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Shower Cabin Slider (Duşakabin Kapı Efekti) */
.shower-slider-container {
    padding: 4rem 0;
    background: #1a1a1a;
    overflow: hidden;
    position: relative;
    margin-bottom: 4rem;
}

.shower-slider-track {
    display: flex;
    /* overflow-x: auto;  <-- JS ile kontrol edilecek */
    gap: 0;
    padding-bottom: 2rem;
    cursor: grab;
    width: max-content;
    /* İçerik kadar geniş */
    animation: scrollSlider 60s linear infinite;
    /* Otomatik kayma */
}

/* Mouse ile tutunca animasyon dursun */
.shower-slider-track:hover {
    animation-play-state: paused;
}

@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Yarısına kadar kayıp başa dönecek */
}

.shower-slider-track::-webkit-scrollbar {
    display: none;
}

.shower-slide {
    width: 600px;
    /* Sabit genişlik */
    flex-shrink: 0;
    height: 60vh;
    min-height: 400px;
    position: relative;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.5s ease;
}

/* ... existing glass styles ... */

/* New Project Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 0 5%;
    max-width: var(--container-width);
    margin: 3rem auto 6rem;
}

.project-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 700;
}

.project-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-meta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
}

.project-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--primary-dark);
}

.shower-slide-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.shower-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Glass Door Overlay */
.glass-door-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

/* Door Handle */
.door-handle {
    width: 8px;
    height: 120px;
    background: linear-gradient(to bottom, #ccc, #fff, #ccc);
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.shower-slide:hover .glass-door-overlay {
    backdrop-filter: blur(0px);
    background: rgba(0, 0, 0, 0.1);
}

.slide-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.shower-slide:hover .slide-info {
    opacity: 1;
    transform: translateY(0);
}

.slide-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .shower-slide {
        flex: 0 0 45vw;
        /* Desktop width */
    }

    .page-header h1 {
        font-size: 4.5rem;
    }
}

/* About Page Refinements */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 4rem 5%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-image {
    flex: 1;
    position: relative;
    max-width: 450px;
    /* Limit image width */
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.about-text {
    flex: 1.2;
}

.about-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.8;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mv-card.mission {
    border-color: var(--secondary-color);
}

.mv-card.vision {
    border-color: var(--primary-color);
}

.mv-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.mv-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .about-quote {
        border-left: none;
        border-top: 4px solid var(--secondary-color);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}