@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #7B1F3A;
    --primary-dark: #5A1428;
    --primary-light: #9B3355;
    --secondary: #C5A55A;
    --secondary-dark: #A8893E;
    --secondary-light: #D4B96B;
    --gold-gradient: linear-gradient(135deg, #C5A55A, #D4B96B, #C5A55A);
    --burgundy-gradient: linear-gradient(135deg, #5A1428, #7B1F3A, #9B3355);
    --bg-light: #F8F5F0;
    --bg-white: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-gray: #6B6B6B;
    --text-light: #999999;
    --border: #E0D8CC;
    --shadow: 0 4px 20px rgba(123, 31, 58, 0.1);
    --shadow-lg: 0 10px 40px rgba(123, 31, 58, 0.15);
    --shadow-gold: 0 4px 20px rgba(197, 165, 90, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.navbar-logo img {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(123, 31, 58, 0.06);
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links .dropdown-toggle i.fa-chevron-down {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-links .dropdown:hover .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 260px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--secondary);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F5F0 0%, #FFF 50%, #F8F5F0 100%);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 31, 58, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 480px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(123, 31, 58, 0.15));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

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

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 90px 0;
}

.section-light {
    background: var(--bg-white);
}

.section-dark {
    background: var(--bg-light);
}

.section-burgundy {
    background: var(--burgundy-gradient);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-burgundy .section-header h2 {
    color: #fff;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-burgundy .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header .accent-line {
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 15px auto 0;
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 165, 90, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(123, 31, 58, 0.08), rgba(197, 165, 90, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.service-card .btn {
    width: 100%;
    justify-content: center;
}

/* ===================== FEATURES ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===================== STATS ===================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-card .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-card .label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-col.brand img {
    height: 45px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-col.brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===================== WHATSAPP FLOATING ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    font-size: 2rem;
    color: #fff;
    transition: var(--transition);
    position: relative;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .badge-724 {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 3px 6px;
    border-radius: 10px;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.whatsapp-float a::before {
    content: '7/24 WhatsApp Destek Hattı';
    position: absolute;
    right: 80px;
    background: #2D2D2D;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float a:hover::before {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ===================== PAGE HEADER ===================== */
.page-header {
    background: var(--burgundy-gradient);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.breadcrumb {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb a:hover {
    color: #fff;
}

/* ===================== FORMS ===================== */
.form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 50px 45px;
    box-shadow: var(--shadow-lg);
}

.form-container h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-container .form-desc {
    color: var(--text-gray);
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group label .required {
    color: #E53E3E;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123, 31, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group .error-msg {
    font-size: 0.8rem;
    color: #E53E3E;
    margin-top: 4px;
    display: none;
}

.form-group.error input,
.form-group.error select {
    border-color: #E53E3E;
}

.form-group.error .error-msg {
    display: block;
}

.form-group .validation-message {
    font-size: 0.8rem;
    color: #E53E3E;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 0;
    animation: validationFadeIn 0.3s ease;
}

.form-group .validation-message::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
}

@keyframes validationFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group input.modified.invalid,
.form-group select.modified.invalid,
.form-group textarea.modified.invalid {
    border-color: #E53E3E;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23E53E3E' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group input.modified.valid,
.form-group select.modified.valid,
.form-group textarea.modified.valid {
    border-color: #38A169;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2338A169' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select.modified.valid,
.form-group select.modified.invalid {
    background-position: right 40px center;
    padding-right: 60px;
}

.validation-errors {
    background: rgba(229, 62, 62, 0.06);
    border: 1px solid rgba(229, 62, 62, 0.2);
    border-left: 4px solid #E53E3E;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 25px;
    animation: validationFadeIn 0.3s ease;
}

.validation-errors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.validation-errors ul li {
    font-size: 0.85rem;
    color: #E53E3E;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.validation-errors ul li::before {
    content: '\f057';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    justify-content: center;
    min-width: 200px;
}

.form-note {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(197, 165, 90, 0.08);
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
    font-size: 0.85rem;
    color: var(--text-gray);
}

.form-note i {
    color: var(--secondary);
    margin-right: 5px;
}

/* ===================== SUCCESS MODAL ===================== */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.success-modal.active {
    display: flex;
}

.success-modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.success-modal-content .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #20BD5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #fff;
}

.success-modal-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.success-modal-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* ===================== ABOUT PAGE ===================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 350px;
    filter: drop-shadow(0 10px 30px rgba(123, 31, 58, 0.15));
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.vm-card .icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.vm-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.vm-card p {
    color: var(--text-gray);
    font-size: 0.92rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.partner-logo {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.85rem;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: grid;
    gap: 20px;
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-card .icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, rgba(123, 31, 58, 0.08), rgba(197, 165, 90, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.contact-card.whatsapp-card {
    border: 2px solid #25D366;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.03), rgba(37, 211, 102, 0.08));
}

.contact-card.whatsapp-card .icon {
    background: #25D366;
    color: #fff;
}

.contact-card h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--secondary);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 300px;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================== PARTNERS MARQUEE ===================== */
.partners-marquee-section {
    padding: 70px 0;
    background: var(--bg-white);
    overflow: hidden;
}

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

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

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--marquee-bg, var(--bg-white)), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--marquee-bg, var(--bg-white)), transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

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

.marquee-item {
    flex-shrink: 0;
    width: 160px;
    height: 90px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: var(--transition);
}

.marquee-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow);
    transform: scale(1.05);
}

.marquee-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.marquee-item:hover img {
    filter: grayscale(0%);
}

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

@media (max-width: 768px) {
    .marquee-item {
        width: 130px;
        height: 70px;
        padding: 10px;
    }

    .marquee-track {
        gap: 30px;
    }
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 5px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-links .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .nav-links .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 10px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 280px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .stat-card .number {
        font-size: 2.2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-float a {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        min-width: unset;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Teklif başarı modal (Trafik vb.) */
.teklif-modal-hidden { display: none !important; }
.teklif-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.75);
    display: flex; align-items: center; justify-content: center; z-index: 10000; padding: 1rem;
}
.teklif-modal {
    background: #fff; border-radius: 20px; padding: 2.5rem 2rem; max-width: 460px; width: 100%;
    text-align: center; box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    animation: modalIn .35s cubic-bezier(.22,1,.36,1);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(.88) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.teklif-modal-check { font-size: 4.5rem; color: #25D366; margin-bottom: 1rem; line-height: 1; }
.teklif-modal h2 { font-size: 1.35rem; font-weight: 700; color: #1a1a2e; margin: 0 0 0.6rem; }
.teklif-modal-desc { font-size: 0.88rem; color: #555; line-height: 1.6; margin: 0; }
.teklif-modal-divider { border: none; border-top: 1px solid #eee; margin: 1.5rem 0; }
.teklif-modal-wp-title { font-size: 0.9rem; font-weight: 600; color: #1a1a2e; margin: 0 0 1rem; }
.teklif-modal-wp-title i { color: #25D366; margin-right: 0.3rem; }
.teklif-modal-wp-title span { display: block; font-weight: 400; color: #777; font-size: 0.82rem; margin-top: 0.25rem; }
.teklif-modal-form { display: flex; flex-direction: column; gap: 0.75rem; }
.teklif-wp-input-group {
    display: flex; align-items: center; border: 1.5px solid #ddd; border-radius: 10px;
    overflow: hidden; background: #f9f9f9;
}
.teklif-wp-prefix {
    padding: 0 12px; font-size: 0.9rem; font-weight: 600; color: #444;
    border-right: 1.5px solid #ddd; background: #f0f0f0; line-height: 46px; white-space: nowrap;
}
.teklif-wp-input { flex: 1; border: none !important; background: transparent !important; padding: 12px 14px; font-size: 0.9rem; outline: none; box-shadow: none !important; }
.teklif-modal-actions { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-top: 0.25rem; }
.teklif-modal-skip { font-size: 0.82rem; color: #aaa; text-decoration: none; transition: color .2s; }
.teklif-modal-skip:hover { color: #555; }
.teklif-modal-skip-note { margin-top: 0.75rem; font-size: 0.75rem; color: #aaa; text-align: center; }
.lf-error { background: rgba(229,62,62,0.08); border: 1px solid rgba(229,62,62,0.25); border-radius: 10px; padding: 11px 14px; font-size: 0.82rem; color: #FC8181; display: flex; align-items: center; gap: 0.6rem; }
