@font-face {
    font-family: "the-seasons";
    src: url("https://use.typekit.net/hmk6koa.css");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "the-seasons";
    src: url("https://use.typekit.net/hmk6koa.css");
    font-weight: 700;
    font-style: normal;
}

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #132232;
    --secondary-color: #1a2c3d;
    --accent-color: #3498db;
    --text-color: #333;
    --light-text: #fffaf8;
    --background-light: #fffaf8;
    --hover-light: #fffaf8;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* Header ve Navigasyon */
header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(19, 34, 50, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--light-text);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--light-text);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 40px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        height: 70vh;
        margin-top: 60px;
    }

    .video-background iframe {
        width: 100vw;
        height: 177.77vw; /* 9:16 aspect ratio for mobile */
        min-height: 100vh;
        min-width: 56.25vh;
    }

    .hero-content {
        background: rgba(19, 34, 50, 0.3);
        backdrop-filter: blur(5px);
        border-radius: 12px;
        margin: 1rem;
        padding: 1.5rem;
    }

    .logo img {
        height: 40px;
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(19, 34, 50, 0.9), rgba(19, 34, 50, 0.7));
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 34, 50, 0.7), rgba(19, 34, 50, 0.5));
    z-index: 1;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    border: none;
    filter: brightness(0.8);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.hero-content h1 {
    font-family: 'the-seasons', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
}

.cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 30px;
    text-decoration: none;
    color: var(--light-text);
    background: var(--primary-color);
    border: 2px solid var(--light-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.cta-button:hover {
    background: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    opacity: 0.9;
    transition: var(--transition);
    text-decoration: none;
    color: var(--light-text);
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    z-index: 10;
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
}

.hero-scroll i {
    font-size: 1rem;
    animation: bounce 2s infinite;
    color: var(--light-text);
}

.hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    color: var(--light-text);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        margin-top: 50px;
    }

    .hero-scroll {
        bottom: 2rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-scroll i {
        font-size: 0.9rem;
    }

    .hero-scroll span {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
    }
}

/* Proje Hakkında */
.about-project {
    padding: 3rem 2rem;
    background-color: var(--background-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Proje Detayları */
.project-details {
    padding: 2rem 2rem;
    background-color: var(--light-text);
}

.project-details h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-card {
    background: var(--hover-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: var(--hover-light);
}

.detail-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.detail-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

/* Proje Planları */
.plans {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.plans h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.plan-card p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.plan-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.plan-link:hover {
    background-color: var(--secondary-color);
}

.plan-link i {
    font-size: 1.2rem;
}

/* Proje Özellikleri */
.apartment-features {
    padding: 4rem 2rem;
    background-color: var(--light-text);
}

.apartment-features h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--primary-color);
    z-index: 2;
    font-weight: 500;
    line-height: 1.3;
}

/* Load More Button */
.load-more {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.load-more:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

/* Grid Düzenlemeleri */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.specs-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    gap: 1.5rem;
}

.specs-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.specs-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.specs-category h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--background-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 3.5rem;
    line-height: 1.4;
}

.specs-category h3 i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    min-width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.specs-category h3 span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.specs-item {
    margin: 0;
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.specs-item:last-child {
    margin-bottom: 0;
}

.specs-item h4 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.5rem;
    line-height: 1.4;
}

.specs-item h4 i {
    font-size: 1.1rem;
    min-width: 1.3rem;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.specs-item h4 span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.specs-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
}

.specs-item ul {
    list-style-type: none;
    padding-left: 1rem;
    margin: 0;
    flex: 1;
}

.specs-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-color);
}

.specs-item ul li:last-child {
    margin-bottom: 0;
}

.specs-item ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Son satırdaki öğeleri ortala */
.specs-category:nth-last-child(-n+3) {
    grid-column: span 1;
    justify-self: center;
}

.feature-item:last-child {
    grid-column: span 1;
    justify-self: center;
}

@media (max-width: 1200px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-category {
        min-height: auto;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .specs-category:nth-last-child(-n+3) {
        justify-self: stretch;
    }
    
    .feature-item:last-child {
        justify-self: stretch;
    }

    .specs-category h3 {
        font-size: 1.3rem;
        min-height: 3rem;
        gap: 0.5rem;
    }

    .specs-category h3 i {
        font-size: 1.2rem;
    }

    .specs-item {
        padding: 1rem;
        gap: 0.5rem;
    }

    .specs-item h4 {
        font-size: 1.1rem;
        min-height: 2.2rem;
        gap: 0.5rem;
    }

    .specs-item h4 i {
        font-size: 1rem;
    }

    .specs-item p, .specs-item ul li {
        font-size: 0.9rem;
    }

    .plans {
        padding: 3rem 1rem;
    }

    .plans-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-card h3 {
        font-size: 1.3rem;
    }

    .plan-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero {
        height: 80vh;
    }
}

/* Galeri */
.gallery {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    padding: 0 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.gallery-categories::-webkit-scrollbar {
    display: none;
}

.gallery-category {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: var(--hover-light);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: max-content;
}

.gallery-category:hover,
.gallery-category.active {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* İletişim */
.contact {
    padding: 4rem 5%;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-left: 1rem;
}

.contact-info p {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
    padding-left: 1rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
    padding-left: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-item:hover i {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.contact-item span {
    font-size: 1rem;
    color: var(--text-color);
}

.contact-form {
    padding: 20px;
    background: white;
}

.contact-form .welcome-message {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form .welcome-message h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group:last-of-type {
    margin-bottom: 25px;
}

.consent-text {
    font-size: 14px;
    line-height: 1.6;
    color: #1F2937;
    margin: 0;
    padding-top: 3px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.checkbox-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.2s ease;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    min-width: 20px;
    background-color: #fff;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-container:hover .checkmark {
    border-color: #3b82f6;
    background-color: #f8fafc;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.checkmark i {
    color: white;
    font-size: 12px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark i {
    opacity: 1;
    transform: scale(1);
}

.checkbox-container input[type="checkbox"]:focus ~ .checkmark {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.consent-text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.kvkk-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.kvkk-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Sticky Social Buttons */
.sticky-social {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.sticky-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--light-text);
}

.sticky-social a:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sticky-social img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.sticky-social a:hover img {
    transform: scale(1.1);
}

.whatsapp {
    background-color: #25D366;
}

.instagram {
    background-color: #E1306C;
}

.sahibinden {
    background-color: #FF6B00;
}

.sahibinden img {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .sticky-social {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }

    .sticky-social a {
        width: 45px;
        height: 45px;
    }

    .sticky-social img {
        width: 22px;
        height: 22px;
    }

    .sahibinden img {
        width: 24px;
        height: 24px;
    }
}

/* Chatbot Styles */
.chatbot-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    z-index: 999;
    transition: all 0.3s ease;
    overflow: hidden;
}

.chatbot-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chatbot-button i {
    font-size: 24px;
}

.chatbot-button-text {
    display: none;
}

/* Chatbot Container */
.chatbot-container {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 380px;
    height: 600px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chatbot-container.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Chatbot Header */
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-title i {
    font-size: 20px;
}

.chatbot-title h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.close-chatbot {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-chatbot:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.close-chatbot i {
    font-size: 18px;
}

/* Chatbot Messages */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #f8fafc;
}

/* Welcome Message */
.welcome-message {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.3s ease;
}

.welcome-message h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: var(--primary-color);
}

.welcome-message p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

/* Message Styles */
.message {
    display: flex;
    gap: 12px;
    max-width: 85%;
    animation: fadeInUp 0.3s ease;
}

.message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message.assistant {
    align-self: flex-start;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message.user .message-avatar {
    background-color: var(--primary-color);
    color: white;
}

.message-avatar i {
    font-size: 16px;
}

.message-content {
    background-color: #ffffff;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: calc(100% - 48px);
}

.message.user .message-content {
    background-color: var(--primary-color);
    color: white;
}

.message-content p {
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
}

/* Form Styles */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Submit Button */
.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Chatbot Input */
.chatbot-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background-color: #ffffff;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}

.chatbot-input input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: #ffffff;
}

.chatbot-input button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chatbot-input button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.chatbot-input button i {
    font-size: 18px;
}

/* Typing Animation */
.message.typing .message-content {
    display: flex;
    align-items: center;
    padding: 12px 18px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #94a3b8;
    animation: typingDot 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% { 
        transform: translateY(0);
    }
    30% { 
        transform: translateY(-4px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-container {
        right: 10px;
        left: 10px;
        bottom: 80px;
        width: auto;
        height: 80vh;
        max-height: 600px;
    }

    .chatbot-header {
        padding: 16px;
    }

    .chatbot-messages {
        padding: 16px;
    }

    .message-content {
        padding: 12px 16px;
    }

    .chatbot-input {
        padding: 16px;
    }

    .chatbot-input input {
        padding: 10px 14px;
    }

    .chatbot-input button {
        width: 40px;
        height: 40px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
}

.craft-creative-logo {
    opacity: 0.7;
    transition: var(--transition);
}

.craft-creative-logo:hover {
    opacity: 1;
}

.craft-creative-logo img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .craft-creative-logo img {
        width: 100px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Efektleri */
.detail-card:hover i,
.feature-item:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.gallery-item img {
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Scrollbar Stili */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: var(--transition);
    z-index: 2001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
    background-color: rgba(0,0,0,0.7);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .lightbox {
        padding: 0.5rem;
    }

    .lightbox-content {
        max-width: 100%;
        max-height: 100%;
        padding: 0.5rem;
    }

    .lightbox-content img {
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
}

/* Teknik Bilgiler */
.technical-specs {
    padding: 3rem 1rem;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.technical-specs h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.specs-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 auto;
}

.specs-category {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.specs-category h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--background-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: auto;
    line-height: 1.4;
}

.specs-category h3 i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.specs-item {
    margin: 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.specs-item h4 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: auto;
    line-height: 1.4;
}

.specs-item h4 i {
    font-size: 1rem;
    min-width: 1.3rem;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.specs-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.specs-item ul {
    list-style-type: none;
    padding-left: 1rem;
    margin: 0;
}

.specs-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
    color: var(--text-color);
}

.specs-item ul li:last-child {
    margin-bottom: 0;
}

.specs-item ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Remove slider navigation styles */
.slider-nav {
    display: none;
}

.slider-dots {
    display: none;
}

.slider-dot {
    display: none;
}

.slider-arrow {
    display: none;
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-category {
        min-height: auto;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .specs-category:nth-last-child(-n+3) {
        justify-self: stretch;
    }
    
    .feature-item:last-child {
        justify-self: stretch;
    }

    .specs-category h3 {
        font-size: 1.3rem;
        min-height: 3rem;
        gap: 0.5rem;
    }

    .specs-category h3 i {
        font-size: 1.2rem;
    }

    .specs-item {
        padding: 1rem;
        gap: 0.5rem;
    }

    .specs-item h4 {
        font-size: 1.1rem;
        min-height: 2.2rem;
        gap: 0.5rem;
    }

    .specs-item h4 i {
        font-size: 1rem;
    }

    .specs-item p, .specs-item ul li {
        font-size: 0.9rem;
    }

    .plans {
        padding: 3rem 1rem;
    }

    .plans-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-card h3 {
        font-size: 1.3rem;
    }

    .plan-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero {
        height: 80vh;
    }
}

/* Video Section */
.video-section {
    padding: 4rem 5%;
    background: var(--background-light);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.1;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.video-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Map Container */
.map-container {
    background: white;
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.map-container iframe {
    border: none;
    border-radius: var(--border-radius);
}

@media (max-width: 768px) {
    .video-section {
        padding: 3rem 5%;
    }

    .video-container h2 {
        font-size: 1.5rem;
    }

    .map-container {
        min-height: 300px;
    }
}

@font-face {
    font-family: 'The Seasons';
    src: url('https://use.typekit.net/af/123456/00000000000000007735a5b3/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-categories {
        justify-content: flex-start;
        padding: 0.5rem 1rem;
        margin: 0 -1rem 2rem;
    }

    .gallery-category {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Çalışkanlar Şirketler Grubu */
.about-company {
    padding: 2rem 2rem;
    background-color: var(--background-light);
}

.company-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.company-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.company-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.company-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.company-logo {
    max-width: 300px;
    margin: 0 auto;
}

.company-logo img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .about-company {
        padding: 3rem 1.5rem;
    }

    .company-content h2 {
        font-size: 2rem;
    }

    .company-text {
        margin-bottom: 2rem;
    }

    .company-logo {
        max-width: 250px;
    }
}

/* KVKK Page Styles */
.kvkk-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kvkk-container h1 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.kvkk-container h2 {
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.company-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.kvkk-content {
    line-height: 1.6;
}

.kvkk-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.kvkk-content li {
    margin-bottom: 8px;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group:last-of-type {
    margin-bottom: 25px;
}

.consent-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    padding-top: 2px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.kvkk-checkbox {
    margin: 20px 0;
}

.kvkk-checkbox label {
    display: inline;
    margin-left: 5px;
}

.submit-btn {
    background: #007bff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Question Slider */
.question-slider {
    position: relative;
    width: 100%;
    padding: 12px 40px;
    border-top: 1px solid #eef1f5;
    background-color: #f9fafc;
    overflow: hidden;
}

.question-slider-content {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.question-slider-content::-webkit-scrollbar {
    display: none;
}

.slider-question {
    background: #EBF5FF;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    border: 1px solid #E1EFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.slider-question:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #eef1f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.slider-nav:hover {
    background: #f8fafc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-nav.prev {
    left: 8px;
}

.slider-nav.next {
    right: 8px;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #f8fafc;
}

.message {
    display: flex;
    gap: 12px;
    max-width: 85%;
    animation: fadeInUp 0.3s ease;
}

.message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message.assistant {
    align-self: flex-start;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message.user .message-avatar {
    background-color: var(--primary-color);
    color: white;
}

.message-avatar i {
    font-size: 16px;
}

.message-content {
    background-color: #ffffff;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: calc(100% - 48px);
}

.message.user .message-content {
    background-color: var(--primary-color);
    color: white;
}

.message-content p {
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
}

@media (max-width: 768px) {
    .contact {
        padding: 2rem 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-details {
        gap: 1rem;
    }

    .contact-item {
        gap: 0.75rem;
    }

    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .contact-item span {
        font-size: 0.95rem;
    }

    .map-container {
        min-height: 300px;
    }
} 