/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    overflow-x: hidden;
    background: #1a202c;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0;
}

.nav-logo span {
    font-size: 14px;
    color: #3b82f6;
    font-weight: 400;
}

.logo-img {
    height: 280px;
    width: auto;
    object-fit: contain;
    position: relative;
    top: 0;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #f59e0b;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #f59e0b;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger X animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1920') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 40, 80, 0.7), rgba(10, 60, 100, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    text-align: center;
    padding: 0 20px;
    white-space: nowrap;
    transform: translateX(-20px);
}

@media (max-width: 1400px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        white-space: normal;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.3rem;
        white-space: normal;
        transform: none;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Buttons - Referans sitedeki gibi */
.btn-primary,
.btn-secondary,
.btn-link,
.btn-view-all,
.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
}

.btn-primary:hover {
    background: transparent;
    border-color: #f59e0b;
    color: #f59e0b;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
}

.btn-secondary:hover {
    background: transparent;
    color: #f59e0b;
    border-color: #f59e0b;
    transform: none;
}

.btn-link {
    background: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
    padding: 10px 24px;
    font-size: 14px;
}

.btn-link:hover {
    background: transparent;
    color: #f59e0b;
    border-color: #f59e0b;
}

.btn-view-all {
    background: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
}

.btn-view-all:hover {
    background: transparent;
    color: #f59e0b;
    border-color: #f59e0b;
}

.btn-cta {
    background: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
    font-size: 16px;
    padding: 16px 40px;
}

.btn-cta:hover {
    background: transparent;
    color: #f59e0b;
    border-color: #f59e0b;
    transform: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.about-section,
.products-section,
.projects-section {
    padding: 40px 0;
}

.about-section {
    background: #1a202c;
}

.products-section {
    background: #1a202c;
}

.projects-section {
    background: #1a202c;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
}

.imalat-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

.galeri-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    min-width: 0;
}

.galeri-grid .project-card {
    min-width: 0;
}

.product-card,
.project-card {
    background: #2d3748;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover,
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image,
.project-image {
    width: 100%;
    height: 0;
    padding-bottom: 85%;
    position: relative;
    overflow: hidden;
}

.product-image img,
.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img,
.project-card:hover .project-image img {
    transform: scale(1.05);
}

.product-info,
.project-info {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3,
.project-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.product-info p,
.project-info p {
    color: #cbd5e1;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    flex-grow: 1;
}

.section-button {
    text-align: center;
}

/* Projects Section */


/* CTA Section */
/* CTA Section */
.cta-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #2d3748, #1f2937);
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.cta-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #fff;
    padding: 15px 0 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3b82f6;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3b82f6;
}

.footer-col ul li i {
    margin-right: 10px;
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #f59e0b;
}

@media (max-width: 1024px) {
    .footer-bottom p {
        white-space: normal;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: #1a202c !important;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding: 100px 0 20px;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu .nav-link {
        color: #fff !important;
        font-size: 18px;
        display: block;
        padding: 15px 20px;
        text-decoration: none;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #f59e0b !important;
        background: rgba(245, 158, 11, 0.1);
    }
    
    .language-switcher {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .hero-title {
        font-size: 1.3rem;
        white-space: normal;
        transform: none;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .imalat-grid,
    .galeri-grid {
        grid-template-columns: 1fr !important;
    }
    
    .page-header {
        height: 35vh;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-contact-inline {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-contact-inline span {
        font-size: 12px;
    }
    
    .footer-bottom p {
        font-size: 11px;
        white-space: normal;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 0.85rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-story {
        grid-template-columns: 1fr !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info h3,
    .project-info h3 {
        font-size: 1.1rem;
    }
    
    .product-info p,
    .project-info p {
        font-size: 0.9rem;
    }
}


/* Page Header */
.page-header {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/IMG_5936.JPG') center/cover no-repeat;
    z-index: -2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.85), rgba(31, 41, 55, 0.7));
    z-index: -1;
}

.page-header-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-family: 'Poppins', sans-serif;
}

/* Products Content */
.products-content,
.projects-content,
.about-content-page,
.contact-content {
    padding: 40px 0;
}

.product-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.category-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* Project Card Enhancements */
.project-category {
    display: inline-block;
    padding: 6px 16px;
    background: #f59e0b;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.project-details {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #4b5563;
}

.project-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 14px;
}

.project-details i {
    color: #f59e0b;
}

/* About Page */
.about-story {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
    text-align: justify;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.values-section,
.features-section {
    margin-bottom: 80px;
}

.values-section h2,
.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: #1f2937;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #2d3748;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.value-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-item {
    padding: 25px;
    background: #1f2937;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    background: #2d3748;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.feature-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.contact-info-section p,
.contact-form-section p {
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.contact-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #1f2937;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    background: #2d3748;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-card .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.contact-details p {
    color: #cbd5e1;
    margin-bottom: 5px;
    text-align: center;
}

.contact-details a {
    color: #f59e0b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #fff;
}

.social-links {
    text-align: center;
    padding: 30px;
    background: #1f2937;
    border-radius: 12px;
}

.social-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-icon:hover {
    background: #f59e0b;
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: #1f2937;
    padding: 40px;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #4b5563;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #374151;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Map Section */
.map-section {
    height: 400px;
    background: #1f2937;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.map-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
    color: #3b82f6;
}

.map-placeholder p {
    font-size: 1.2rem;
}


.hero-logo {
    width: 450px;
    max-width: 80%;
    height: auto;
    margin-bottom: 50px;
    animation: logoFadeIn 1.5s ease;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


/* Logo Splash Screen */
.logo-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: splashFadeOut 3s ease forwards;
}

.splash-logo {
    width: 500px;
    max-width: 80%;
    height: auto;
    animation: logoZoom 2s ease;
}

@keyframes logoZoom {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes splashFadeOut {
    0%, 80% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}


.footer-content-simple {
    padding: 10px 0;
    text-align: center;
}

.footer-contact-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    color: #fff;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .footer-contact-inline {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.footer-contact-inline span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-inline a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-inline a:hover {
    color: #f59e0b;
}

.footer-contact-inline i {
    color: #f59e0b;
}


.designer-credit a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.designer-credit a:hover {
    color: #f59e0b;
}


/* Before/After Section */
.before-after-section {
    padding: 60px 0;
    background: #2d3748;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.before-after-item {
    background: #1f2937;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.before-after-slider {
    position: relative;
    user-select: none;
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    cursor: ew-resize;
    border-radius: 12px;
}

.before-img,
.after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.after-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #f59e0b;
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.slider-line {
    width: 100%;
    height: 100%;
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: ew-resize;
}

.slider-button i {
    color: #fff;
    font-size: 14px;
}

.slider-labels {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 4;
    pointer-events: none;
}

.label-before,
.label-after {
    background: rgba(245, 158, 11, 0.9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.before-after-info {
    padding: 25px;
}

.before-after-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.before-after-info p {
    color: #cbd5e1;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-container {
        height: 400px;
    }
}


/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #f59e0b;
    border-color: #f59e0b;
}

.lang-btn.active {
    background: #f59e0b;
    border-color: #f59e0b;
}

/* ===================================
   BALSARE GALLERY SECTION
   =================================== */
.balsare-gallery-section {
    padding: 30px 0;
    background: #1a202c;
}

.balsare-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.balsare-gallery-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
    background: #2d3748;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 158, 11, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

.gallery-more-overlay {
    opacity: 0.95;
    background: rgba(245, 158, 11, 0.95);
}

.more-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
}

.more-content i {
    font-size: 3rem;
}

.more-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-toggle-btn {
    text-align: center;
    margin-top: 30px;
}

.gallery-toggle-btn .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-toggle-btn .btn-view-all:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: translate(-50%, -50%) scale(0.8)}
    to {transform: translate(-50%, -50%) scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f59e0b;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: #f59e0b;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s;
    user-select: none;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #fff;
    background-color: rgba(245, 158, 11, 0.3);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .balsare-gallery-preview,
    .balsare-gallery-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }
    
    .more-content i {
        font-size: 2rem;
    }
    
    .more-content span {
        font-size: 0.9rem;
    }
}


/* ===================================
   OCEANATHENA GALLERY SECTION
   =================================== */
.oceanathena-gallery-section {
    padding: 30px 0;
    background: #2d3748;
}

.oceanathena-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.oceanathena-gallery-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .oceanathena-gallery-preview,
    .oceanathena-gallery-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/* ===================================
   MİYA GALLERY SECTION
   =================================== */
.miya-gallery-section {
    padding: 30px 0;
    background: #1a202c;
}

.miya-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.miya-gallery-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .miya-gallery-preview,
    .miya-gallery-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/* ===================================
   KORU YAT GALLERY SECTION
   =================================== */
.koruyat-gallery-section {
    padding: 30px 0;
    background: #2d3748;
}

.koruyat-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.koruyat-gallery-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .koruyat-gallery-preview,
    .koruyat-gallery-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/* ===================================
   SARWELLE 2 GALLERY SECTION
   =================================== */
.sarwelle2-gallery-section {
    padding: 30px 0;
    background: #1a202c;
}

.sarwelle2-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.sarwelle2-gallery-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .sarwelle2-gallery-preview,
    .sarwelle2-gallery-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ===================================
   DADAYLI YAT GALLERY SECTION
   =================================== */
.dadayliyat-gallery-section {
    padding: 30px 0;
    background: #0f1419;
}

.dadayliyat-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.dadayliyat-gallery-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .dadayliyat-gallery-preview,
    .dadayliyat-gallery-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ===================================
   WORK BOAT 2 GALLERY SECTION
   =================================== */
.workboat2-gallery-section {
    padding: 30px 0;
    background: #1a1f2e;
}

.workboat2-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.workboat2-gallery-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .workboat2-gallery-preview,
    .workboat2-gallery-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ===================================
   PALAMAR BOT REVİZE GALLERY SECTION
   =================================== */
.palamarbot-gallery-section {
    padding: 30px 0;
    background: #141a24;
}

.palamarbot-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.palamarbot-gallery-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .palamarbot-gallery-preview,
    .palamarbot-gallery-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
