/* ==========================================
   YENİ NESİL "FLOATING & BENTO" TASARIM (BORDO TEMA)
   ================================---------- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-behavior: smooth;
}

:root {
    --bg-page: #fafafa;
    --dark-hero: #2a0b12; /* Tok Bordo */
    --primary: #7d122b; /* Asil Bordo */
    --accent: #e11d48; /* Canlı Kırmızı Vurgu */
    --text-dark: #1a050b;
    --text-light: #64748b;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ==========================================
   YÜZEN KAPSÜL NAVBAR
   ================================---------- */
.navbar {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    position: fixed;
    top: 25px;
    left: 5%;
    width: 90%;
    height: 90px; 
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 65px; 
    width: auto;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.05));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Masaüstü Menü Kapsayıcısı */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover { 
    color: var(--accent); 
}

/* Mobil Sağ Kısım Kapsayıcısı (Dil Seçici ve Hamburger Yan Yana) */
.navbar-right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hamburger İkonu (Masaüstünde Gizli) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-hero);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline {
    background: var(--dark-hero);
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    border: none !important;
    font-weight: 600 !important;
    box-shadow: 0 10px 20px rgba(42, 11, 18, 0.2);
    transition: all 0.3s ease;
}

.btn-outline:hover { 
    background: var(--accent) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(225, 29, 72, 0.3);
}

/* ==========================================
   İMMERSIVE DARK HERO
   ================================---------- */
.hero {
    background: var(--dark-hero);
    background-image: radial-gradient(circle at 50% -20%, #7d122b 0%, transparent 60%);
    padding: 180px 5% 100px; 
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
}

.hero-content { 
    max-width: 800px;
}

.hero-content h1 { 
    font-size: 4rem; 
    line-height: 1.1; 
    margin-bottom: 25px; 
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content h1 span { 
    color: var(--accent);
}

.hero-content p { 
    font-size: 1.25rem; 
    color: #cbd5e1; 
}

/* ==========================================
   YENİ KURUMSAL TEKLİF ALMA BÖLÜMÜ
   ================================---------- */
.quote-section {
    background: #fcfcfc;
    padding: 80px 5%;
    border-bottom: 1px solid #eaeaea;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.quote-features {
    flex: 1.1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
}

.q-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.q-feature-item i {
    font-size: 2.5rem;
    color: #b91c1c; 
}

.q-feature-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.q-feature-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.quote-form-wrapper {
    flex: 0.9;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-radius: 8px; 
}

.quote-form-wrapper h3 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 25px;
    font-weight: 700;
}

#teklifFormu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#teklifFormu input[type="text"],
#teklifFormu input[type="email"],
#teklifFormu input[type="tel"],
#teklifFormu select,
#teklifFormu textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f4f5f7;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    font-family: inherit;
    transition: 0.3s;
}

#teklifFormu input::placeholder,
#teklifFormu textarea::placeholder {
    color: #999;
}

#teklifFormu input:focus,
#teklifFormu select:focus,
#teklifFormu textarea:focus {
    border-color: #b91c1c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

#teklifFormu select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path fill="%23666" d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
}

#teklifFormu textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================
   YENİ: SÜRÜKLE-BIRAK DOSYA ALANI
   ================================---------- */
.drag-drop-area {
    position: relative;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 35px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.drag-drop-area:hover, .drag-drop-area.dragover {
    background: #fff1f2;
    border-color: var(--accent);
}

.drag-drop-area i {
    font-size: 2.8rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.drag-drop-area:hover i {
    transform: translateY(-5px);
    color: var(--accent);
}

.drag-drop-area .file-name {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.drag-drop-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.btn-primary {
    background: #b91c1c;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-primary:hover {
    background: #9f1239;
}

/* ==========================================
   BENTO GRID HİZMETLER ALANI
   ================================---------- */
.services { 
    padding: 120px 5% 80px; 
    background: var(--bg-page);
}

.services h2 { 
    text-align: center;
    color: var(--dark-hero); 
    font-size: 3rem; 
    margin-bottom: 60px; 
    font-weight: 700;
}

.service-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
}

.service-card {
    background: #ffffff; 
    padding: 40px 30px; 
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.4s ease; 
    cursor: pointer;
}

.service-card i { 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 20px; 
    transition: 0.3s;
}

.service-card h4 { 
    font-size: 1.4rem; 
    margin-bottom: 15px; 
    color: var(--dark-hero); 
    transition: 0.3s;
}

.service-card p { 
    color: var(--text-light); 
    line-height: 1.6;
    transition: 0.3s;
}

.service-card:hover { 
    background: var(--primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(125, 18, 43, 0.2);
}

.service-card:hover i,
.service-card:hover h4,
.service-card:hover p {
    color: #ffffff !important;
}

/* ==========================================
   YENİ: S.S.S. AKORDEON (FAQ)
   ================================---------- */
.faq-section {
    padding: 80px 5%;
    background: var(--bg-page);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(125, 18, 43, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-hero);
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
    font-family: inherit;
}

.faq-question:hover { color: var(--accent); }

.faq-question i {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==========================================
   YÜZEN WHATSAPP BUTONU
   ================================---------- */
.whatsapp-float {
    position: fixed; 
    bottom: 40px; 
    right: 40px;
    background-color: #25d366; 
    color: #FFF; 
    border-radius: 50px;
    text-align: center; 
    font-size: 35px; 
    width: 65px; 
    height: 65px;
    line-height: 65px; 
    z-index: 100; 
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s; 
}
.whatsapp-float:hover { 
    transform: scale(1.15) rotate(10deg); 
}

/* ==========================================
   YAPAY ZEKA ASİSTANI (AI CHAT WIDGET) TASARIMI
   ================================---------- */
.ai-chat-widget {
    position: fixed;
    bottom: 40px;
    right: 120px;
    z-index: 100;
    font-family: 'Poppins', sans-serif;
}

.ai-chat-toggle {
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    width: 65px;
    height: 65px;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(125, 18, 43, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ai-chat-toggle:hover {
    transform: scale(1.1) rotate(-10deg);
    background-color: var(--accent);
}

.ai-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 480px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
}

.ai-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ai-chat-header {
    background: var(--dark-hero);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-header-info i {
    font-size: 24px;
    color: var(--accent);
}

.ai-header-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.ai-header-info span {
    font-size: 0.75rem;
    color: #cbd5e1;
}

.ai-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.ai-chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
}

.ai-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ai-message.bot {
    background: #ffffff;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid #e2e8f0;
}

.ai-message.user {
    background: var(--primary);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.ai-chat-footer {
    padding: 15px;
    background: #ffffff;
    display: flex;
    gap: 10px;
    border-top: 1px solid #e2e8f0;
}

.ai-chat-footer input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 25px;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
}

.ai-chat-footer input:focus {
    border-color: var(--primary);
}

.ai-chat-footer button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.ai-chat-footer button:hover {
    background: var(--accent);
}

/* ==========================================
   GÖRKEMLİ FOOTER TASARIMI
   ================================---------- */
.footer {
    background: var(--dark-hero);
    background-image: radial-gradient(circle at 100% 100%, #7d122b 0%, transparent 50%);
    color: #f1f5f9;
    padding: 100px 5% 20px;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-logo-wrapper {
    background: rgba(255, 255, 255, 0.95);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 100px;
    margin-bottom: 25px;
}

.footer-logo-wrapper img {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo-wrapper:hover img {
    transform: scale(1.05);
}

.brand-col p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 0.95rem;
    padding-right: 20px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 5px;
}

.footer-col ul {
    list-style: none;
}

.contact-col ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-col ul li i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.contact-col ul li a:hover {
    color: var(--accent);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #94a3b8;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 10px;
    font-size: 0.95rem;
}

.hours-list li.closed {
    color: #ef4444; 
    font-weight: 600;
    border-bottom: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #64748b;
    font-size: 0.9rem;
}

/* ==========================================
   DİLLER BANDI (INFINITE MARQUEE)
   ================================---------- */
.languages-section {
    padding: 80px 0;
    background: #ffffff; 
    overflow: hidden;
}

.languages-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-hero);
    margin-bottom: 50px;
    font-weight: 700;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    content: "";
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.marquee-container {
    display: inline-block;
    animation: marqueeScroll 25s linear infinite; 
}

.marquee-container:hover {
    animation-play-state: paused;
}

.language-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-page);
    padding: 16px 35px;
    border-radius: 100px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-hero);
    border: 1px solid #e2e8f0;
    margin: 0 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    cursor: default;
}

.language-badge:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(125, 18, 43, 0.2);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* ==========================================
   DİL SEÇİCİ (DROPDOWN) - TIKLAMA TABANLI GÜNCELLENDİ
   ================================---------- */
.lang-menu {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.selected-lang {
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 50px;
    background: #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.selected-lang i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.lang-menu.active .selected-lang {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.lang-menu.active .selected-lang i {
    transform: rotate(180deg);
}

.lang-menu ul {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    list-style: none;
    width: 170px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px;
    z-index: 100;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.lang-menu.active ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-menu ul li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: 0.3s;
    font-size: 0.95rem;
}

.lang-menu ul li a:hover {
    background: #fff1f2; 
    color: var(--accent);
    padding-left: 20px; 
}

/* ==========================================
   HAKKIMIZDA BÖLÜMÜ (MODERN BENTO LAYOUT)
   ================================---------- */
.about-section {
    padding: 120px 5%;
    background: #ffffff;
}

.about-container {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 70px;
}

.about-text {
    flex: 1.1;
}

.section-subtitle {
    color: var(--accent);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 3.2rem;
    color: var(--dark-hero);
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: #f8fafc;
    padding: 25px 20px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    flex: 1;
    transition: all 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(125, 18, 43, 0.08);
    background: #ffffff;
}

.stat-box h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-box span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-image {
    flex: 0.9;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 480px; 
    object-fit: cover; 
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* ==========================================
   MOBİL UYUMLULUK VE HAMBURGER MENÜ
   ================================---------- */
@media (max-width: 900px) {
    .navbar {
        width: 95%;
        left: 2.5%;
        padding: 0 20px;
    }
    
    .logo img {
        height: 35px !important; 
        transform: none; 
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

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

    .nav-links {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero { padding: 160px 5% 100px; }
    .hero-content h1 { font-size: 2.5rem; }

    .quote-container { flex-direction: column; }
    .quote-features { grid-template-columns: 1fr; gap: 30px; }
    .quote-form-wrapper { width: 100%; }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .section-title { font-size: 2.5rem; }
    .about-stats { flex-direction: column; }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-col ul li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-col ul li i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .languages-title { font-size: 2rem; }
    .marquee-wrapper::before,
    .marquee-wrapper::after { width: 50px; }
    .language-badge { padding: 12px 25px; font-size: 1rem; }
    
    .ai-chat-widget {
        right: 20px;
        bottom: 110px;
    }
    .ai-chat-box {
        width: 300px;
        right: 0;
    }
}