@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary: #0a2540;       /* Lacivert */
    --primary-light: #16305b; /* Koyu Lacivert */
    --secondary: #b8860b;     /* Geleneksel Altın Sarısı (Heritage Gold) */
    --accent: #b8860b;        /* Geleneksel Altın Sarısı (Heritage Gold) */
    --accent-light: #fefcf3;  
    --accent-hover: #966f0a;  
    --text-dark: #0a2540;
    --text-body: #334155;     
    --text-muted: #64748b;    
    --bg-main: #faf8f2;       /* Sıcak kağıt/nostalji krem rengi */
    --bg-card: #ffffff;
    --border: #cbd5e1;        /* slightly darker border for established look */
    --success: #059669;       
    --success-light: #d1fae5;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(10, 37, 64, 0.05), 0 4px 6px -4px rgba(10, 37, 64, 0.05);
    --shadow-premium: 0 25px 50px -12px rgba(10, 37, 64, 0.08);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 6px;            /* Sharper borders for a solid heritage firm look */
    --radius-sm: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .logo-main, .logo-sub, .slide-title, .section-title {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Geleneksel Acente Başlık Süslemeleri */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.section-title::before {
    content: '◆';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary);
    font-size: 0.8rem;
    padding: 0 10px;
    z-index: 1;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0.5rem auto 0;
    line-height: 1.6;
}

html, body {
    overflow-x: clip;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Utilities */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Info Bar */
.top-bar {
    background-color: #1c1c1c;
    color: white;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
}

.top-info {
    display: flex;
    gap: 1.5rem;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.top-info-item:hover {
    color: var(--accent);
}

.top-info-item svg {
    width: 14px;
    height: 14px;
    fill: var(--accent);
}

.top-links {
    display: flex;
    gap: 1.5rem;
}

.top-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.top-link:hover {
    color: var(--accent);
}

/* Header & Navbar */
header {
    background-color: rgba(28, 28, 28, 0.98); /* #1c1c1c ile uyumlu RGB */
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--primary);
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--primary);
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(28, 28, 28, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1rem 0;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.6rem 1.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    padding-left: 1.8rem;
}

.btn-contact {
    background-color: var(--secondary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.15);
}

.btn-contact:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: white !important;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 10px rgba(206, 30, 39, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 43, 127, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Premium Slider Section */
.slider-section {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: radial-gradient(circle at 75% 50%, #ffffff 0%, #f1f5f9 100%);
    border-bottom: 2px solid var(--border);
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.slide-content {
    position: relative;
    z-index: 5;
    color: var(--text-dark);
}

.slide-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    display: inline-block;
    animation: fadeInUp 0.5s ease forwards;
}

.slide-title {
    margin-bottom: 2rem;
    animation: fadeInUp 0.7s ease forwards;
    display: flex;
    flex-direction: column;
}

.slide-title .light-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #475569;
    letter-spacing: 1px;
    line-height: 1.1;
}

.slide-title .bold-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1.05;
}

.btn-slider-action {
    display: inline-block;
    background: #475569;
    color: white !important;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    animation: fadeInUp 0.9s ease forwards;
}

.btn-slider-action:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.3);
}

/* Modern Image Showcase Layout */
.slide-media {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: fadeInUp 0.8s ease forwards;
    width: 100%;
}

.polaroid-stack {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 320px;
}

.polaroid-card {
    position: absolute;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

.polaroid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.polaroid-card.stack-main {
    width: 290px;
    height: 220px;
    right: 0;
    bottom: 10px;
    z-index: 3;
    border: 6px solid white;
}

.polaroid-card.stack-main:hover {
    transform: scale(1.03);
}

.polaroid-card.stack-back-1 {
    width: 240px;
    height: 180px;
    left: 40px;
    bottom: 70px;
    z-index: 2;
    opacity: 0.75;
    border: 4px solid white;
}

.polaroid-card.stack-back-1:hover {
    opacity: 1;
    z-index: 5;
    transform: scale(1.03);
}

.polaroid-card.stack-back-2 {
    width: 200px;
    height: 150px;
    left: 100px;
    top: 10px;
    z-index: 1;
    opacity: 0.5;
    border: 4px solid white;
}

.polaroid-card.stack-back-2:hover {
    opacity: 1;
    z-index: 5;
    transform: scale(1.03);
}

.polaroid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 43, 127, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.85rem;
    text-align: center;
    padding: 8px 12px;
    font-weight: 600;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.05);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow-left { left: 2rem; }
.slider-arrow-right { right: 2rem; }

.slider-arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    transition: fill 0.3s;
}

.slider-arrow:hover svg {
    fill: white;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dot {
    width: 24px;
    height: 4px;
    background: rgba(15, 23, 42, 0.15);
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    width: 40px;
}

/* Quick Floating Offer Panel */
.floating-offer {
    margin-top: -4rem;
    position: relative;
    z-index: 20;
    padding-bottom: 2rem;
}

.floating-grid {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px -15px rgba(10, 37, 64, 0.12);
    border: 1px solid var(--border);
    padding: 1.8rem;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.2rem;
}

.floating-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.floating-item:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-8px) scale(1.03) rotate(-0.5deg);
    box-shadow: 0 15px 30px rgba(206, 30, 39, 0.25);
    border-color: var(--secondary);
}

.floating-item svg {
    width: 42px;
    height: 42px;
    fill: var(--secondary);
    transition: var(--transition);
}

.floating-item:hover svg {
    fill: white;
    transform: scale(1.1);
}

/* Offer System / Step-by-Step Forms */
.offer-section {
    padding: 5rem 0;
}

.offer-box {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px -15px rgba(10, 37, 64, 0.1);
    border: 1px solid var(--border);
    overflow: hidden;
    min-height: 520px;
}

.offer-header {
    background-color: rgba(28, 28, 28, 0.98);
    color: white;
    padding: 1.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.offer-header span {
    font-size: 0.85rem;
    background-color: var(--accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-weight: 700;
}

.offer-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 440px;
}

.offer-nav {
    background-color: #f8fafc;
    border-right: 1px solid var(--border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.offer-nav-btn {
    background: none;
    border: none;
    text-align: left;
    padding: 1rem 1.2rem;
    font-weight: 700;
    color: var(--text-body);
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.offer-nav-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: var(--transition);
}

.offer-nav-btn.active {
    background-color: var(--secondary);
    color: white;
}

.offer-nav-btn.active svg {
    fill: white;
}

.offer-nav-btn:not(.active):hover {
    background-color: #f1f5f9;
    color: var(--secondary);
}

.offer-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Step-by-Step form wizard style */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--border);
    z-index: 1;
}

.wizard-progress-bar {
    position: absolute;
    top: 15px;
    left: 0;
    height: 3px;
    background-color: var(--accent);
    z-index: 2;
    transition: var(--transition);
}

.progress-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--border);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.progress-node.active {
    border-color: var(--accent);
    color: var(--accent);
}

.progress-node.completed {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.btn-wizard-prev {
    background-color: #f1f5f9;
    color: var(--text-body);
    border: 1px solid var(--border);
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-wizard-prev:hover {
    background-color: #e2e8f0;
}

.btn-wizard-next {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-wizard-next:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
}

/* Service Detail Section */
.services-section {
    background-color: #f5f0e1;
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
}

.service-card:hover {
    background: white;
    transform: translateY(-10px) scale(1.02) rotate(0.5deg);
    box-shadow: 0 30px 60px -15px rgba(0, 43, 127, 0.12);
    border-color: rgba(206, 30, 39, 0.3);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(30, 58, 138, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-box svg {
    width: 30px;
    height: 30px;
    fill: var(--secondary);
}

.service-card:hover .service-icon-box {
    background-color: var(--accent-light);
}

.service-card:hover .service-icon-box svg {
    fill: var(--accent);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.service-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Partner Agencies Section */
.partners-section {
    padding: 5rem 0;
    text-align: center;
}

.partners-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    margin-top: 3.5rem;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 170px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-logo-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.partner-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-body);
    letter-spacing: -0.5px;
}

.partner-logo-card:hover .partner-name {
    color: var(--secondary);
}

.partner-logo-card img {
    height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--bg-card);
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: var(--bg-main);
    overflow: hidden;
    transition: var(--transition);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    transition: var(--transition);
}

.faq-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-body);
    font-size: 0.95rem;
}

.faq-item.active {
    background-color: white;
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-content {
    padding-bottom: 1.5rem;
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    fill: var(--accent);
}

/* Floating WhatsApp Support Window Widget */
.whatsapp-chat-box {
    position: fixed;
    bottom: 160px;
    right: 2rem;
    width: 340px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border);
    z-index: 999;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.chat-header {
    background-color: #075e54;
    color: white;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 2px solid white;
}

.chat-meta h5 {
    font-size: 0.95rem;
    font-weight: 700;
}

.chat-meta span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-body {
    padding: 1.5rem;
    background-color: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: contain;
    min-height: 120px;
}

.chat-bubble {
    background-color: white;
    padding: 0.8rem 1rem;
    border-radius: 0 10px 10px 10px;
    font-size: 0.85rem;
    color: var(--primary);
    max-width: 90%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.chat-footer {
    padding: 1rem 1.5rem;
    background-color: white;
    border-top: 1px solid var(--border);
}

.chat-btn {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.chat-btn:hover {
    background-color: #128c7e;
}

.chat-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Inner Page Styling */
.page-hero {
    background-color: var(--bg-main);
    color: var(--primary);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.page-breadcrumb {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.page-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.page-breadcrumb a:hover {
    color: white;
}

.page-body {
    padding: 6rem 0;
    background-color: white;
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
}

.page-main-content h2, .page-main-content h3 {
    color: var(--primary);
    margin: 2rem 0 1rem 0;
    font-weight: 800;
}

.page-main-content h2:first-of-type {
    margin-top: 0;
}

.page-main-content p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.page-main-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.page-main-content li {
    margin-bottom: 0.5rem;
    color: var(--text-body);
    font-size: 1.05rem;
}

/* Sidebar Styles */
.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 43, 127, 0.04);
}

.sidebar-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-link {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: white;
    color: var(--secondary);
    padding-left: 1.2rem;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
    .page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Form Controls & Inputs */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    height: 52px;
    padding: 0 1.2rem;
    border-radius: var(--radius-sm);
    border: 2px solid #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    background-color: #f8fafc;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--secondary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.08);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23475569'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 18px;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-body);
    margin-top: 1rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--secondary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Footer Section */
footer {
    background-color: rgba(28, 28, 28, 0.98);
    color: white;
    padding: 5rem 0 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.footer-about .logo {
    margin-bottom: 1.2rem;
}

.footer-about .logo-main {
    color: white;
}

.footer-about p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 340px;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
    color: white;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    margin-top: 0.2rem;
}

.footer-contact-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

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

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-170px * 11 - 3rem * 11)); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .floating-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .offer-body {
        grid-template-columns: 1fr;
    }
    
    .offer-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    
    .offer-nav-btn {
        text-align: center;
        justify-content: center;
        padding: 0.8rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .floating-offer {
        display: none !important;
    }
    
    .glowing-blob {
        display: none !important;
    }

    .top-bar {
        display: none;
    }
    
    header {
        width: 100%;
        max-width: 100%;
        top: 0;
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(28, 28, 28, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        align-items: stretch;
        box-shadow: var(--shadow-premium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        height: auto;
        display: block;
    }
    
    .dropdown-menu,
    .nav-item:hover .dropdown-menu,
    .nav-item.active-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background-color: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0.5rem 0 0 1rem;
    }
    
    .dropdown-menu {
        display: none;
    }
    
    .nav-item:hover .dropdown-menu,
    .nav-item.active-dropdown .dropdown-menu {
        display: block;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .slider-section {
        height: 420px;
    }
    
    .slide-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .slide-media {
        display: none;
    }
    
    .slide-title {
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .slide-title .light-title {
        font-size: 1.6rem;
    }
    
    .slide-title .bold-title {
        font-size: 2.2rem;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .floating-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .floating-item {
        padding: 1rem 0.5rem;
    }
    
    .offer-content {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Corporate Summary Section Layout */
.corporate-section {
    padding: 6rem 0;
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.corporate-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .corporate-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Decorative Glowing Blobs */
.glowing-blob {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(206, 30, 39, 0.06) 0%, rgba(0, 43, 127, 0.04) 50%, rgba(255,255,255,0) 100%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.blob-1 { top: 10%; left: -10%; }
.blob-2 { top: 40%; right: -15%; background: radial-gradient(circle, rgba(0, 43, 127, 0.06) 0%, rgba(206, 30, 39, 0.04) 60%, rgba(255,255,255,0) 100%); }
.blob-3 { bottom: 15%; left: 5%; }

/* SPA Route Transitions */
#app-content {
    opacity: 1;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

#app-content.loading {
    opacity: 0;
}



