﻿/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet responsive for dome models */
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .model-item.large-item {
        grid-column: span 2;
        grid-row: span 2;
    }

    .model-item:nth-child(2) {
        grid-column: 3;
        grid-row: 1;
    }

    .model-item:nth-child(3) {
        grid-column: 3;
        grid-row: 2;
    }

    .model-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .model-item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }

    .model-item:nth-child(6) {
        grid-column: 3;
        grid-row: 3;
    }
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: 300;
}

    .section-title strong {
        font-weight: 700;
        color: #1e3a8a;
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

.product-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    text-align: center;
    color: white;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.product-btn {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .product-btn:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

/* Glamping Dome Models Section */
.dome-models-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); /* BU SAYI TUTALIM */
    position: relative;
    overflow: hidden;
}

    .dome-models-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('~/images/geometric-pattern.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.1;
        z-index: 1;
    }

    .dome-models-section .container {
        position: relative;
        z-index: 2;
    }

.models-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.models-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 300;
    margin: 0;
}

.models-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1e3a8a;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .models-btn:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.model-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .model-item:hover {
        transform: scale(1.02);
        z-index: 10;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.model-item:hover .model-image {
    transform: scale(1.1);
}

.model-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.model-item:hover .model-overlay {
    transform: translateY(0);
}

.model-info h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.model-info p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

.model-item:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.model-item:hover .model-image {
    transform: scale(1.1);
}

.model-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.model-item:hover .model-overlay {
    transform: translateY(0);
}

.model-info h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.model-info p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Why EveryWhere Section */
.why-everywhere-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); /* Yeşil yerine mavi */
    color: white;
    position: relative;
    overflow: hidden;
}

    .why-everywhere-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('~/images/forest-bg.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.1;
        z-index: 1;
    }

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-left {
    max-width: 500px;
}

.why-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: white;
}

.why-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.features-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1e3a8a;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .feature-icon:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

.why-right {
    text-align: right;
}

.quality-section {
    position: relative;
}

.quality-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .animate-on-scroll.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.product-card.animate-on-scroll {
    transform: translateY(50px) scale(0.9);
}

    .product-card.animate-on-scroll.animate-in {
        transform: translateY(0) scale(1);
    }

.feature-icon.animate-on-scroll {
    transform: scale(0);
}

    .feature-icon.animate-on-scroll.animate-in {
        transform: scale(1);
    }

.model-item.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

    .model-item.animate-on-scroll.animate-in {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background-color: #1e3a8a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo img {
        width: 40px;
        height: 40px;
    }

.logo-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo-subtext {
    color: #a8d4b8;
    font-size: 12px;
    margin-left: 5px;
}

/* Navigation Styles */
.main-nav {
    flex: 1;
    margin: 0 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

    .nav-link:hover {
        color: #a8d4b8;
    }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
}

.lang-link {
    color: #a8d4b8;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

    .lang-link.active,
    .lang-link:hover {
        color: white;
        background-color: rgba(255, 255, 255, 0.1);
    }

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

    .social-link:hover {
        color: #a8d4b8;
    }

/* Main Content */
.main-content {
    min-height: calc(100vh - 80px);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .slide.active {
        opacity: 1;
    }

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.slide-text {
    text-align: center;
    color: white;
    z-index: 2;
}

.slide-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.slide-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1e3a8a;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: none;
    animation: fadeInUp 1s ease-out 0.3s both;
}

    .slide-button:hover {
        background-color: #3d6b4a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

/* Map Section */
.map-section {
    background-color: #f8f9fa;
    padding: 0;
    margin-top: 0;
}

.map-container {
    position: relative;
}

.map-location {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.location-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 58, 138, 0.9);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
    filter: hue-rotate(20deg) saturate(0.8);
}

    .map-frame iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(0.2) sepia(0.1);
    }

/* Map Footer */
.map-footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); /* Yeşil yerine mavi */
    color: white;
    padding: 40px 0 20px;
}

.map-footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .company-logo img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

.company-info {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.company-tagline {
    font-size: 14px;
    color: #a8d4b8;
    margin-top: 2px;
}

.company-details {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.detail-column {
    text-align: left;
}

    .detail-column h4 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #1e3a8a;
    }

    .detail-column p {
        margin: 5px 0;
        font-size: 14px;
        color: #e0e0e0;
        line-height: 1.4;
    }

.social-icons-map {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon-map {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon-map.whatsapp {
        background-color: #25d366;
        color: white;
    }

    .social-icon-map.instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        color: white;
    }

    .social-icon-map.linkedin {
        background-color: #0077b5;
        color: white;
    }

    .social-icon-map.youtube {
        background-color: #ff0000;
        color: white;
    }

    .social-icon-map:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

    .copyright p {
        font-size: 12px;
        color: #a8d4b8;
        margin: 0;
        line-height: 1.5;
    }

.slide-button i {
    font-size: 14px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

    .slider-nav:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1.1);
    }

.prev-slide {
    left: 30px;
    border-radius: 0 5px 5px 0;
}

.next-slide {
    right: 30px;
    border-radius: 5px 0 0 5px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active,
    .dot:hover {
        background: white;
        border-color: white;
    }

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); /* Yeşil yerine mavi */
    color: white;
    padding: 60px 0 30px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-section {
    position: relative;
}

/* Contact Section */
.footer-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.footer-divider {
    width: 60px;
    height: 3px;
    background-color: #1e3a8a;
    margin: 0 auto 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

    .contact-item i {
        font-size: 20px;
        color: #1e3a8a;
        margin-top: 5px;
        min-width: 20px;
    }

.contact-details p {
    margin: 0;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Contact Form */
.contact-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #e0e0e0;
        text-transform: uppercase;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        color: white;
        font-size: 14px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e3a8a;
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

.submit-btn {
    background-color: #1e3a8a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #3d6b4a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-section,
.office-section {
    text-align: center;
}

.social-title,
.office-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: white;
}

.social-links-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link-footer.whatsapp {
        background-color: #25d366;
        color: white;
    }

    .social-link-footer.instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        color: white;
    }

    .social-link-footer.linkedin {
        background-color: #0077b5;
        color: white;
    }

    .social-link-footer.youtube {
        background-color: #ff0000;
        color: white;
    }

    .social-link-footer:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        margin: 0;
    }

    .nav-list {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .header-actions {
        order: -1;
    }

    /* Hero Slider Mobile */
    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .slide-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .slider-nav {
        font-size: 18px;
        padding: 10px 15px;
    }

    .prev-slide {
        left: 15px;
    }

    .next-slide {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Products Section Mobile */
    .products-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        height: 300px;
    }

    /* Why EveryWhere Mobile */
    .why-everywhere-section {
        padding: 60px 0;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .why-title {
        font-size: 2rem;
    }

    .why-description {
        font-size: 1rem;
    }

    .features-icons {
        justify-content: center;
    }

    .quality-title {
        font-size: 2.5rem;
    }

    .why-right {
        text-align: center;
    }

    /* Dome Models Mobile */
    .dome-models-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); /* BU DEĞİŞTİRİLECEK */
        position: relative;
        overflow: hidden;
    }

    .models-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 40px;
    }

    .models-title {
        font-size: 2rem;
    }

    .models-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
        gap: 15px;
    }

    .model-item.large-item {
        grid-column: span 1;
        grid-row: span 1;
    }

    .model-item:nth-child(n) {
        grid-column: 1;
        grid-row: auto;
        height: auto;
    }

    .model-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    /* Map Section Mobile */
    .map-location {
        height: 250px;
    }

    .location-label {
        font-size: 16px;
        padding: 8px 20px;
    }

    .map-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .company-logo {
        justify-content: center;
    }

    .company-details {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .detail-column {
        text-align: center;
        min-width: 200px;
    }

    .social-icons-map {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .slider-nav {
        font-size: 16px;
        padding: 8px 12px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .why-title {
        font-size: 1.8rem;
    }

    .quality-title {
        font-size: 2rem;
    }

    .products-grid {
        gap: 15px;
    }

    .product-card {
        height: 250px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
/* Glamping Dome Models Section - TEMİZLENMİŞ VERSİYON */
.dome-models-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); /* Bu farklı renk kullanıyor */
    position: relative;
    overflow: hidden;
}

    .dome-models-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('~/images/geometric-pattern.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.1;
        z-index: 1;
    }

    .dome-models-section .container {
        position: relative;
        z-index: 2;
    }

.models-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.models-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 300;
    margin: 0;
}

.models-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1e3a8a;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .models-btn:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

/* 3x2 GRID DÜZEN */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.model-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .model-item:hover {
        transform: scale(1.02);
        z-index: 10;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.model-item:hover .model-image {
    transform: scale(1.1);
}

.model-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.model-item:hover .model-overlay {
    transform: translateY(0);
}

.model-info h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.model-info p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .dome-models-section {
        padding: 60px 0;
    }

    .models-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 40px;
    }

    .models-title {
        font-size: 2rem;
    }

    .models-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 250px);
        gap: 15px;
    }

    .model-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 280px);
    }
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .project-item img {
        height: 180px !important;
    }
}
/* İletişim sayfası mobil düzeltmeleri */

/* Desktop grid yapısı */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .contact-content-grid {
        gap: 60px;
    }
}

/* Mobil responsive - tek sütun yapısı */
@media (max-width: 768px) {
    .contact-content-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* İletişim başlığı mobilde daha küçük */
    .contact-main-title {
        font-size: 2rem !important;
    }

    .contact-office-title {
        font-size: 1.5rem !important;
    }

    /* İletişim bilgileri mobilde ortalanmış */
    .contact-info-item {
        text-align: center !important;
        justify-content: center !important;
    }

    /* Form padding mobilde azaltılmış */
    .contact-form-container {
        padding: 30px 20px !important;
    }

    /* Form input grid mobilde tek sütun */
    .contact-form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
    .contact-content-grid {
        gap: 30px !important;
    }

    .contact-main-title {
        font-size: 1.8rem !important;
    }

    .contact-office-title {
        font-size: 1.3rem !important;
    }

    .contact-form-container {
        padding: 25px 15px !important;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Section */
.dome-models-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

    .dome-models-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('~/images/geometric-pattern.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.1;
        z-index: 1;
    }

    .dome-models-section .container {
        position: relative;
        z-index: 2;
    }

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-main-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.contact-divider {
    width: 100px;
    height: 4px;
    background: #1e3a8a;
    margin: 0 auto;
}

.contact-office-title {
    color: white;
    font-size: 2rem;
    font-weight: 400;
    margin-top: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Content Grid */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Contact Info */
.contact-info {
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    font-style: normal;
}

.contact-icon {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-icon i {
        font-size: 1.5rem;
        color: white;
    }

.contact-info h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

/* Right Side - Form */
.contact-form-container {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        color: white;
        font-weight: 500;
        margin-bottom: 8px;
        display: block;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        color: white;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e3a8a;
            background: rgba(255,255,255,0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .form-group select option {
            background: #1e3a8a;
            color: white;
        }

    .form-group textarea {
        resize: vertical;
    }

.submit-btn {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

    .submit-btn:hover {
        background: #1e40af;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .submit-btn i {
        margin-right: 8px;
    }

/* Hidden inputs */
.hidden-input {
    display: none;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .dome-models-section {
        padding: 40px 0;
    }

    .contact-content-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .contact-main-title {
        font-size: 2rem !important;
    }

    .contact-office-title {
        font-size: 1.5rem !important;
    }

    .contact-info-item {
        text-align: center !important;
        justify-content: center !important;
    }

    .contact-form-container {
        padding: 30px 20px !important;
    }

    .contact-form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .contact-content-grid {
        gap: 30px !important;
    }

    .contact-main-title {
        font-size: 1.8rem !important;
    }

    .contact-office-title {
        font-size: 1.3rem !important;
    }

    .contact-form-container {
        padding: 25px 15px !important;
    }

    .container {
        padding: 0 15px;
    }
}
/* ZORLA BEYAZ YAZI DÜZELTMESİ */

/* İletişim sayfası tüm yazıları beyaz */
.dome-models-section,
.dome-models-section * {
    color: white !important;
}

/* Specific elementler için beyaz renk */
.dome-models-section h1,
.dome-models-section h2, 
.dome-models-section h3,
.dome-models-section p,
.dome-models-section label,
.dome-models-section input,
.dome-models-section textarea,
.dome-models-section select,
.dome-models-section a {
    color: white !important;
}

/* Input field'ların içindeki yazılar */
input[type="text"],
input[type="email"], 
input[type="tel"],
textarea,
select {
    color: white !important;
    background: rgba(255,255,255,0.1) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
}

/* Placeholder yazıları */
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Select dropdown options */
select option {
    background-color: #1e3a8a !important;
    color: white !important;
}

/* Submit button */
.submit-btn {
    background: #1e3a8a !important;
    color: white !important;
    border: none !important;
}

/* Link'ler */
a {
    color: white !important;
    text-decoration: none !important;
}

a:hover {
    color: #e0e0e0 !important;
    text-decoration: underline !important;
}