/* =======================
   BASICS & VARIABLES
======================= */
:root {
    --primary: #06428b;
    --primary-light: #1c6ad6;
    --primary-dark: #032a5e;
    --secondary: #f4f8fc;
    --text-main: #333333;
    --text-muted: #666666;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.shadow-lg { box-shadow: var(--shadow-lg); }
.border-radius-20 { border-radius: 20px !important; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    padding-top: 80px;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--secondary);
}

.center {
    text-align: center;
}

/* =======================
   TYPOGRAPHY
======================= */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

/* =======================
   BUTTONS
======================= */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(6, 66, 139, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 66, 139, 0.4);
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary);
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* =======================
   HEADER / NAV
======================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* CSS-Based Modern Logo */
.css-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.css-logo:hover {
    transform: translateY(-2px);
}

.logo-lantern-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(6, 66, 139, 0.2));
    transition: var(--transition);
    transform: translateY(-10px);
    /* Yazıların tam ortasına hizalamak için biraz daha yukarı kaydırma */
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-css-logo .logo-main,
.footer-css-logo .logo-sub {
    color: #fff;
}

.footer-css-logo .logo-lantern-img {
    filter: drop-shadow(0 2px 5px rgba(255, 255, 255, 0.2));
}

.mt-3 {
    margin-top: 1rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-dark);
}

.header-contact-info i {
    color: var(--primary);
}

.header-contact-info a:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: var(--text-main) !important;
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background-color: var(--secondary);
    color: var(--primary) !important;
    padding-left: 30px;
}

.dropdown-menu li a::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary-dark);
}

/* Mobile Menu Enhanced */
.nav-links.mobile-active {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: #fff !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 25px !important;
    z-index: 1000 !important;
    padding: 80px 40px !important;
    animation: fadeInMenu 0.4s ease forwards;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links.mobile-active li {
    width: 100%;
    text-align: center;
}

.nav-links.mobile-active li a {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    padding: 10px;
}

.mobile-nav-extra {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.nav-links.mobile-active .mobile-nav-extra {
    display: flex;
}

.nav-links.mobile-active .mobile-nav-extra .header-contact-info {
    display: flex !important;
    color: var(--primary-dark);
}

/* =======================
   HERO AREA
======================= */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--secondary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Gradient overlay for readability */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 66, 139, 0.9) 0%, rgba(6, 66, 139, 0.6) 100%);
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(6, 66, 139, 0.3);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background-color: rgba(28, 106, 214, 0.3);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, #a0c4f5, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* standard property for compatibility */
}

.hero p {
    font-size: 1.2rem;
    color: #e0eaf5;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* =======================
   STATS
======================= */
.stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px;
    text-align: center;
}

.stat-card {
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* =======================
   ABOUT
======================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img-box {
    width: 100%;
    height: 440px;
    background-image: url('../img/index.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s infinite ease-in-out alternate;
}

.floating-badge i {
    font-size: 2.5rem;
    color: var(--primary-light);
}

.about-content .lead {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-list li i {
    color: #28a745;
}

/* ==
/* =======================
   SERVICES (SPLIT LAYOUT)
======================= */
.services-section {
    background-color: var(--secondary);
    padding: 100px 0;
}

.services-split-layout {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    align-items: stretch;
}

.services-image-col {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 600px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-dark);
}

.services-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s ease;
}

.services-image-col:hover .services-side-img {
    transform: scale(1.05);
}

.services-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(0deg, rgba(3, 42, 94, 0.95) 0%, rgba(3, 42, 94, 0) 100%);
    color: #fff;
    z-index: 2;
}

.services-img-overlay h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.services-img-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-list-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(6, 66, 139, 0.05);
    position: relative;
    overflow: hidden;
}

.service-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.service-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-list-item:hover::before {
    transform: scaleY(1);
}

.item-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: rgba(6, 66, 139, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(6, 66, 139, 0.1);
}

.service-list-item:hover .item-icon {
    background: var(--primary);
    transform: rotate(-5deg);
}

.item-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-list-item:hover .item-icon i {
    color: #fff;
}

.item-content {
    flex: 1;
}

.item-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.item-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.item-content::after {
    content: 'İncele \f061';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.service-list-item:hover .item-content::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .services-split-layout {
        flex-direction: column;
    }

    .services-image-col {
        min-height: 400px;
    }
}

/* =======================
   HOW IT WORKS (PROCESS)
======================= */
.process-section {
    background: #fff;
    padding-bottom: 80px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary-light) 0, var(--primary-light) 10px, transparent 10px, transparent 20px);
    opacity: 0.3;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(6, 66, 139, 0.2);
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =======================
   CTA SECTION
======================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/index.png') center/cover no-repeat;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* =======================
   FOOTER
======================= */
.footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    width: 100%;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.company-desc {
    color: #a0c4f5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.license-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #a0c4f5;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #a0c4f5;
}

.footer-contact ul li i {
    color: var(--primary-light);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #021a3b;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #88a9db;
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a:hover {
    color: #fff;
}

/* =======================
   RESPONSIVE
======================= */
/* =======================
   FAQ (MODERN ACCORDION)
======================= */
.faq-split-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-text-column {
    flex: 1.5;
}

.faq-image-column {
    flex: 1;
    position: sticky;
    top: 120px;
}

.faq-header {
    margin-bottom: 40px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #fff;
    border-radius: var(--border-radius);
    border: 1px solid rgba(6, 66, 139, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 5px 15px rgba(6, 66, 139, 0.05);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(6, 66, 139, 0.1);
    background-color: #f8fbff;
}

.accordion-header {
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
    transition: var(--transition);
}

.accordion-item.active .accordion-header {
    color: var(--primary);
}

.accordion-icon {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
    color: var(--primary-light);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content-inner {
    padding: 0 30px 25px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* FAQ Image Side */
.faq-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-side-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    color: #fff;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .number {
    font-size: 1.8rem;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .faq-split-container {
        flex-direction: column;
    }

    .faq-image-column {
        width: 100%;
        margin-top: 40px;
    }
}


@media (max-width: 768px) {

    .nav-links,
    .header-actions .btn-primary,
    .header-contact-info {
        display: none;
    }

    .header-actions {
        gap: 15px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        padding: 0 15px;
    }

    .css-logo {
        gap: 8px;
    }

    .logo-lantern-img {
        height: 36px;
        transform: translateY(-5px);
    }

    .logo-main {
        font-size: 1.15rem;
    }

    .logo-sub {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 15px;
        gap: 30px 15px;
    }

    .stat-card:not(:last-child)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floating-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px;
        font-size: 0.8rem;
    }

    .footer-contact ul li {
        word-break: break-all;
    }

    .footer-contact ul li {
        word-break: break-all;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Prevent horizontal scroll from elements that might pop out */
    .about-image-wrapper,
    .services-image-col,
    .faq-image-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .process-step::after {
        display: none !important;
    }
}

/* =======================
   PARTNERS SECTION
======================= */
.partners-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 40px;
    opacity: 0.8;
}

.logos-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logos-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
    padding-left: 0;
    margin: 0;
}

.logos-track img {
    height: 50px;
    width: auto;
    filter: none;
    opacity: 1;
    transition: var(--transition);
    object-fit: contain;
}

.logos-track img:hover {
    transform: scale(1.1) translateY(-5px);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

@media (max-width: 768px) {
    .logos-track img {
        height: 38px;
    }

    .logos-track {
        gap: 50px;
    }
}


/* =======================
   SUBPAGE HEADER
 ======================= */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/index.png') center/cover no-repeat;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* =======================
   FORM STYLES
 ======================= */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(28, 106, 214, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2306428b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* =======================
   UTILITIES & ANIMATIONS
 =======================/* Team Card Enhancements */
/* Modern Team Card Design (Reference: User Image) */
.team-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
    height: 350px;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.team-info {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.team-role-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eef8ff;
    color: #00aeef;
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.team-role-badge i {
    background: #fff;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 174, 239, 0.1);
}

.team-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

.team-separator {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.team-social-linkedin {
    width: 50px;
    height: 50px;
    background: #0077b5;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.team-social-linkedin:hover {
    background: #005582;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.2);
}

.team-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Premium Contact Form Styles */
.contact-form-container {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
    margin-bottom: 30px;
    color: var(--primary-dark);
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fbff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(6, 66, 139, 0.1);
}

.form-control::placeholder {
    color: #a0aec0;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 66, 139, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fade {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide {
    animation: slideUp 0.8s ease-out forwards;
}

/* =======================
   NEW UI COMPONENTS
   ======================= */

/* 1. Service Intro Styles (Reference: User Image) */
.service-intro {
    padding-bottom: 20px;
}

.intro-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.intro-badge::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.service-intro h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.service-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 25px;
}

.service-feature-list {
    margin-bottom: 35px;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-main);
}

.service-feature-list i {
    color: var(--text-main);
    background: #fff;
    border: 2px solid var(--text-main);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* 2. Contact Premium Info Card (Reference: User Image) */
.contact-premium-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-premium-card h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-row-icon {
    min-width: 54px;
    height: 54px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(6, 66, 139, 0.2);
}

.contact-row-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.contact-row-content p {
    color: var(--primary-light);
    font-weight: 500;
    line-height: 1.5;
}

.social-media-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-media-wrapper h4 {
    margin-bottom: 15px;
}

.social-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-circle-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-circle-btn.fb {
    background: #1877F2;
}

.social-circle-btn.ig {
    background: #E4405F;
}

.social-circle-btn.ln {
    background: #0A66C2;
}

.social-circle-btn.wa {
    background: #25D366;
}

.social-circle-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 3. Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 2px;
}

/* Breathing Animation */
.whatsapp-pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Global Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.align-items-center {
    align-items: center;
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   5. EKİBİMİZ (TEAM STAFF) - UNIQUE STYLES FOR ISOLATION
   ============================================================ */

.team-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-staff-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.team-staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-staff-photo-wrapper {
    width: 100%;
    height: 400px;
    /* Fixed height for consistency */
    overflow: hidden;
    position: relative;
}

.team-staff-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-staff-card:hover .team-staff-photo-wrapper img {
    transform: scale(1.08);
}

.team-staff-content {
    padding: 35px;
    text-align: center;
}

.team-staff-content h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.team-staff-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: #f1f7ff;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-staff-bio {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.65;
    margin-bottom: 25px;
}

.team-staff-separator {
    width: 60px;
    height: 2px;
    background: rgba(0, 0, 0, 0.05);
    margin: 0 auto 25px;
}

.team-staff-social-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0A66C2;
    color: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.team-staff-social-link:hover {
    transform: rotate(10deg) scale(1.1);
    background: #084d91;
    color: #fff;
}

/* ============================================================
   6. MÜŞTERİ GÖRÜŞLERİ (TESTIMONIALS) - GLASSMORPHISM STYLE
   ============================================================ */

.testimonials-section {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.testimonials-content h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
}

.testimonials-content .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #fff;
}

.user-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-cta-btn {
    background: #fff;
    color: var(--primary-dark);
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.testimonial-cta-btn:hover {
    background: #f0f7ff;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-content {
        text-align: center;
    }
}

/* ============================================================
   7. HAKKIMIZDA (ABOUT US) PAGE COMPONENTS
   ============================================================ */

/* Image Strips */
.image-strip {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin: 80px 0;
}

.image-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(3, 42, 94, 0.5), rgba(3, 42, 94, 0.5));
    z-index: 1;
}

.strip-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.strip-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.strip-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 80px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12.5px;
    background-color: #fff;
    border: 4px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -12.5px;
}

.timeline-content {
    padding: 30px;
    background-color: #fff;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.timeline-item:hover::after {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Vision & Mission (VM) Section */
.vm-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.mission-card {
    flex-direction: row-reverse;
}

.vm-text {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vm-badge {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.vm-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 450px;
}

@media (max-width: 992px) {
    .vm-card, .mission-card {
        flex-direction: column;
    }
    .vm-text {
        padding: 40px;
    }
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item::after {
        left: 18.5px;
    }
    .timeline-item.right {
        left: 0%;
    }
    .image-strip {
        height: 300px;
        background-attachment: scroll; /* Disable parallax for mobile mobile */
    }
    .strip-content h2 {
        font-size: 2rem;
    }
}

/* ============================================================
   8. BLOG SECTION (PREMIUM CARDS)
   ============================================================ */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 40px;
}

.blog-header-left {
    flex: 1;
}

.blog-header-right {
    flex: 1;
    max-width: 500px;
}

.blog-header-right p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.blog-card-featured {
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blog-featured-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

.blog-card-featured:hover .blog-featured-img {
    transform: scale(1.05);
}

.blog-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    z-index: 2;
}

.blog-featured-overlay h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-date {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card-side {
    display: flex;
    height: calc(50% - 15px);
    min-height: 235px;
}

.blog-side-img-wrapper {
    flex: 1;
    overflow: hidden;
}

.blog-side-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-side:hover .blog-side-img-wrapper img {
    transform: scale(1.1);
}

.blog-side-content {
    flex: 1.2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-side-content .blog-badge {
    position: static;
    display: inline-block;
    width: fit-content;
    background: var(--secondary);
    margin-bottom: 15px;
}

.blog-side-content h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary-dark);
}

@media (max-width: 992px) {
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .blog-header-right {
        max-width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-featured {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .blog-card-side {
        flex-direction: column;
        height: auto;
    }

    .blog-side-img-wrapper {
        height: 200px;
    }
}

/* Alert Boxes for Forms */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
    animation: fadeInDown 0.4s ease;
}

.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.alert-danger {
    background-color: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
