/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	scroll-padding-top: 88px;
}

:root {
    
    /* Colors */
    --primary-color: #0066cc;
    --primary-dark: #003280;
    --text-color: #333;
    --text-dark: #1a2341;
    --white: #ffffff;
    --mobile-menu-bg: #f8f9fa;
    --hover-bg: #f0f4fa;
    --selected-bg: #e5e8f0;
    
    /* COLORS + ACCENTS */
    --primary-blue: #003280;
    --accent-blue: #4b8df8;
    --light-blue: #eaf2ff;
    --soft-gray: #f7f7f7;
    --dark-gray: #222;
    --text-muted: #888;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 1.2rem;
    
    /* Transitions */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.9s;

    /* Z-index Scale */
    --z-base: 1;
    --z-above: 10;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;

    /* Breakpoints */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;

    /* Container Max Widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-xxl: 1320px;

    /* Font Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */

    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Font Weights */
    --font-thin: 100;
    --font-extralight: 200;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;

    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;

    /* Text Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 8px 12px rgba(0, 0, 0, 0.2);

    /* Word Spacing */
    --word-spacing-tight: -0.05em;
    --word-spacing-normal: 0;
    --word-spacing-wide: 0.05em;
    --word-spacing-wider: 0.1em;
    --word-spacing-widest: 0.2em;

    /* Text Opacity */
    --text-opacity-0: 0;
    --text-opacity-25: 0.25;
    --text-opacity-50: 0.5;
    --text-opacity-75: 0.75;
    --text-opacity-100: 1;

    /* Text Stroke */
    --text-stroke-thin: 0.5px;
    --text-stroke-normal: 1px;
    --text-stroke-thick: 2px;

    /* Gradient Colors */
    --gradient-primary: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(to right, #6b7280, #374151);
    --gradient-success: linear-gradient(to right, #10b981, #059669);
    --gradient-warning: linear-gradient(to right, #f59e0b, #d97706);
    --gradient-danger: linear-gradient(to right, #ef4444, #dc2626);
    --gradient-info: linear-gradient(to right, #3b82f6, #2563eb);
    --gradient-light: linear-gradient(to right, #f3f4f6, #e5e7eb);
    --gradient-dark: linear-gradient(to right, #1f2937, #111827);
    --gradient-rainbow: linear-gradient(to right, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff);
    --gradient-metallic: linear-gradient(to right, #bdc3c7, #2c3e50);
    --gradient-sunset: linear-gradient(to right, #ff512f, #dd2476);
    --gradient-ocean: linear-gradient(to right, #2193b0, #6dd5ed);
    --gradient-forest: linear-gradient(to right, #11998e, #38ef7d);

    
    --heading-highlight-accent-color: 255, 255, 255;   
    --heading-highlight-text-color:  0, 50, 128;   
    --effect-h-padding: 0.1em
    
}

body, main {
  margin-top: 30px;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 600px) {
  .section-about__image-wrapper {
    min-width: 0;
    max-width: 100vw;
  }
  .section-about__image--mobile {
    width: 100%;
    max-width: 100vw;
    height: auto;
    display: block !important;
  }
  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

body {
    font-family: 'IBM Plex Sans';
    line-height: 1.6;
    color: var(--text-color);
}

/* Container System */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--spacing-md);
    padding-left: var(--spacing-md);
}

/* Responsive Container Sizes */
@media (min-width: 576px) {
    .container {
        max-width: var(--container-sm);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: var(--container-md);
    }
}

@media (min-width: 992px) {
    .container {
        max-width: var(--container-lg);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: var(--container-xl);
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: var(--container-xxl);
    }
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

/* Grid Columns */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive Grid */
@media (min-width: 576px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .sm\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 992px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Responsive Spacing */
@media (min-width: 576px) {
    .sm\:gap-2 { gap: var(--spacing-sm); }
    .sm\:gap-4 { gap: var(--spacing-md); }
    .sm\:gap-6 { gap: var(--spacing-lg); }
    .sm\:gap-8 { gap: var(--spacing-xl); }
}

@media (min-width: 768px) {
    .md\:gap-2 { gap: var(--spacing-sm); }
    .md\:gap-4 { gap: var(--spacing-md); }
    .md\:gap-6 { gap: var(--spacing-lg); }
    .md\:gap-8 { gap: var(--spacing-xl); }
}

/* Responsive Display */
@media (min-width: 576px) {
    .sm\:hidden { display: none; }
    .sm\:block { display: block; }
    .sm\:flex { display: flex; }
    .sm\:grid { display: grid; }
}

@media (min-width: 768px) {
    .md\:hidden { display: none; }
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:grid { display: grid; }
}

/* Utility Classes */
.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.text-bold {
    font-weight: 700;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: var(--white);
    z-index: 1000;
    height: 88px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: var(--spacing-xl);
    height: 100%;
}

@media (min-width: 800px) {
    .navbar .container {
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
    }
    .logo-wrapper {
        position: relative !important;
    }
    .navbar {
      padding-left: 20px !important;
    }
    .desktop-nav {
        flex: 1 1 0%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .desktop-lang-switcher {
        flex: 0 0 auto;
        margin-left: var(--spacing-xl);
    }
    .hamburger {
        display: none;
    }
}

.desktop-nav-list {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.desktop-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    padding: 0 var(--spacing-sm);
    height: 100%;
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
    position: relative;
}

.desktop-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
    transform-origin: right;
}

.desktop-nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.desktop-nav-link.active {
    color: var(--white);
}

.desktop-nav-link.active::after {
    transform: scaleX(1);
}

/* Desktop Dropdown */
.desktop-dropdown {
    position: relative;
}

.desktop-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 200px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    padding: var(--spacing-sm) 0;
}

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

.desktop-dropdown-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    display: block;
    transition: background var(--transition-fast);
}

.desktop-dropdown-link:hover {
    background: var(--hover-bg);
}

/* Dropdown Arrow */
.dropdown-arrow {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.desktop-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Desktop Language Switcher */
.desktop-lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-left: var(--spacing-lg);
}

.desktop-lang-btn {
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: var(--text-sm);
}

.desktop-lang-btn:hover,
.desktop-lang-btn.active {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Logo Positioning */
.logo-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 4.5rem !important;
    max-width: 100%;
    display: block;
    transition: transform var(--transition-fast);
    cursor: pointer;
}

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

/* Logo link styling */
a[href*="index.html"] .header-logo,
a[href*="index.html"] .footer__logo {
    transition: all 0.3s ease;
}

a[href*="index.html"]:hover .header-logo,
a[href*="index.html"]:hover .footer__logo {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Footer logo cursor */
.footer__logo {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Logo link styling */
.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    text-decoration: none;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Mobile Navigation */
@media (max-width: 800px) {
    .navbar .container {
        max-width: 100vw;
        padding: 0 var(--spacing-md);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .hamburger {
        display: flex !important;
    }
    .logo-wrapper {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        position: static;
        margin: 0;
    }
    .desktop-lang-switcher {
        display: none !important;
    }
    .mobile-menu-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: #003280;
        padding: 0 1rem;
        position: relative;
        z-index: 1001;
        width: 100vw;
        min-height: 4.5rem;
        overflow: visible;
        transition: justify-content 0.5s;
    }
    .mobile-menu-header .logo-wrapper {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        position: static;
        margin: 0;
    }
    .mobile-menu-header .lang-dropdown.right {
        position: static;
        margin-left: auto;
        opacity: 1;
        transform: none;
        transition: none;
    }
    .mobile-menu-header .close-menu {
        position: static;
        margin-right: 0.5rem;
        transform: none;
    }
}

@media (min-width: 800px) {
    .mobile-menu,
    .hamburger,
    .mobile-only {
        display: none !important;
    }
}
/* Newsletter Signup Section */
.newsletter-signup {
  background-color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
}

.newsletter-signup__content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-signup__title {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-signup__desc {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-signup__form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-signup__input {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    min-width: 280px;
    background: #fff;
    color: #000;
    transition: background 0.3s ease, border-color 0.3s ease;
    flex: 1;
}

.newsletter-signup__input::placeholder {
    color: #666;
}

.newsletter-signup__input:hover {
    background: #f9f9f9;
    border-color: #999;
}

.newsletter-signup__input:focus {
    outline: none;
    background: #fff;
    border-color: #003280;
    box-shadow: 0 0 0 3px rgba(0, 50, 128, 0.25);
}

@media (max-width: 768px) {
    .newsletter-signup {
        padding: 3rem 2rem;
    }
    
    .newsletter-signup__title {
        font-size: 1.75rem;
    }
    
    .newsletter-signup__form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-signup__input {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-signup {
        padding: 3rem 1rem;
    }
}

/* Footer Redesign */
.bg-dark-blue { background-color: #003280 !important; }
.footer {
  background-color: #fff;
  color: #000;
  padding: 3rem 0 1rem 0;
  font-size: 1rem;
}
.footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__brand { min-width: 220px; }
.footer__logo { max-width: 160px; margin-bottom: 0.5rem; }
.footer__desc { color: #6b7280; font-size: 1.1rem; margin-top: 0.5rem; }
.footer__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: #6b7280; }
.footer__links a, .footer__contact span, .footer__contact-row span, .footer__social-link {
  color: #6b7280;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover, .footer__social-link:hover { color: #6b7280; text-decoration: underline; }
.footer__contact-row svg { margin-right: 0.5rem; vertical-align: middle; }
.footer__social-icons { margin-top: 0.5rem; }
.footer__social-link { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  color: #6b7280;
  background-color: transparent;
}
.footer__social-link:first-child {
  margin-left: -12px;
}
.footer__social-link:hover { 
  background-color: rgba(0, 0, 0, 0.05); 
  transform: translateY(-2px);
}

/* Social Media Brand Colors */
.footer__social-link[aria-label="Instagram"] {
  color: #6b7280;
}
.footer__social-link[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.footer__social-link[aria-label="LinkedIn"] {
  color: #6b7280;
}
.footer__social-link[aria-label="LinkedIn"]:hover {
  background-color: #0077b5;
  color: white;
}

.footer__social-link[aria-label="YouTube"] {
  color: #6b7280;
}
.footer__social-link[aria-label="YouTube"]:hover {
  background-color: #FF0000;
  color: white;
}

.footer__social-link[aria-label="X (Twitter)"] {
  color: #6b7280;
}
.footer__social-link[aria-label="X (Twitter)"]:hover {
  background-color: #000000;
  color: white;
}
.footer__divider { border-top: 1px solid #ccc; margin: 2rem 0 1.5rem 0; }
.footer__signup { flex-wrap: wrap; }
.footer__newsletter-text { 
  color: #6b7280; 
  text-align: center; 
  margin-bottom: 1rem;
}
.footer__signup-form { 
  flex-wrap: wrap; 
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.footer__input {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-right: 0.5rem;
  min-width: 280px;
  background: #fff;
  color: #000;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.footer__input::placeholder { color: #666; }
.footer__input:hover { 
  background: #f9f9f9;
  border-color: #999;
}
.footer__input:focus { 
  outline: none;
  background: #fff;
  border-color: #003280;
  box-shadow: 0 0 0 3px rgba(0, 50, 128, 0.25);
}
.btn--secondary {
  background: #fff;
  color: #1a3d72;
  border: none;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.btn--secondary:hover { background: #e0e6f6; color: #003280; }
.footer__copyright-wrapper { 
  text-align: center; 
  width: 100%; 
}
.footer__copyright { 
  color: #6b7280; 
  font-size: 0.95rem; 
  text-align: center;
  display: inline-block;
}
@media (max-width: 900px) {
  .footer__container { flex-direction: column; gap: 2rem; text-align: center; align-items: center; }
  .footer__brand, .footer__links, .footer__contact, .footer__social { min-width: 0; text-align: center; }
  .footer__brand { align-items: center; }
  .footer__links { align-items: center; }
  .footer__contact { align-items: center; }
  .footer__social { align-items: center; }
  .footer__contact-row { justify-content: center; }
  .footer__signup { flex-direction: column; align-items: center; gap: 0.5rem; }
  .footer__input { min-width: 0; width: 100%; }
  .footer__social-icons { justify-content: center; }
  .footer__copyright-wrapper { text-align: center; }
  .footer__copyright { text-align: center; }
}

/* TYPOGRAPHY */
h1 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4, h5, h6 {
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: var(--spacing-md);
}

/* Mobile typography adjustments */
@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Buttons */
/* ========== UNIFIED BUTTON SYSTEM ========== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

/* PRIMARY BUTTON - Blue background, white text (main CTA) */
.btn--primary {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

.btn--primary:hover {
    background: #0052a3;
    border-color: #0052a3;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 50, 128, 0.3);
}

.btn--primary:active {
    background: #002a5c;
    border-color: #002a5c;
    color: #ffffff;
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 50, 128, 0.4);
}

.btn--primary:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* SECONDARY BUTTON - Blue background, white text (consistent with primary) */
.btn--secondary {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

.btn--secondary:hover {
    background: #0052a3;
    border-color: #0052a3;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 50, 128, 0.3);
}

.btn--secondary:active {
    background: #002a5c;
    border-color: #002a5c;
    color: #ffffff;
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 50, 128, 0.4);
}

.btn--secondary:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* CORPORATE BUTTON - For corporate/blue background sections */
.btn--corporate {
    background: #ffffff;
    color: var(--primary-blue);
    border-color: #ffffff;
}

.btn--corporate:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #ffffff;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn--corporate:active {
    background: rgba(255, 255, 255, 0.8);
    border-color: #ffffff;
    color: var(--primary-blue);
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
}

.btn--corporate:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* BLUE BACKGROUND SECTIONS - Adjust buttons for better contrast */
.section-hero .btn--primary,
.section-corporate .btn--primary {
    background: #ffffff !important;
    color: #003280 !important;
    border-color: #ffffff !important;
}

.section-hero .btn--primary *,
.section-corporate .btn--primary * {
    color: #003280 !important;
}

.section-hero .btn--primary:hover,
.section-corporate .btn--primary:hover {
    background: #f8f9fa !important;
    color: #003280 !important;
    border-color: #f8f9fa !important;
}

.section-hero .btn--primary:hover *,
.section-corporate .btn--primary:hover * {
    color: #003280 !important;
}

.section-hero .btn--primary:active,
.section-hero .btn--primary:active *,
.section-corporate .btn--primary:active,
.section-corporate .btn--primary:active * {
    background: #e9ecef !important;
    color: #003280 !important;
    transform: translateY(0) scale(0.98) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.section-hero .btn--secondary,
.section-corporate .btn--secondary {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.section-hero .btn--secondary *,
.section-corporate .btn--secondary * {
    color: #ffffff !important;
}

.section-hero .btn--secondary:hover,
.section-hero .btn--secondary:hover *,
.section-corporate .btn--secondary:hover,
.section-corporate .btn--secondary:hover * {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.section-hero .btn--secondary:active,
.section-hero .btn--secondary:active *,
.section-corporate .btn--secondary:active,
.section-corporate .btn--secondary:active * {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    transform: translateY(0) scale(0.98) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* --- MOBILE MENU --- */
.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 0;
    padding-top: 88px;
    transform: translate(-100%, 0) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-height: calc(100vh - 88px - 3rem);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0 var(--spacing-lg) 0 var(--spacing-lg);
    transition: background var(--transition-fast);
    border-radius: var(--radius-md);
    gap: 0;
    min-height: 3.5rem;
}

.mobile-nav-link:hover {
    background: var(--hover-bg);
}

.mobile-nav-icon {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    margin-right: 1.2rem;
    color: #0066cc;
    display: inline-block;
    object-fit: contain;
}

/* Hide default header when menu is open */
.navbar.menu-open > .container { display: none; }
.mobile-menu-header {
    display: none;
    align-items: center;
    justify-content: flex-end;
    background: #003280;
    padding: 0 1rem;
    position: relative;
    z-index: 1001;
    width: 100vw;
    min-height: 4.5rem;
    overflow: visible;
    transition: justify-content 0.5s;
}
.navbar.menu-open .mobile-menu-header {
    display: flex;
    justify-content: center;
}
.mobile-menu-header .header-logo.center.logo-animate {
    height: 4.5rem !important;
    max-width: 100%;
    margin: 0;
    transition: none;
}
.navbar.menu-open .mobile-menu-header .header-logo.center.logo-animate {
    margin: 0 auto;
    animation: slideInFromRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.close-menu {
    background: none;
    border: none;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
    cursor: pointer;
    z-index: 2;
}
.close-menu svg {
    stroke: #fff;
}
.lang-dropdown.right {
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s linear 0.2s;
}
.navbar.menu-open .lang-dropdown.right {
    opacity: 1;
}
.lang-dropdown-btn {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #fff;
    outline: 2px solid #003280;
    outline-offset: -2px;
    border-radius: 2rem;
    padding: 0.3rem 0.7rem;
    font-size: 1rem;
    color: #003280;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    font-weight: 600;
    min-width: 2.5rem;
    min-height: 2.5rem;
    justify-content: center;
}
.lang-dropdown-btn svg {
    color: #003280;
    stroke: #003280;
}
.lang-dropdown-btn span,
.lang-dropdown-btn svg + span {
    display: none;
}
.lang-dropdown.open .lang-dropdown-btn span,
.lang-dropdown.open .lang-dropdown-btn svg + span {
    display: inline;
}
.lang-dropdown-list {
    display: none;
    position: absolute;
    top: 3.5rem;
    right: 0;
    left: auto;
    min-width: 120px;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
    color: #003280;
    z-index: 10;
    border: 1.5px solid #003280;
    list-style: none;
    margin-right: 0.5rem;
}
.lang-dropdown.open .lang-dropdown-list {
    display: block;
}
.lang-dropdown-list li {
    padding: 0.3rem 0.5rem;
    border-radius: 0.7rem;
    cursor: pointer;
    text-align: center;
}
.lang-dropdown-list li[aria-selected="true"] {
    background: var(--selected-bg);
    font-weight: 700;
}

.mobile-nav-list li {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1), transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.mobile-menu.active .mobile-nav-list li {
    opacity: 1;
    transform: translateX(0);
}
.mobile-menu.active .mobile-nav-list li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.active .mobile-nav-list li:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.active .mobile-nav-list li:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.active .mobile-nav-list li:nth-child(4) { transition-delay: 0.32s; }
.mobile-menu.active .mobile-nav-list li:nth-child(5) { transition-delay: 0.40s; }
.mobile-menu.active .mobile-nav-list li:nth-child(6) { transition-delay: 0.48s; }
.mobile-menu.active .mobile-nav-list li:nth-child(7) { transition-delay: 0.56s; }
.mobile-menu.active .mobile-nav-list li:nth-child(8) { transition-delay: 0.64s; }

.chevron-icon {
    margin-left: 0.2rem;
    vertical-align: middle;
    stroke-width: 2.5;
    stroke: #003280;
    transition: transform 0.2s;
    display: inline;
    opacity: 1;
}
.lang-dropdown.open .chevron-icon {
    transform: rotate(180deg);
}

.logo-wrapper {
    position: absolute;
    top: 50%;
    left: auto !important;
    right: 1.2rem;
    transform: translateY(-50%);
    transition: transform 0.3s linear;
    z-index: 1;
}

.navbar:not(.menu-open) .logo-wrapper {
    left: auto;
    right: 1.2rem;
    transform: translateY(-50%);
}

.navbar.menu-open .logo-wrapper {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
}

.mobile-menu-header .header-logo.center.logo-animate {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.menu-open .mobile-menu-header .header-logo.center.logo-animate {
    opacity: 1;
}

.mobile-menu-header .logo-wrapper {
    position: absolute;
    top: 50%;
    left: auto !important;
    right: 1.2rem;
    transform: translateY(-50%);
    transition: transform 0.3s linear;
    z-index: 1;
}

.navbar:not(.menu-open) .mobile-menu-header .logo-wrapper {
    left: auto;
    right: 1.2rem;
    transform: translateY(-50%);
}

.navbar.menu-open .mobile-menu-header .logo-wrapper {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
}

/* Override any previous rules that attempt to move the logo-wrapper horizontally via left/right */
.navbar.menu-open .mobile-menu-header .logo-wrapper,
.navbar.menu-closing .mobile-menu-header .logo-wrapper {
    left: auto !important;
    right: 1.2rem !important;
}

.navbar.menu-closing .mobile-menu-header {
    display: flex !important;
    justify-content: flex-end;
}

.navbar.menu-closing .mobile-menu-header .logo-wrapper {
    left: auto;
    right: 1.2rem;
    transform: translateY(-50%);
}

.navbar.menu-closing .close-menu {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s linear;
}

.navbar.menu-closing .lang-dropdown.right {
    opacity: 0;
    transition: opacity 0.2s linear 0s;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Glitch Effect Animations */
@keyframes glitch {
    0% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-5px, 5px);
        filter: hue-rotate(90deg);
    }
    20% {
        transform: translate(-10px, 5px);
        filter: hue-rotate(180deg);
    }
    30% {
        transform: translate(10px, -5px);
        filter: hue-rotate(270deg);
    }
    40% {
        transform: translate(-5px, -10px);
        filter: hue-rotate(360deg);
    }
    50% {
        transform: translate(-10px, 10px);
        filter: hue-rotate(90deg) brightness(0.8);
    }
    60% {
        transform: translate(10px, 5px);
        filter: hue-rotate(180deg) brightness(1.2);
    }
    70% {
        transform: translate(-5px, -5px);
        filter: hue-rotate(270deg);
    }
    80% {
        transform: translate(5px, -10px);
        filter: hue-rotate(360deg);
    }
    90% {
        transform: translate(-5px, 5px);
        filter: hue-rotate(45deg);
    }
    100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
}

@keyframes screenFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes digitalNoise {
    0% { 
        background: transparent;
    }
    10% { 
        background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.1) 50%, transparent 100%);
    }
    20% { 
        background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 0, 0.1) 50%, transparent 100%);
    }
    30% { 
        background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 255, 0.1) 50%, transparent 100%);
    }
    40% { 
        background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 0, 0.1) 50%, transparent 100%);
    }
    50% { 
        background: linear-gradient(225deg, transparent 0%, rgba(255, 0, 255, 0.1) 50%, transparent 100%);
    }
    60% { 
        background: linear-gradient(270deg, transparent 0%, rgba(0, 255, 255, 0.1) 50%, transparent 100%);
    }
    70% { 
        background: linear-gradient(315deg, transparent 0%, rgba(255, 128, 0, 0.1) 50%, transparent 100%);
    }
    80% { 
        background: linear-gradient(90deg, transparent 0%, rgba(128, 255, 0, 0.1) 50%, transparent 100%);
    }
    90% { 
        background: linear-gradient(45deg, transparent 0%, rgba(255, 0, 128, 0.1) 50%, transparent 100%);
    }
    100% { 
        background: transparent;
    }
}

.glitch-effect {
    animation: glitch 0.45s ease-in-out;
}

.glitch-effect::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    animation: screenFlicker 0.075s ease-in-out 6, digitalNoise 0.45s ease-in-out;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  will-change: opacity, transform;
}

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

/* Blog post specific fade-in animations */
.blog-hero-back-btn.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

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

.blog-hero-title.fade-in {
  opacity: 0;
  max-width: 80%;
  transform: translateY(30px);
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}

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

.blog-hero-meta.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition-delay: 0.3s;
}

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

.floating-share-buttons.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

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

.blog-post-content.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}

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

.related-posts.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}

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

/* Responsive Padding */
.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-4 { padding: var(--spacing-md); }
.p-6 { padding: var(--spacing-lg); }
.p-8 { padding: var(--spacing-xl); }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
.px-2 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-4 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-6 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.px-8 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: var(--spacing-xs); padding-bottom: var(--spacing-xs); }
.py-2 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-4 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-6 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-8 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

/* Responsive Margin */
.m-0 { margin: 0; }
.m-1 { margin: var(--spacing-xs); }
.m-2 { margin: var(--spacing-sm); }
.m-4 { margin: var(--spacing-md); }
.m-6 { margin: var(--spacing-lg); }
.m-8 { margin: var(--spacing-xl); }

.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: var(--spacing-xs); margin-right: var(--spacing-xs); }
.mx-2 { margin-left: var(--spacing-sm); margin-right: var(--spacing-sm); }
.mx-4 { margin-left: var(--spacing-md); margin-right: var(--spacing-md); }
.mx-6 { margin-left: var(--spacing-lg); margin-right: var(--spacing-lg); }
.mx-8 { margin-left: var(--spacing-xl); margin-right: var(--spacing-xl); }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: var(--spacing-xs); margin-bottom: var(--spacing-xs); }
.my-2 { margin-top: var(--spacing-sm); margin-bottom: var(--spacing-sm); }
.my-4 { margin-top: var(--spacing-md); margin-bottom: var(--spacing-md); }
.my-6 { margin-top: var(--spacing-lg); margin-bottom: var(--spacing-lg); }
.my-8 { margin-top: var(--spacing-xl); margin-bottom: var(--spacing-xl); }

/* Responsive Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Responsive Utilities for Different Breakpoints */
@media (min-width: 576px) {
    /* Small screens padding */
    .sm\:p-0 { padding: 0; }
    .sm\:p-1 { padding: var(--spacing-xs); }
    .sm\:p-2 { padding: var(--spacing-sm); }
    .sm\:p-4 { padding: var(--spacing-md); }
    .sm\:p-6 { padding: var(--spacing-lg); }
    .sm\:p-8 { padding: var(--spacing-xl); }

    .sm\:px-0 { padding-left: 0; padding-right: 0; }
    .sm\:px-1 { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
    .sm\:px-2 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
    .sm\:px-4 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
    .sm\:px-6 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
    .sm\:px-8 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }

    /* Small screens margin */
    .sm\:m-0 { margin: 0; }
    .sm\:m-1 { margin: var(--spacing-xs); }
    .sm\:m-2 { margin: var(--spacing-sm); }
    .sm\:m-4 { margin: var(--spacing-md); }
    .sm\:m-6 { margin: var(--spacing-lg); }
    .sm\:m-8 { margin: var(--spacing-xl); }

    .sm\:mx-auto { margin-left: auto; margin-right: auto; }

    /* Small screens text alignment */
    .sm\:text-left { text-align: left; }
    .sm\:text-center { text-align: center; }
    .sm\:text-right { text-align: right; }
    .sm\:text-justify { text-align: justify; }
}

@media (min-width: 768px) {
    /* Medium screens padding */
    .md\:p-0 { padding: 0; }
    .md\:p-1 { padding: var(--spacing-xs); }
    .md\:p-2 { padding: var(--spacing-sm); }
    .md\:p-4 { padding: var(--spacing-md); }
    .md\:p-6 { padding: var(--spacing-lg); }
    .md\:p-8 { padding: var(--spacing-xl); }

    .md\:px-0 { padding-left: 0; padding-right: 0; }
    .md\:px-1 { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
    .md\:px-2 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
    .md\:px-4 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
    .md\:px-6 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
    .md\:px-8 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }

    /* Medium screens margin */
    .md\:m-0 { margin: 0; }
    .md\:m-1 { margin: var(--spacing-xs); }
    .md\:m-2 { margin: var(--spacing-sm); }
    .md\:m-4 { margin: var(--spacing-md); }
    .md\:m-6 { margin: var(--spacing-lg); }
    .md\:m-8 { margin: var(--spacing-xl); }

    .md\:mx-auto { margin-left: auto; margin-right: auto; }

    /* Medium screens text alignment */
    .md\:text-left { text-align: left; }
    .md\:text-center { text-align: center; }
    .md\:text-right { text-align: right; }
    .md\:text-justify { text-align: justify; }
}

@media (min-width: 992px) {
    /* Large screens padding */
    .lg\:p-0 { padding: 0; }
    .lg\:p-1 { padding: var(--spacing-xs); }
    .lg\:p-2 { padding: var(--spacing-sm); }
    .lg\:p-4 { padding: var(--spacing-md); }
    .lg\:p-6 { padding: var(--spacing-lg); }
    .lg\:p-8 { padding: var(--spacing-xl); }

    .lg\:px-0 { padding-left: 0; padding-right: 0; }
    .lg\:px-1 { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
    .lg\:px-2 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
    .lg\:px-4 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
    .lg\:px-6 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
    .lg\:px-8 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }

    /* Large screens margin */
    .lg\:m-0 { margin: 0; }
    .lg\:m-1 { margin: var(--spacing-xs); }
    .lg\:m-2 { margin: var(--spacing-sm); }
    .lg\:m-4 { margin: var(--spacing-md); }
    .lg\:m-6 { margin: var(--spacing-lg); }
    .lg\:m-8 { margin: var(--spacing-xl); }

    .lg\:mx-auto { margin-left: auto; margin-right: auto; }

    /* Large screens text alignment */
    .lg\:text-left { text-align: left; }
    .lg\:text-center { text-align: center; }
    .lg\:text-right { text-align: right; }
    .lg\:text-justify { text-align: justify; }
}

/* Font Size Utilities */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }

/* Font Weight Utilities */
.font-thin { font-weight: var(--font-thin); }
.font-extralight { font-weight: var(--font-extralight); }
.font-light { font-weight: var(--font-light); }
.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }
.font-extrabold { font-weight: var(--font-extrabold); }
.font-black { font-weight: var(--font-black); }

/* Line Height Utilities */
.leading-none { line-height: var(--leading-none); }
.leading-tight { line-height: var(--leading-tight); }
.leading-snug { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }
.leading-loose { line-height: var(--leading-loose); }

/* Letter Spacing Utilities */
.tracking-tighter { letter-spacing: var(--tracking-tighter); }
.tracking-tight { letter-spacing: var(--tracking-tight); }
.tracking-normal { letter-spacing: var(--tracking-normal); }
.tracking-wide { letter-spacing: var(--tracking-wide); }
.tracking-wider { letter-spacing: var(--tracking-wider); }
.tracking-widest { letter-spacing: var(--tracking-widest); }

/* Text Transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* Text Decoration */
.underline { text-decoration: underline; }
.line-through { text-decoration: line-through; }
.no-underline { text-decoration: none; }

/* Font Style */
.italic { font-style: italic; }
.not-italic { font-style: normal; }

/* Text Overflow */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsive Typography */
@media (min-width: 576px) {
    .sm\:text-xs { font-size: var(--text-xs); }
    .sm\:text-sm { font-size: var(--text-sm); }
    .sm\:text-base { font-size: var(--text-base); }
    .sm\:text-lg { font-size: var(--text-lg); }
    .sm\:text-xl { font-size: var(--text-xl); }
    .sm\:text-2xl { font-size: var(--text-2xl); }
    .sm\:text-3xl { font-size: var(--text-3xl); }
    .sm\:text-4xl { font-size: var(--text-4xl); }
    .sm\:text-5xl { font-size: var(--text-5xl); }

    .sm\:font-thin { font-weight: var(--font-thin); }
    .sm\:font-extralight { font-weight: var(--font-extralight); }
    .sm\:font-light { font-weight: var(--font-light); }
    .sm\:font-normal { font-weight: var(--font-normal); }
    .sm\:font-medium { font-weight: var(--font-medium); }
    .sm\:font-semibold { font-weight: var(--font-semibold); }
    .sm\:font-bold { font-weight: var(--font-bold); }
    .sm\:font-extrabold { font-weight: var(--font-extrabold); }
    .sm\:font-black { font-weight: var(--font-black); }

    .sm\:leading-none { line-height: var(--leading-none); }
    .sm\:leading-tight { line-height: var(--leading-tight); }
    .sm\:leading-snug { line-height: var(--leading-snug); }
    .sm\:leading-normal { line-height: var(--leading-normal); }
    .sm\:leading-relaxed { line-height: var(--leading-relaxed); }
    .sm\:leading-loose { line-height: var(--leading-loose); }
}

@media (min-width: 768px) {
    .md\:text-xs { font-size: var(--text-xs); }
    .md\:text-sm { font-size: var(--text-sm); }
    .md\:text-base { font-size: var(--text-base); }
    .md\:text-lg { font-size: var(--text-lg); }
    .md\:text-xl { font-size: var(--text-xl); }
    .md\:text-2xl { font-size: var(--text-2xl); }
    .md\:text-3xl { font-size: var(--text-3xl); }
    .md\:text-4xl { font-size: var(--text-4xl); }
    .md\:text-5xl { font-size: var(--text-5xl); }

    .md\:font-thin { font-weight: var(--font-thin); }
    .md\:font-extralight { font-weight: var(--font-extralight); }
    .md\:font-light { font-weight: var(--font-light); }
    .md\:font-normal { font-weight: var(--font-normal); }
    .md\:font-medium { font-weight: var(--font-medium); }
    .md\:font-semibold { font-weight: var(--font-semibold); }
    .md\:font-bold { font-weight: var(--font-bold); }
    .md\:font-extrabold { font-weight: var(--font-extrabold); }
    .md\:font-black { font-weight: var(--font-black); }

    .md\:leading-none { line-height: var(--leading-none); }
    .md\:leading-tight { line-height: var(--leading-tight); }
    .md\:leading-snug { line-height: var(--leading-snug); }
    .md\:leading-normal { line-height: var(--leading-normal); }
    .md\:leading-relaxed { line-height: var(--leading-relaxed); }
    .md\:leading-loose { line-height: var(--leading-loose); }
}

@media (min-width: 992px) {
    .lg\:text-xs { font-size: var(--text-xs); }
    .lg\:text-sm { font-size: var(--text-sm); }
    .lg\:text-base { font-size: var(--text-base); }
    .lg\:text-lg { font-size: var(--text-lg); }
    .lg\:text-xl { font-size: var(--text-xl); }
    .lg\:text-2xl { font-size: var(--text-2xl); }
    .lg\:text-3xl { font-size: var(--text-3xl); }
    .lg\:text-4xl { font-size: var(--text-4xl); }
    .lg\:text-5xl { font-size: var(--text-5xl); }

    .lg\:font-thin { font-weight: var(--font-thin); }
    .lg\:font-extralight { font-weight: var(--font-extralight); }
    .lg\:font-light { font-weight: var(--font-light); }
    .lg\:font-normal { font-weight: var(--font-normal); }
    .lg\:font-medium { font-weight: var(--font-medium); }
    .lg\:font-semibold { font-weight: var(--font-semibold); }
    .lg\:font-bold { font-weight: var(--font-bold); }
    .lg\:font-extrabold { font-weight: var(--font-extrabold); }
    .lg\:font-black { font-weight: var(--font-black); }

    .lg\:leading-none { line-height: var(--leading-none); }
    .lg\:leading-tight { line-height: var(--leading-tight); }
    .lg\:leading-snug { line-height: var(--leading-snug); }
    .lg\:leading-normal { line-height: var(--leading-normal); }
    .lg\:leading-relaxed { line-height: var(--leading-relaxed); }
    .lg\:leading-loose { line-height: var(--leading-loose); }
}

/* Text Shadow Utilities */
.text-shadow-none { text-shadow: none; }
.text-shadow-sm { text-shadow: var(--shadow-sm); }
.text-shadow-md { text-shadow: var(--shadow-md); }
.text-shadow-lg { text-shadow: var(--shadow-lg); }
.text-shadow-xl { text-shadow: var(--shadow-xl); }

/* Custom Text Shadows */
.text-shadow-custom {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.text-shadow-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.text-shadow-outline {
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

/* Word Spacing Utilities */
.word-spacing-tight { word-spacing: var(--word-spacing-tight); }
.word-spacing-normal { word-spacing: var(--word-spacing-normal); }
.word-spacing-wide { word-spacing: var(--word-spacing-wide); }
.word-spacing-wider { word-spacing: var(--word-spacing-wider); }
.word-spacing-widest { word-spacing: var(--word-spacing-widest); }

/* Text Opacity Utilities */
.text-opacity-0 { opacity: var(--text-opacity-0); }
.text-opacity-25 { opacity: var(--text-opacity-25); }
.text-opacity-50 { opacity: var(--text-opacity-50); }
.text-opacity-75 { opacity: var(--text-opacity-75); }
.text-opacity-100 { opacity: var(--text-opacity-100); }

/* Text Stroke Utilities */
.text-stroke-none { -webkit-text-stroke: none; }
.text-stroke-thin { -webkit-text-stroke: var(--text-stroke-thin) currentColor; }
.text-stroke-normal { -webkit-text-stroke: var(--text-stroke-normal) currentColor; }
.text-stroke-thick { -webkit-text-stroke: var(--text-stroke-thick) currentColor; }

/* Text Gradient Utilities */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-vertical {
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Text Blend Mode Utilities */
.text-blend-normal { mix-blend-mode: normal; }
.text-blend-multiply { mix-blend-mode: multiply; }
.text-blend-screen { mix-blend-mode: screen; }
.text-blend-overlay { mix-blend-mode: overlay; }
.text-blend-darken { mix-blend-mode: darken; }
.text-blend-lighten { mix-blend-mode: lighten; }

/* Text Writing Mode Utilities */
.text-writing-horizontal { writing-mode: horizontal-tb; }
.text-writing-vertical { writing-mode: vertical-rl; }
.text-writing-vertical-ltr { writing-mode: vertical-lr; }

/* Text Orientation Utilities */
.text-orientation-mixed { text-orientation: mixed; }
.text-orientation-upright { text-orientation: upright; }
.text-orientation-sideways { text-orientation: sideways; }

/* Responsive Text Utilities */
@media (min-width: 576px) {
    .sm\:text-shadow-sm { text-shadow: var(--shadow-sm); }
    .sm\:text-shadow-md { text-shadow: var(--shadow-md); }
    .sm\:text-shadow-lg { text-shadow: var(--shadow-lg); }
    .sm\:text-shadow-xl { text-shadow: var(--shadow-xl); }
    
    .sm\:word-spacing-wide { word-spacing: var(--word-spacing-wide); }
    .sm\:text-opacity-75 { opacity: var(--text-opacity-75); }
    .sm\:text-stroke-normal { -webkit-text-stroke: var(--text-stroke-normal) currentColor; }
}

@media (min-width: 768px) {
    .md\:text-shadow-sm { text-shadow: var(--shadow-sm); }
    .md\:text-shadow-md { text-shadow: var(--shadow-md); }
    .md\:text-shadow-lg { text-shadow: var(--shadow-lg); }
    .md\:text-shadow-xl { text-shadow: var(--shadow-xl); }
    
    .md\:word-spacing-wide { word-spacing: var(--word-spacing-wide); }
    .md\:text-opacity-75 { opacity: var(--text-opacity-75); }
    .md\:text-stroke-normal { -webkit-text-stroke: var(--text-stroke-normal) currentColor; }
}

@media (min-width: 992px) {
    .lg\:text-shadow-sm { text-shadow: var(--shadow-sm); }
    .lg\:text-shadow-md { text-shadow: var(--shadow-md); }
    .lg\:text-shadow-lg { text-shadow: var(--shadow-lg); }
    .lg\:text-shadow-xl { text-shadow: var(--shadow-xl); }
    
    .lg\:word-spacing-wide { word-spacing: var(--word-spacing-wide); }
    .lg\:text-opacity-75 { opacity: var(--text-opacity-75); }
    .lg\:text-stroke-normal { -webkit-text-stroke: var(--text-stroke-normal) currentColor; }
}

/* Gradient Direction Utilities */
.gradient-to-right { background-image: linear-gradient(to right, var(--start-color), var(--end-color)); }
.gradient-to-left { background-image: linear-gradient(to left, var(--start-color), var(--end-color)); }
.gradient-to-top { background-image: linear-gradient(to top, var(--start-color), var(--end-color)); }
.gradient-to-bottom { background-image: linear-gradient(to bottom, var(--start-color), var(--end-color)); }
.gradient-to-tr { background-image: linear-gradient(to top right, var(--start-color), var(--end-color)); }
.gradient-to-tl { background-image: linear-gradient(to top left, var(--start-color), var(--end-color)); }
.gradient-to-br { background-image: linear-gradient(to bottom right, var(--start-color), var(--end-color)); }
.gradient-to-bl { background-image: linear-gradient(to bottom left, var(--start-color), var(--end-color)); }

/* Text Gradient Utilities */
.text-gradient-primary {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-primary);
}

.text-gradient-secondary {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-secondary);
}

.text-gradient-success {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-success);
}

.text-gradient-warning {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-warning);
}

.text-gradient-danger {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-danger);
}

.text-gradient-info {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-info);
}

.text-gradient-rainbow {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-rainbow);
    background-size: 200% auto;
    animation: rainbow 5s linear infinite;
}

.text-gradient-metallic {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-metallic);
}

.text-gradient-sunset {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-sunset);
}

.text-gradient-ocean {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-ocean);
}

.text-gradient-forest {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--gradient-forest);
}

/* Gradient Background Utilities */
.bg-gradient-primary { background-image: var(--gradient-primary); }
.bg-gradient-secondary { background-image: var(--gradient-secondary); }
.bg-gradient-success { background-image: var(--gradient-success); }
.bg-gradient-warning { background-image: var(--gradient-warning); }
.bg-gradient-danger { background-image: var(--gradient-danger); }
.bg-gradient-info { background-image: var(--gradient-info); }
.bg-gradient-light { background-image: var(--gradient-light); }
.bg-gradient-dark { background-image: var(--gradient-dark); }
.bg-gradient-rainbow { 
    background-image: var(--gradient-rainbow);
    background-size: 200% auto;
    animation: rainbow 5s linear infinite;
}
.bg-gradient-metallic { background-image: var(--gradient-metallic); }
.bg-gradient-sunset { background-image: var(--gradient-sunset); }
.bg-gradient-ocean { background-image: var(--gradient-ocean); }
.bg-gradient-forest { background-image: var(--gradient-forest); }

/* Gradient Border Utilities */
.border-gradient-primary {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-primary) border-box;
}

.border-gradient-rainbow {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-rainbow) border-box;
    background-size: 200% auto;
    animation: rainbow 5s linear infinite;
}

/* Gradient Animation */
@keyframes rainbow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Responsive Gradient Utilities */
@media (min-width: 576px) {
    .sm\:text-gradient-primary { background-image: var(--gradient-primary); }
    .sm\:text-gradient-rainbow { background-image: var(--gradient-rainbow); }
    .sm\:bg-gradient-primary { background-image: var(--gradient-primary); }
    .sm\:bg-gradient-rainbow { background-image: var(--gradient-rainbow); }
}

@media (min-width: 768px) {
    .md\:text-gradient-primary { background-image: var(--gradient-primary); }
    .md\:text-gradient-rainbow { background-image: var(--gradient-rainbow); }
    .md\:bg-gradient-primary { background-image: var(--gradient-primary); }
    .md\:bg-gradient-rainbow { background-image: var(--gradient-rainbow); }
}

@media (min-width: 992px) {
    .lg\:text-gradient-primary { background-image: var(--gradient-primary); }
    .lg\:text-gradient-rainbow { background-image: var(--gradient-rainbow); }
    .lg\:bg-gradient-primary { background-image: var(--gradient-primary); }
    .lg\:bg-gradient-rainbow { background-image: var(--gradient-rainbow); }
}

.hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 0.5rem;
    z-index: 1100;
    width: 44px;
    height: 44px;
}
.hamburger-icon {
    width: 2rem;
    height: 2rem;
    stroke: #fff;
    fill: none;
    display: block;
}
@media (min-width: 800px) {
    .hamburger {
        display: none !important;
    }
}

/* GUARANTEE SECTION (Desktop1 Design) */
.guarantee-section {
  width: 100%;
  background: #003280;
  color: #fff;
  padding: 4rem 0 3.5rem 0;
  text-align: center;
}
.guarantee-section .section-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-text {
  font-size: 1.18rem;
  color: #dbe7fa;
  max-width: 540px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}
.guarantee-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 0;
}
.guarantee-btn-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 2.8rem;
}
/* Guarantee section buttons use unified system */
.guarantee-image {
  width: 480px;
  max-width: 90vw;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(10, 58, 126, 0.18);
  object-fit: contain;
  margin-top: 2.8rem;
  display: block;
}
@media (max-width: 900px) {
  .guarantee-section {
    padding: 2.2rem 0 2rem 0;
  }
  .guarantee-section .section-title {
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
    margin-top: 0.5rem;
    padding: 0 0.5rem;
  }
  .guarantee-text {
    font-size: 1.02rem;
    max-width: 95vw;
    margin-bottom: 1.5rem;
    padding: 0 0.7rem;
  }
  .guarantee-content {
    padding-top: 0;
    gap: 0;
  }
  .guarantee-image {
    width: 100vw;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 1.7rem;
    border-radius: 1.1rem;
  }
  .guarantee-btn-group {
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    width: 100%;
    align-items: center;
  }
  .guarantee-btn-group .btn {
    width: 90vw;
    max-width: 370px;
    font-size: 1.08rem;
    padding: 1.1rem 0.5rem;
    border-radius: 1.4rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Use unified button system */
}

@media (min-width: 901px) {
  .guarantee-content {
    flex-direction: column;
  }
}

header, .navbar {
  margin: 0 !important;
  padding: 0 !important;
}

/* LOGO BAND SECTION */
.logo-band {
  width: 100%;
  background: #f8f9fa; /* soft neutral gray instead of blue */
  padding: 2rem 0;
}
.logo-slider {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  scroll-behavior: auto; /* Instant scrolling for better performance */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

/* Gradient fade effect to indicate scrollable content */
.logo-band::before,
.logo-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.logo-band::before {
  left: 0;
  background: linear-gradient(to right, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

.logo-band::after {
  right: 0;
  background: linear-gradient(to left, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

.logo-band {
  position: relative;
}

/* Hide scrollbar for Webkit browsers */
.logo-slider::-webkit-scrollbar {
  display: none;
}
.logo-track {
  display: flex;
  align-items: center;
  animation: logo-scroll 40s linear infinite;
  will-change: transform;
  width: fit-content;
  gap: 35px; /* Space between logos for better infinite scrolling */
}
.logo-img {
  height: 65px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.98);
  transition: filter 0.2s;
  /* Ensure consistent width for seamless animation */
  min-width: 120px;
}
.logo-img:hover {
  filter: none;
}
@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
@media (max-width: 900px) {
  .logo-track {
    gap: 1.2rem;
    animation-duration: 25s;
  }
  .logo-img {
    height: 36px;
    min-width: 90px;
  }
}
@media (max-width: 600px) {
  .logo-band {
    padding: 1rem 0;
  }
  .logo-track {
    animation-duration: 20s;
  }
  .logo-img {
    height: 28px;
    min-width: 70px;
  }
}
.logo-slider {
  -webkit-overflow-scrolling: touch;
}

.logo-track.paused {
  animation-play-state: paused !important;
}

/* Pause animation on hover for desktop (but not when actively scrolling) */
.logo-slider:hover:not(.user-scrolling) .logo-track {
  animation-play-state: paused !important;
}

/* Pause animation on touch/tap for mobile (temporary - like desktop hover) */
.logo-slider:active .logo-track {
  animation-play-state: paused !important;
}

/* Pause animation when user is scrolling */
.logo-slider.user-scrolling .logo-track {
  animation-play-state: paused !important;
}



/* Add cursor pointer to indicate interactivity */
.logo-slider {
  cursor: grab;
  position: relative;
  user-select: none; /* Prevent text selection while dragging */
}

/* Change cursor when actively dragging */
.logo-slider:active {
  cursor: grabbing;
}

/* Ensure grab cursor is visible on desktop */
@media (min-width: 769px) {
  .logo-slider:not(.user-scrolling) {
    cursor: grab;
  }
}





/* Mobile optimizations */
@media (max-width: 768px) {
  .logo-slider {
    cursor: default; /* Remove grab cursor on mobile */
    -webkit-overflow-scrolling: auto; /* Disable native momentum, use custom */
    touch-action: pan-x; /* Allow horizontal panning only */
  }
  
  .logo-slider:active {
    opacity: 0.8;
    transition: opacity 0.1s ease;
  }
}
  

  


  
  /* Show play indicator when user has paused on mobile */
  .logo-slider.user-paused::after {
    opacity: 1;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUgMy44VjEyLjJDNSAxMi42NCA1LjM2IDEzIDUuOCAxM0M1Ljk5IDEzIDYuMTcgMTIuOTMgNi4zMiAxMi44Mkw5LjMyIDEwLjYyTDEyLjMyIDguNDJDMTIuNzMgOC4xNSAxMi44NyA7LjYxIDEyLjYgNy4yQzEyLjU0IDcuMTIgMTIuNDcgNy4wNSAxMi4zOSA2Ljk5TDkuMzkgNC43OUw2LjM5IDIuNTlDNS45OCAyLjMyIDUuNDQgMi40NiA1LjE3IDIuODdDNS4wNiAzLjAyIDUgMy4yIDUgMy4zOUw1IDMuOFoiIGZpbGw9IiMwMDMyODAiLz4KPC9zdmc+Cg==');
  }
  

  

  



/* NEDEN ORJINA SECTION - ENHANCED DESIGN */
.neden-orjina {
  width: 100%;
  background: #ffffff; /* clean white background */
  padding: 5rem 0 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.neden-orjina::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(10, 58, 126, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(74, 144, 226, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.neden-orjina .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 3.5rem;
  color: #1f2937;
  text-align: center;
  position: relative;
  z-index: 2;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
  background-clip: border-box;
  text-shadow: none;
  /* Initial state - 3D tech reveal */
  opacity: 0;
  transform: perspective(1000px) rotateX(20deg) translateY(30px);
  filter: blur(10px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.neden-orjina .section-title.fade-in-visible {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0);
  filter: blur(0px);
  animation: techGlow 3s ease-in-out infinite;
}

/* Tech glow effect */
@keyframes techGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(0, 50, 128, 0.3),
                 0 0 20px rgba(0, 50, 128, 0.2),
                 0 0 30px rgba(0, 50, 128, 0.1);
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 50, 128, 0.4),
                 0 0 30px rgba(0, 50, 128, 0.3),
                 0 0 40px rgba(0, 50, 128, 0.2);
  }
}

/* Tech Scan Underline Effect - NEW CLASS */
.tech-scan {
  position: relative;
  display: inline-block;
  color: #003280;
  text-decoration: none;
}

/* Horizontal scan line - glowing dot that moves across */
.tech-scan::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -10px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(0, 122, 255, 1) 0%, rgba(0, 122, 255, 0.5) 50%, transparent 100%);
  box-shadow: 0 0 15px rgba(0, 122, 255, 1),
              0 0 30px rgba(0, 122, 255, 0.8),
              0 0 45px rgba(0, 122, 255, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: techScanMove 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 100;
  filter: blur(0.5px);
}

@keyframes techScanMove {
  0% {
    opacity: 0;
    left: -10px;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    left: calc(100% + 10px);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: -10px;
  }
}

/* Underline that reveals and disappears with the scan */
.tech-scan::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, 
    #003280 0%, 
    #0066cc 50%, 
    #003280 100%);
  border-radius: 2px;
  animation: techScanReveal 4s ease-in-out infinite;
  box-shadow: 0 2px 15px rgba(0, 50, 128, 0.6);
  z-index: 99;
}

@keyframes techScanReveal {
  0% {
    width: 0%;
    opacity: 1;
  }
  10% {
    width: 0%;
    opacity: 1;
  }
  50% {
    width: 100%;
    opacity: 1;
    box-shadow: 0 2px 20px rgba(0, 102, 204, 0.8);
  }
  90% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 0%;
    opacity: 1;
  }
}


.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  justify-content: center;
  align-items: start;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.benefit-item:nth-child(7) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 500px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2341;
  min-width: 0;
  box-shadow: 
    0 8px 32px rgba(10, 58, 126, 0.08),
    0 2px 8px rgba(74, 144, 226, 0.06);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0 2px 4px rgba(10, 58, 126, 0.2));
  /* Fade-in animation setup */
  opacity: 0 !important;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important,
   transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  animation: none !important; /* Override any existing animations */
}

/* Target based on parent li nth-child, since buttons are nested inside li elements */

/* Items 1 & 3 (odd li elements) fade in from left */
.benefit-dropdown__item:nth-child(odd) .benefit-dropdown__question.benefit-item {
  transform: none !important;
  opacity: 1 !important;
}

.benefit-dropdown__item:nth-child(odd) .benefit-dropdown__question.benefit-item.fade-in-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Items 2 & 4 (even li elements) fade in from right */
.benefit-dropdown__item:nth-child(even) .benefit-dropdown__question.benefit-item {
  transform: none !important;
  opacity: 1 !important;
}

.benefit-dropdown__item:nth-child(even) .benefit-dropdown__question.benefit-item.fade-in-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* 5th item (5th li element) fades in from bottom */
.benefit-dropdown__item:nth-child(5) .benefit-dropdown__question.benefit-item {
  transform: none !important;
  opacity: 1 !important;
}

.benefit-dropdown__item:nth-child(5) .benefit-dropdown__question.benefit-item.fade-in-visible {
  opacity: 1 !important;
  transform: none !important;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.02) 0%, rgba(10, 58, 126, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(10, 58, 126, 0.15),
    0 8px 16px rgba(74, 144, 226, 0.1);
  border-color: rgba(74, 144, 226, 0.2);
}

.benefit-item:hover::before {
  opacity: 1;
}

/* Performance tweaks for Neden Orjina list */
.benefit-item {
  will-change: transform, opacity;
  contain: paint;
  transform: translateZ(0);
}

@media (min-width: 901px) {
  .benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 
      0 12px 24px rgba(10, 58, 126, 0.12),
      0 6px 12px rgba(74, 144, 226, 0.08);
  }
}

/* Firefox-specific softening of heavy effects */
@supports (-moz-appearance: none) {
  .benefit-item {
    backdrop-filter: none;
    filter: none;
    box-shadow: 0 8px 16px rgba(10, 58, 126, 0.10);
    transition: opacity 0.3s ease, box-shadow 0.2s ease;
  }
  @media (min-width: 901px) {
    .benefit-item:hover {
      transform: none;
    }
  }
}

/* Disabled old animations - now using scroll-triggered fade-in from right */
/*
.benefit-item:nth-child(odd) {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.benefit-item:nth-child(even) {
  animation: fadeInRight 0.8s ease-out forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }
.benefit-item:nth-child(6) { animation-delay: 0.6s; }
.benefit-item:nth-child(7) { animation-delay: 0.7s; }
*/

.benefit-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  margin-top: 0.1em;
  transition: transform 0.3s ease;
}

/* Desktop hover animation */
@media (min-width: 901px) {
  .benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
  }
}

/* Mobile & tablet - rotate based on dropdown state */
@media (max-width: 900px) {
  .benefit-dropdown__item.active .benefit-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .benefit-dropdown__item:not(.active) .benefit-icon {
    transform: scale(1) rotate(0deg);
  }
}

.benefit-text {
  display: block;
  font-weight: 700;
  color: #1a2341;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 900px) {
  .neden-orjina {
    padding: 2.5rem 1rem 2rem 1rem;
  }
  
  .neden-orjina .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }
  
  .benefit-item {
    font-size: 1rem;
    padding: 1.2rem;
    gap: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    text-align: left;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 50, 128, 0.08);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  
  .benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 50, 128, 0.12);
  }
  
  .benefit-item:nth-child(odd),
  .benefit-item:nth-child(even) {
    animation: none !important;
  }
  
  .benefit-icon {
    width: 3.75rem;
    height: 3.75rem;
    margin-top: 0;
    flex-shrink: 0;
    object-fit: contain;
    padding: 0.3rem;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .benefit-text {
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    margin: 0;
  }
}

/* Enhanced mobile design for smaller screens */
@media (max-width: 600px) {
  .neden-orjina {
    padding: 2rem 0.8rem 1.5rem 0.8rem;
  }
  
  .neden-orjina .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  
  .benefits-list {
    gap: 0.8rem;
  }
  
  .benefit-item {
    padding: 0.5rem;
    gap: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 50, 128, 0.1);
  }
  
  .benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .benefit-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

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

/* Cool section title animations */
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-60px) rotate(-5deg);
  }
  60% {
    opacity: 1;
    transform: translateY(15px) rotate(2deg);
  }
  80% {
    opacity: 1;
    transform: translateY(-5px) rotate(-1deg);
  }
  100% {
    opacity: 1 !important;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes typewriterNeon {
  0% {
    opacity: 0;
    width: 0;
    border-right: 3px solid #fff;
    text-shadow: none;
    transform: scale(0.95);
  }
  10% {
    opacity: 1;
    transform: scale(0.95);
  }
  70% {
    width: 100%;
    border-right: 3px solid #fff;
    text-shadow: 
      0 0 5px #fff,
      0 0 10px #fff,
      0 0 15px #fff,
      0 0 20px #4a90e2,
      0 0 35px #4a90e2,
      0 0 40px #4a90e2;
    transform: scale(1.02);
  }
  80% {
    border-right: 3px solid transparent;
    transform: scale(1.01);
  }
  90% {
    text-shadow: 
      0 0 8px #fff,
      0 0 16px #fff,
      0 0 24px #fff,
      0 0 32px #4a90e2,
      0 0 48px #4a90e2,
      0 0 56px #4a90e2;
    transform: scale(1.03);
  }
  100% {
    opacity: 1 !important;
    width: 100%;
    border-right: 3px solid transparent;
    text-shadow: 
      0 0 5px #fff,
      0 0 10px #fff,
      0 0 15px #fff,
      0 0 20px #4a90e2,
      0 0 25px #4a90e2,
      0 0 30px #4a90e2;
    transform: scale(1);
  }
}

@keyframes slideInScale {
  0% {
    opacity: 0;
    transform: translateX(-80px) scale(0.8) skewX(10deg);
  }
  60% {
    opacity: 0.8;
    transform: translateX(10px) scale(1.05) skewX(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1) skewX(0deg);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
    text-shadow: 0 0 10px rgba(74, 144, 226, 0);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
  }
  100% {
    opacity: 1 !important;
    transform: scale(1);
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.1);
  }
}

/* HERO SECTION (Restored) */
.section-hero {
  width: 100%;
  background: linear-gradient(135deg, #003280 0%, #0052a3 100%); /* softer gradient */
  color: #fff;
  text-align: center;
  padding: 4rem 0;
  margin-top: 0 !important;
}
.section-hero__headline,
.section-hero__desc {
  margin-top: 0;
}
.section-hero__headline {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.section-hero__desc {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 1rem;
  font-size: 1.25rem;
}
.section-hero__cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.section-hero .container {
  background: transparent;
}

/* Mobile responsive: Stack buttons in 2 rows */
@media (max-width: 767px) {
  .blog-hero-title.fade-in {
    opacity: 0;
    max-width: 60%;
    transform: translateY(30px);
    transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  }
  .section-hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
  }
  
  .section-hero__cta .btn {
    width: 90%;
    max-width: 320px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    text-align: center;
  }
}
/* Hero section buttons use unified system */

/* SECTION REALTIME GUARANTEE (Desktop) */
.section-realtime-guarantee {
  width: 100%;
  background: #ffffff; /* white background */
  color: #1f2937;
  padding: 4.5rem 0 4.5rem 0;
  text-align: center;
}
.section-realtime-guarantee__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-realtime-guarantee__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 550px;
  margin: 0;
  flex: 0 1 auto;
}
.section-realtime-guarantee__title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
  color: #1f2937;
  line-height: 1.2;
  text-align: center;
  
  /* Animation setup */
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-realtime-guarantee__title.title-animated {
  animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1 !important;
}
.section-realtime-guarantee__desc {
  font-size: 1.18rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  text-align: center;
  max-width: 540px;
}
.section-realtime-guarantee__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}
/* Realtime-guarantee section buttons use unified system */
.section-realtime-guarantee__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
}

.section-realtime-guarantee__visual img {
  width: 480px;
  max-width: 100%;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(237, 239, 241, 0.18);
  object-fit: contain;
  background: none;
}
.section-realtime-guarantee__img-mobile {
  display: none;
}
.section-realtime-guarantee__img-desktop {
  display: block;
}
@media (max-width: 900px) {
  .section-realtime-guarantee {
    padding: 2.2rem 0 2rem 0;
  }
  .section-realtime-guarantee__container {
    flex-direction: column;
    gap: 1.7rem;
  }
  .section-realtime-guarantee__info {
    order: 2;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .section-realtime-guarantee__visual {
    order: 1;
    margin-bottom: 0;
  }
  .section-realtime-guarantee__title {
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
    padding: 0 0.5rem;
  }
  .section-realtime-guarantee__desc {
    font-size: 1.02rem;
    max-width: 95vw;
    margin-bottom: 1.5rem;
    padding: 0 0.7rem;
  }
  .section-realtime-guarantee__buttons {
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 0.5rem;
    width: 100%;
    align-items: center;
  }
  .section-realtime-guarantee__buttons .btn {
    width: 90vw;
    max-width: 370px;
    font-size: 1.08rem;
    padding: 1.1rem 0.5rem;
    border-radius: 1.4rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Use unified button system */
  .section-realtime-guarantee__visual img {
    width: 100%;
    max-width: 100%;
    border-radius: 1.1rem;
  }
  .section-realtime-guarantee__img-desktop {
    display: none;
  }
  .section-realtime-guarantee__img-mobile {
    display: block;
  }
} 

/* Section How It Works */
.section-how-it-works {
  padding: 80px 0;
  background: var(--soft-gray);
}

.section-how-it-works__title {
  font-size: 48px;
  font-weight: 900;
  color: #003280;
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.1;
  
  /* Animation setup */
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-how-it-works__title.title-animated {
  animation: bounceInDown 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1 !important;
}

.section-how-it-works__desc {
  font-size: 20px;
  font-weight: 400;
  color: #666;
  text-align: center;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.how-it-works__blocks {
  display: flex;
  gap: 80px;
  margin-top: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works__block {
  flex: 1;
  text-align: left;
  padding: 0;
  background: none;
  border-radius: 0;
}

.how-it-works__block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.how-it-works__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #003280;
}

.how-it-works__block h3 {
  font-size: 24px;
  font-weight: 700;
  color: #003280;
  margin: 0;
}

.how-it-works__block p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.how-it-works__block p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .section-how-it-works {
    padding: 60px 0;
  }
  
  .section-how-it-works__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  
  .section-how-it-works__desc {
    font-size: 18px;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .how-it-works__blocks {
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }
  
  .how-it-works__block {
    padding: 30px 20px;
  }
  
  .how-it-works__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .how-it-works__block h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .how-it-works__block p {
    font-size: 15px;
  }
}

/* Section Corporate */
.section-corporate {
  background: linear-gradient(135deg, #003280 0%, #0052a3 100%); /* blue gradient */
  padding: 80px 0;
  color: #fff;
}

.section-corporate__title {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.1;
  
  /* Animation setup */
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-corporate__title.title-animated {
  animation: typewriterNeon 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1 !important;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 0;
}

.section-corporate__title.animation-complete {
  white-space: normal !important;
  overflow: visible !important;
  display: block !important;
  width: auto !important;
  text-shadow: none !important;
  color: #fff !important;
}

.section-corporate__content {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-corporate__img {
  flex: 0 0 auto;
  width: 400px;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(237, 239, 241, 0.18);
  border-radius: 12px;
}

.section-corporate__text {
  flex: 1;
}

.section-corporate__content p {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

/* Corporate section buttons use unified system above */

@media (max-width: 900px) {
  .section-corporate {
    padding: 60px 0;
  }
  
  .section-corporate__title {
    font-size: 32px;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .section-corporate__content {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
  
  .section-corporate__img {
    width: 100%;
    max-width: 320px;
  }
  
  .section-corporate__content p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .section-corporate__text {
    text-align: center;
  }
}

/* Section Video Player */
.section-video-player {
  padding: 80px 0;
  background: #ffffff; /* clean white background */
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px; /* Account for fixed header */
}

.section-video-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #003280, transparent);
  opacity: 0.3;
}

.section-video-player__content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.section-video-player__title {
  font-size: 48px;
  font-weight: 900;
  color: #1a2341; /* darker neutral instead of brand blue */
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.section-video-player__desc {
  font-size: 20px;
  font-weight: 400;
  color: #6b7280;
  text-align: center;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.video-container {
  margin: 0 auto 50px auto;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 50, 128, 0.1);
  transition: all 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 50, 128, 0.2);
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 50, 128, 0.1), rgba(75, 141, 248, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 16px;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
}

.video-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
  pointer-events: all;
}

.video-play-btn:hover {
  transform: scale(1);
}

.play-icon {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.section-video-player__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.section-video-player__actions .btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

/* Video player buttons use unified system */

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-video-player {
    padding: 60px 0;
  }
  
  .section-video-player__title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .section-video-player__desc {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  
  .video-container {
    margin: 0 20px 30px 20px;
  }
  
  .video-wrapper {
    border-radius: 12px;
  }
  
  .section-video-player__actions {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }
  
  .section-video-player__actions .btn {
    width: 100%;
    max-width: 300px;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .section-video-player__title {
    font-size: 28px;
  }
  
  .section-video-player__desc {
    font-size: 15px;
  }
  
  .video-container {
    margin: 0 15px 25px 15px;
  }
}

/* Section FAQ */
.section-faq {
  padding: 80px 0;
  background: #fff;
}

.section-faq__title {
  font-size: 48px;
  font-weight: 900;
  color: #003280;
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.1;
  
  /* Animation setup */
  opacity: 0;
  transition: all 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-faq__title.title-animated {
  animation: glowPulse 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1 !important;
}

.section-faq__desc {
  font-size: 20px;
  font-weight: 400;
  color: #003280;
  text-align: center;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-list__item {
  margin: 0;
}

.faq-list__question {
  width: 100%;
  background: #fff;
  border: 2px solid #d1d5db;
  border-radius: 16px;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  color: #003280;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-list__question:hover {
  border-color: #9ca3af;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-list__question span {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 16px;
  transition: all 0.3s ease;
}

.faq-icon-minus {
  display: none;
}

.faq-list__item.active .faq-icon-plus {
  display: none;
}

.faq-list__item.active .faq-icon-minus {
  display: block;
}

.faq-list__answer {
  display: none;
  padding: 0 28px 28px 28px;
  border-left: 2px solid #d1d5db;
  border-right: 2px solid #d1d5db;
  border-bottom: 2px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 16px 16px;
  background: #fff;
  margin-top: -2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-list__item.active .faq-list__answer {
  display: block;
}

.faq-list__item.active .faq-list__question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  box-shadow: none;
  position: relative;
}

.faq-list__item.active .faq-list__question::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background-color: #d1d5db;
}

.faq-list__answer p {
  font-size: 17px;
  line-height: 1.7;
  color: #003280;
  margin: 0;
  padding-top: 20px;
}

@media (max-width: 900px) {
  .section-faq {
    padding: 60px 0;
  }
  
  .section-faq__title {
    font-size: 32px;
    margin-bottom: 24px;
    padding: 0 20px;
  }
  
  .section-faq__desc {
    font-size: 18px;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .faq-list {
    padding: 0 20px;
  }
  
  .faq-list {
    gap: 16px;
  }
  
  .faq-list__question {
    padding: 20px 24px;
    font-size: 18px;
  }
  
  .faq-icon {
    margin-left: 12px;
  }
  
  .faq-list__answer {
    padding: 0 24px 24px 24px;
  }
  
  .faq-list__answer p {
    font-size: 16px;
    padding-top: 16px;
  }
  
  .faq-list__item.active .faq-list__question::after {
    left: 24px;
    right: 24px;
  }
}
/* COLORS + ACCENTS - Enhanced Button & Interaction System */

/* All buttons unified with color system */
/* All buttons inherit from unified system above */

/* Text color improvements for readability */
.section-hero {
    color: #fff;
}

.section-hero * {
    color: inherit;
}

.section-realtime-guarantee, .section-about {
    color: #1f2937;
}

.section-corporate {
    color: #fff;
}

.section-corporate * {
    color: inherit;
}

/* Exception: Buttons in corporate section should have their own text color */
.section-corporate .btn--corporate,
.section-corporate .btn--corporate *,
.section-corporate .btn--primary,
.section-corporate .btn--primary * {
    color: #003280 !important;
}

.section-corporate .btn--secondary,
.section-corporate .btn--secondary * {
    color: #ffffff !important;
}

/* Additional specificity for button text visibility */
.section-corporate a.btn--corporate {
    color: #003280 !important;
}

.section-corporate a.btn--primary {
    color: #003280 !important;
}

.section-how-it-works, .neden-orjina, .section-faq {
    color: var(--dark-gray);
}

/* Muted text elements */
.section-how-it-works__desc, .section-faq__desc {
    color: var(--text-muted);
}

/* Consolidate media queries */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}
.container {
  padding: 0 2rem;
}
@media (max-width: 991px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 1rem 0;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    p { font-size: 1rem; }
}

.section-blog {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  background: var(--soft-gray);
  min-height: 100vh;
}
.section-blog .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  color: var(--primary-blue);
  position: relative;
}
.section-blog .section-title::after {
  content: '';
  display: block;
  margin: 1.2rem auto 0 auto;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
}
.section-blog .section-desc {
  text-align: center;
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
}
.blog-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(0,40,120,0.06), 0 1px 4px 0 rgba(0,40,120,0.03);
  overflow: hidden;
  max-width: 370px;
  min-width: 270px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px 0 rgba(0,40,120,0.08), 0 2px 8px 0 rgba(0,40,120,0.04);
  border-color: #e0e0e0;
}
.blog-card__img-link {
  display: block;
  overflow: hidden;
}
.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  transition: filter 0.2s ease;
  background: #f8f9fa;
}
.blog-card:hover .blog-card__img {
  filter: brightness(1.02) saturate(1.05);
}
.blog-card__content {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
.blog-card__title a:hover {
  color: var(--primary-blue);
}
.blog-card__meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.75rem;
}
.blog-card__excerpt {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}
.blog-card__readmore {
  color: #4b8df8;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  align-self: flex-start;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card__readmore:hover {
  color: #003280;
  text-decoration: none;
}
@media (max-width: 991px) {
  .blog-list {
    gap: 1.5rem;
  }
  .blog-card {
    max-width: 100%;
    min-width: 0;
  }
  .blog-card__img {
    height: 170px;
  }
}

@media (max-width: 767px) {
  .section-blog {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }
  .section-blog .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .section-blog .section-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .blog-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }
  .blog-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .blog-card__img {
    height: 160px;
  }
  .blog-card__content {
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  }
  .blog-card__title {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  .blog-card__meta {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  .blog-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .blog-card__readmore {
    font-size: 0.9rem;
  }
}

/* --- BLOG POST DETAIL PAGE ENHANCEMENTS --- */
.section-blog-post {
  background: var(--soft-gray);
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}
.section-blog-post .container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.back-to-blog {
  display: inline-block;
  margin-bottom: 2.2rem;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 12px 0 rgba(0,40,120,0.07);
  padding: 0.5rem 1.3rem 0.5rem 1.1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: sticky;
  top: 6.5rem;
  z-index: 10;
}
.back-to-blog:hover {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(0,40,120,0.13);
}
.blog-post-content {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px 0 rgba(0,40,120,0.10), 0 2px 8px 0 rgba(0,40,120,0.06);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.blog-post-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.7rem;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.13;
  position: relative;
  z-index: 2;
}
.blog-post-title::after {
  content: '';
  display: block;
  margin: 1.1rem auto 0 auto;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
}
.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 2.1rem;
  font-weight: 500;
}
.blog-post-meta::before {
  content: '\1F4C5'; /* calendar emoji */
  font-size: 1.1em;
  margin-right: 0.5em;
  opacity: 0.7;
}
.blog-post-featured-img {
  margin: 0 auto 2.2rem auto;
  text-align: center;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(0,40,120,0.10);
  max-width: 100%;
}
.blog-post-featured-img img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 1.2rem;
  transition: filter 0.22s;
  background: #f7f7f7;
}
.blog-post-featured-img img:hover {
  filter: brightness(1.08) saturate(1.1);
}
.blog-post-body {
  font-size: 1.18rem;
  color: #333;
  line-height: 1.75;
  margin-top: 0.5rem;
}
.blog-post-body h2, .blog-post-body h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blog-post-body h2 {
  font-size: 1.55rem;
}
.blog-post-body h3 {
  font-size: 1.22rem;
}
.blog-post-body ul {
  margin: 1.2rem 0 1.2rem 1.5rem;
  padding: 0;
  list-style: disc;
}
.blog-post-body blockquote {
  background: linear-gradient(90deg, #eaf2ff 60%, #fff 100%);
  border-left: 5px solid var(--accent-blue);
  margin: 2.2rem 0;
  padding: 1.2rem 1.5rem;
  font-size: 1.18rem;
  font-style: italic;
  color: var(--primary-blue);
  border-radius: 0.7rem;
  box-shadow: 0 2px 10px 0 rgba(0,40,120,0.06);
  position: relative;
}
.blog-post-body blockquote::before {
  content: '\201C';
  font-size: 2.5rem;
  color: var(--accent-blue);
  position: absolute;
  left: 1rem;
  top: 0.2rem;
  opacity: 0.18;
}
.blog-post-body img {
  display: block;
  margin: 2.5rem auto;
  border-radius: 1rem;
  max-width: 100%;
  box-shadow: 0 2px 12px 0 rgba(0,40,120,0.08);
}
@media (max-width: 991px) {
  .section-blog-post {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }
  .blog-post-content {
    padding: 1.5rem 0.7rem 1.5rem 0.7rem;
  }
  .blog-post-title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .section-blog-post {
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
  }
  .blog-post-title {
    font-size: 1.35rem;
  }
  .back-to-blog {
    top: 4.2rem;
    font-size: 0.98rem;
    padding: 0.45rem 1rem 0.45rem 0.9rem;
  }
}

/* --- BLOG HERO WOW EFFECTS --- */
.blog-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
  z-index: 1;
}
.blog-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  filter: blur(8px) brightness(0.85) saturate(1.1);
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.blog-hero-glass {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 2rem 2.5rem 2rem;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 8px 32px 0 rgba(0,40,120,0.13);
  border-radius: 1.5rem 1.5rem 0 0;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  text-align: center;
}
.blog-hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
  line-height: 1.13;
  max-width: 80%;
  text-shadow: 0 2px 12px rgba(0,40,120,0.08);
}
.blog-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--primary-blue);
  font-size: 1.08rem;
  font-weight: 600;
  opacity: 0.92;
}
.blog-hero-meta svg {
  vertical-align: middle;
  margin-right: 0.4em;
}
/* Reading Progress Bar */
#readingProgressBar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--primary-blue));
  width: 0%;
  z-index: 9999;
  transition: width 0.18s cubic-bezier(.4,1.6,.6,1);
}
/* Floating Share Buttons */
.floating-share-buttons {
  position: fixed;
  top: 50%;
  right: 2.2rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  z-index: 100;
}
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0,40,120,0.10);
  color: var(--primary-blue);
  font-size: 1.2rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: none;
  outline: none;
  text-decoration: none;
}
.share-btn:hover {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(0,40,120,0.13);
}
.share-btn-twitter { color: #1da1f2; }
.share-btn-linkedin { color: #0077b5; }
.share-btn-whatsapp { color: #25d366; }
/* Author Card */
.author-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(0,40,120,0.08);
  padding: 1.3rem 1.5rem;
  margin: 2.5rem auto 0 auto;
  max-width: 420px;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--accent-blue);
  background: #eaf2ff;
}
.author-info {
  flex: 1;
}
.author-name {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.author-desc {
  color: #555;
  font-size: 1.01rem;
}
@media (max-width: 991px) {
  .blog-hero-title {
    font-size: 2rem;
    max-width: 60%;

  }
  .blog-hero-glass {
    padding: 1.5rem 0.7rem 1.5rem 0.7rem;
  }
 
  .author-card {
    padding: 1rem 0.7rem;
  }
}
@media (max-width: 767px) {
  .blog-hero {
    min-height: 180px;
  }
  .blog-hero-title {
    font-size: 1.15rem;
  }
  .blog-hero-glass {
    padding: 1rem 0.3rem 1rem 0.3rem;
    border-radius: 1rem 1rem 0 0;
  }
  .floating-share-buttons {
    display: none;
  }
  .author-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.8rem 0.5rem;
  }
  .author-avatar {
    width: 48px;
    height: 48px;
  }
}

/* --- RELATED POSTS SECTION --- */
.related-posts {
  margin: 3.5rem 0 0 0;
  padding: 0;
}
.related-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  text-align: left;
  letter-spacing: 0.2px;
}
.related-list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px 0 rgba(0,40,120,0.08);
  overflow: hidden;
  text-decoration: none;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  transition: transform 0.18s cubic-bezier(.4,1.6,.6,1), box-shadow 0.18s cubic-bezier(.4,1.6,.6,1);
  border: 1.5px solid #eaf2ff;
  position: relative;
}
.related-card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-0.5deg);
  box-shadow: 0 8px 32px 0 rgba(0,40,120,0.13), 0 2px 8px 0 rgba(0,40,120,0.07);
  border-color: var(--accent-blue);
}
.related-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-top-left-radius: 1.1rem;
  border-top-right-radius: 1.1rem;
  background: #f7f7f7;
  transition: filter 0.22s;
}
.related-card:hover .related-card-img {
  filter: brightness(1.08) saturate(1.1);
}
.related-card-content {
  padding: 1rem 1rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.related-card-date {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.related-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
  transition: color 0.18s;
}
.related-card:hover .related-card-title {
  color: var(--accent-blue);
}
@media (max-width: 991px) {
  .related-list {
    gap: 1rem;
  }
  .related-card {
    min-width: 0;
    max-width: 100%;
  }
  .related-card-img {
    height: 90px;
  }
}
@media (max-width: 767px) {
  .related-list {
    flex-direction: row;
    gap: 1rem;
  }
  .related-card-img {
    height: 70px;
  }
  .related-card-content {
    padding: 0.7rem 0.7rem 0.8rem 0.7rem;
  }
}

/* --- NEW BLOG HERO DESIGN --- */
.blog-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0,40,120,0.07);
}
.blog-hero-bg.new-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.82) saturate(1.1);
  z-index: 1;
}
.blog-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,50,128,0.18) 0%, rgba(0,50,128,0.08) 60%, rgba(255,255,255,0.98) 100%);
  z-index: 2;
}
.blog-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 3.2rem 2rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  background: rgba(255,255,255,0.92);
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 8px 32px 0 rgba(0,40,120,0.10);
  min-height: 220px;
}
.blog-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  line-height: 1.13;
  max-width: 80%;

  text-shadow: 0 2px 12px rgba(0,40,120,0.08);
}
.blog-hero-accent {
  width: 70px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
  margin: 0.7rem auto 1.2rem auto;
  animation: accent-move 2.2s infinite linear alternate;
}
@keyframes accent-move {
  0% { filter: brightness(1) drop-shadow(0 0 0 #4b8df8); }
  100% { filter: brightness(1.2) drop-shadow(0 0 8px #4b8df8); }
}
.blog-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--primary-blue);
  font-size: 1.08rem;
  font-weight: 600;
  opacity: 0.92;
}
.blog-hero-meta svg {
  vertical-align: middle;
  margin-right: 0.3em;
}
.blog-hero-dot {
  font-size: 1.5rem;
  color: var(--accent-blue);
  margin: 0 0.5rem;
  opacity: 0.5;
}
@media (max-width: 991px) {
  .blog-hero-content {
    padding: 2.2rem 0.7rem 1.5rem 0.7rem;
    max-width: 60%;

  }
  .blog-hero-title {
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  .blog-hero {
    min-height: 160px;
  }
  .blog-hero-content {
    padding: 1.2rem 0.3rem 0.7rem 0.3rem;
    border-radius: 0 0 1.2rem 1.2rem;
    min-height: 80px;
  }
  .blog-hero-title {
    font-size: 1.1rem;
  max-width: 40%;

  }
  .blog-hero-accent {
    width: 38px;
    height: 3px;
    margin: 0.5rem auto 0.7rem auto;
  }
}

/* --- MAGAZINE-STYLE BLOG HERO --- */
.blog-hero.magazine-hero {
  padding-top: 30px !important;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0,40,120,0.07);
  background: #000;
}
.blog-hero-bg.new-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.7) saturate(1.1);
  z-index: 1;
  
}
.blog-hero-gradient {
  background: linear-gradient(
    to top,
    rgba(0,50,128,0.28) 0%,
    rgba(0,50,128,0.18) 70%,
    rgba(0,50,128,0.00) 100%
  );
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.blog-hero-overlay-content {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  max-width: 900px;
  margin-left: 4vw;
  margin-bottom: 2.5vw;
}
.blog-hero-accent-vertical {
  width: 6px;
  min-width: 6px;
  height: 70px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
  margin-right: 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(0,40,120,0.10);
  animation: accent-move-vert 2.2s infinite linear alternate;
}
@keyframes accent-move-vert {
  0% { filter: brightness(1) drop-shadow(0 0 0 #4b8df8); }
  100% { filter: brightness(1.2) drop-shadow(0 0 8px #4b8df8); }
}
.blog-hero-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 0.5rem;
}
.blog-hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  line-height: 1.13;
  max-width: 80%;

  text-shadow: 0 2px 12px rgba(0,40,120,0.18);
  text-align: left;
}
.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #eaf2ff;
  font-size: 1.08rem;
  font-weight: 600;
  opacity: 0.97;
  text-shadow: 0 2px 12px rgba(0,40,120,0.18);
}
.blog-hero-meta svg {
  vertical-align: middle;
  margin-right: 0.3em;
}
.blog-hero-dot {
  font-size: 1.5rem;
  color: var(--accent-blue);
  margin: 0 0.5rem;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .blog-hero.magazine-hero {
    min-height: 180px;
  }
  .blog-hero-overlay-content {
    margin-left: 2vw;
    margin-bottom: 1vw;
  }
  .blog-hero-title {
    font-size: 1.5rem;
  }
  .blog-hero-accent-vertical {
    height: 40px;
    margin-right: 0.7rem;
  }
  .blog-hero-title {
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .blog-hero.magazine-hero {
    min-height: 110px;
  }
  .blog-hero-title {
    max-width: 40%;
  }
  .blog-hero-overlay-content {
    margin-left: 1vw;
    margin-bottom: 0.5vw;
  }
  .blog-hero-title {
    font-size: 1.05rem;
  }
  .blog-hero-accent-vertical {
    height: 22px;
    margin-right: 0.5rem;
  }
  .blog-hero-meta {
    font-size: 0.98rem;
  }
}

.blog-hero-back-btn {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  min-width: unset;
  max-width: unset;
  font-size: 1.08rem;
  padding: 0.5rem 1.3rem 0.5rem 1.1rem;
  border-radius: 2rem;
  box-shadow: 0 2px 12px 0 rgba(0,40,120,0.13);
  background: #fff;
  color: var(--primary-blue);
  z-index: 1;
  text-align: left;
  margin-bottom: 1.2rem;
  display: inline-block;
}

@media (max-width: 767px) {
  .blog-hero-back-btn {
    position: fixed;
    top: 6rem;
    left: 1rem;
    right: 1rem;
    transform: none;
    min-width: unset;
    max-width: none;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 1.2rem;
    box-shadow: 0 4px 16px rgba(0, 40, 120, 0.15);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-blue);
    z-index: 10001;
    text-align: center;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .blog-hero.magazine-hero {
    min-height: 240px;
    position: relative;
    margin-top: 5rem;
  }
  
  .blog-hero-overlay-content {
    margin-top: 0;
    padding-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
  }
  
  .blog-hero-texts {
    padding-top: 0;
  }
  
  .blog-hero-title {
    font-size: 1.1rem !important;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }
  
  .blog-hero-meta {
    font-size: 0.8rem !important;
  }
}

/* --- TRUST EFFECT FOR LANGUAGE CHANGE --- */
.trust-effect::before {
  content: '';
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #eaf2ff 0%, #c7e0ff 100%);
  opacity: 0.0;
  pointer-events: none;
  animation: trustFade 0.6s cubic-bezier(.4,1.6,.6,1);
}
.trust-effect {
  animation: trustContent 0.6s cubic-bezier(.4,1.6,.6,1);
}
@keyframes trustFade {
  0% { opacity: 0; }
  20% { opacity: 0.7; }
  80% { opacity: 0.7; }
  100% { opacity: 0; }
}
@keyframes trustContent {
  0% { filter: blur(0px) brightness(1) scale(1); }
  20% { filter: blur(2px) brightness(1.05) scale(1.01); }
  80% { filter: blur(2px) brightness(1.05) scale(1.01); }
  100% { filter: blur(0px) brightness(1) scale(1); }
}

/* --- ULTRA-SMOOTH TRUST FADE EFFECT FOR LANGUAGE CHANGE --- */
.trust-fade-effect::before {
  content: '';
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  animation: trustFadeWhite 0.7s cubic-bezier(.4,1.6,.6,1);
}
.trust-fade-effect .trust-fade-icon {
  display: block;
  position: fixed;
  z-index: 10000;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  pointer-events: none;
  animation: trustIconFade 0.7s cubic-bezier(.4,1.6,.6,1);
}
@keyframes trustFadeWhite {
  0% { opacity: 0; }
  20% { opacity: 0.95; }
  80% { opacity: 0.95; }
  100% { opacity: 0; }
}
@keyframes trustIconFade {
  0% { opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; }
}

.trust-spinner {
  display: block;
  width: 54px;
  height: 54px;
}
.trust-spinner-arc {
  stroke: var(--accent-blue);
  stroke-width: 6;
  stroke-linecap: round;
  transform-origin: 50% 50%;
  animation: trustSpinnerSpin 1s linear infinite;
}
@keyframes trustSpinnerSpin {
  100% { transform: rotate(360deg); }
}

/* Enhanced Blog Card Styles */
.blog-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 40, 120, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 40, 120, 0.12);
}

.blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-card__img-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-card__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

.blog-card__category {
    display: none;
}

.blog-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card__title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #003280;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
    color: #4b8df8;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.blog-card__date,
.blog-card__readtime {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card__dot {
    color: #ccc;
}

.blog-card__excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4b8df8;
    font-weight: 500;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.blog-card:hover .blog-card__readmore {
    gap: 12px;
}

/* Blog Post Content Enhancements */
.blog-post-body h2 {
    font-size: 2rem;
    color: #003280;
    margin: 2rem 0 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.blog-post-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 4px;
    background: #4b8df8;
    border-radius: 2px;
}

.blog-post-body h3 {
    font-size: 1.5rem;
    color: #003280;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-post-body h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4b8df8;
    border-radius: 50%;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-post-body li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.blog-post-body ul li::before {
    content: '•';
    color: #4b8df8;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
}

.blog-post-body blockquote {
    background: #f7f9ff;
    border-left: 4px solid #4b8df8;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #003280;
}

.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 40, 120, 0.06);
}

.blog-post-body th {
    background: #eaf2ff;
    color: #003280;
    font-weight: 600;
    text-align: left;
    padding: 1rem;
    border-bottom: 2px solid #d1e3fa;
}

.blog-post-body td {
    padding: 1rem;
    border-bottom: 1px solid #eaeaea;
    color: #333;
}

.blog-post-body tr:last-child td {
    border-bottom: none;
}

/* Related Posts Enhancement */
.related-posts {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid #eaeaea;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f8f9fa;
}

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

.related-title {
    font-size: 1.8rem;
    color: #003280;
    margin-bottom: 2rem;
    text-align: center;
}

.related-carousel {
    position: relative;
    overflow: hidden;
}

.related-list {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    padding: 0 60px;
    flex-wrap: nowrap;
}

.related-card {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #4b8df8;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #4b8df8;
    font-size: 20px;
    font-weight: bold;
}

.carousel-nav:hover {
    background: #4b8df8;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 40, 120, 0.08);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card-content {
    padding: 1.5rem;
}

.related-card-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.related-card-title {
    color: #003280;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-card:hover .related-card-title {
    color: #4b8df8;
}

/* Responsive styles for carousel */
@media (max-width: 991px) {
  .related-list {
    padding: 0 50px;
    flex-wrap: nowrap;
  }
  .related-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
  }
  .related-card-img {
    height: 160px;
  }
  .carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .related-posts {
    padding: 3rem 0;
    background: #f8faff;
  }
  
  .related-carousel {
    position: relative;
    overflow: hidden;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .related-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: unset !important;
    max-width: unset !important;
    padding: 0 60px;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    gap: 1rem;
    transition: transform 0.3s ease;
  }
  .carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 50, 128, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  .carousel-nav:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 50, 128, 0.25);
  }
  
  .carousel-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }
  
  .carousel-nav.prev {
    left: 10px;
  }
  
  .carousel-nav.next {
    right: 10px;
  }
  
  .related-card {
    box-sizing: border-box !important;
    flex: 0 0 auto;
    min-width: 50% !important;
    max-width: 50% !important;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 50, 128, 0.08);
    border: 1px solid rgba(0, 50, 128, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 280px;
    width: 50%;
  }
 
  .related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 50, 128, 0.12);
  }
  
  .related-card-img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .related-card-content {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .related-card-date {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .related-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.3;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0;
  }
  
  .related-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: var(--primary-blue);
    font-weight: 700;
  }
}






/* NEDEN ORJINA DROPDOWN STYLE (inherits FAQ style, keeps benefit visuals) */
.benefits-dropdown-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
  justify-content: center;
  align-items: start;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

/* Desktop checkerboard pattern - true alternating grid */
@media (min-width: 901px) {
  /* Blue items: 1, 4, 5 (creates checkerboard) */
  .benefit-dropdown__item:nth-child(1) .benefit-dropdown__question,
  .benefit-dropdown__item:nth-child(4) .benefit-dropdown__question,
  .benefit-dropdown__item:nth-child(5) .benefit-dropdown__question {
    background: linear-gradient(135deg, #003280 0%, #0052a3 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
  }
  
  .benefit-dropdown__item:nth-child(1) .benefit-dropdown__question .benefit-text,
  .benefit-dropdown__item:nth-child(4) .benefit-dropdown__question .benefit-text,
  .benefit-dropdown__item:nth-child(5) .benefit-dropdown__question .benefit-text,
  .benefit-dropdown__item:nth-child(1) .benefit-dropdown__question .benefit-text strong,
  .benefit-dropdown__item:nth-child(4) .benefit-dropdown__question .benefit-text strong,
  .benefit-dropdown__item:nth-child(5) .benefit-dropdown__question .benefit-text strong {
    color: #ffffff !important;
  }
  
  .benefit-dropdown__item:nth-child(1) .benefit-dropdown__question .faq-icon,
  .benefit-dropdown__item:nth-child(4) .benefit-dropdown__question .faq-icon,
  .benefit-dropdown__item:nth-child(5) .benefit-dropdown__question .faq-icon {
    stroke: #ffffff !important;
  }
  
  /* White items: 2, 3, 6 (creates checkerboard) */
  .benefit-dropdown__item:nth-child(2) .benefit-dropdown__question,
  .benefit-dropdown__item:nth-child(3) .benefit-dropdown__question,
  .benefit-dropdown__item:nth-child(6) .benefit-dropdown__question {
    background: #ffffff !important;
    border: 2px solid #003280 !important;
    color: #003280 !important;
  }
  
  .benefit-dropdown__item:nth-child(2) .benefit-dropdown__question .benefit-text,
  .benefit-dropdown__item:nth-child(3) .benefit-dropdown__question .benefit-text,
  .benefit-dropdown__item:nth-child(6) .benefit-dropdown__question .benefit-text,
  .benefit-dropdown__item:nth-child(2) .benefit-dropdown__question .benefit-text strong,
  .benefit-dropdown__item:nth-child(3) .benefit-dropdown__question .benefit-text strong,
  .benefit-dropdown__item:nth-child(6) .benefit-dropdown__question .benefit-text strong {
    color: #003280 !important;
  }
  
  .benefit-dropdown__item:nth-child(2) .benefit-dropdown__question .faq-icon,
  .benefit-dropdown__item:nth-child(3) .benefit-dropdown__question .faq-icon,
  .benefit-dropdown__item:nth-child(6) .benefit-dropdown__question .faq-icon {
    stroke: #003280 !important;
  }
  
  /* Answer sections for blue items (1, 4, 5) */
  .benefit-dropdown__item:nth-child(1) .benefit-dropdown__answer,
  .benefit-dropdown__item:nth-child(4) .benefit-dropdown__answer,
  .benefit-dropdown__item:nth-child(5) .benefit-dropdown__answer {
    background: linear-gradient(135deg, #003280 0%, #0052a3 100%) !important;
    border-left: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-right: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
  }
  
  .benefit-dropdown__item:nth-child(1) .benefit-dropdown__answer p,
  .benefit-dropdown__item:nth-child(4) .benefit-dropdown__answer p,
  .benefit-dropdown__item:nth-child(5) .benefit-dropdown__answer p {
    color: #ffffff !important;
  }
  
  /* Answer sections for white items (2, 3, 6) */
  .benefit-dropdown__item:nth-child(2) .benefit-dropdown__answer,
  .benefit-dropdown__item:nth-child(3) .benefit-dropdown__answer,
  .benefit-dropdown__item:nth-child(6) .benefit-dropdown__answer {
    background: #ffffff !important;
    border-left: 2px solid #003280 !important;
    border-right: 2px solid #003280 !important;
    border-bottom: 2px solid #003280 !important;
  }
  
  .benefit-dropdown__item:nth-child(2) .benefit-dropdown__answer p,
  .benefit-dropdown__item:nth-child(3) .benefit-dropdown__answer p,
  .benefit-dropdown__item:nth-child(6) .benefit-dropdown__answer p {
    color: #003280 !important;
  }
  
  /* Hover effects for blue items */
  .benefit-dropdown__item:nth-child(1) .benefit-dropdown__question:hover,
  .benefit-dropdown__item:nth-child(4) .benefit-dropdown__question:hover,
  .benefit-dropdown__item:nth-child(5) .benefit-dropdown__question:hover {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 50, 128, 0.4) !important;
  }
  
  /* Hover effects for white items */
  .benefit-dropdown__item:nth-child(2) .benefit-dropdown__question:hover,
  .benefit-dropdown__item:nth-child(3) .benefit-dropdown__question:hover,
  .benefit-dropdown__item:nth-child(6) .benefit-dropdown__question:hover {
    background: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 50, 128, 0.2) !important;
  }
}
/* Mobile only - Alternating colors */
@media (max-width: 900px) {
  .neden-orjina .benefit-dropdown__item:nth-child(odd) .benefit-text {
    color: #ffffff !important;
  }
  .neden-orjina .benefit-dropdown__item:nth-child(even) .benefit-text {
    color: #003280 !important;
  }
}
@media (hover: hover) {
  .neden-orjina .benefit-item:hover .benefit-text {
    filter: brightness(0.95);
  }
}
@media (max-width: 900px) {
  .benefits-dropdown-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }
}

.benefit-dropdown__question {
  width: 100%;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2341;
  min-width: 0;
  box-shadow: 0 8px 32px rgba(10,58,126,0.08), 0 2px 8px rgba(74,144,226,0.06);
  transition: all 0.3s ease;
}

/* Mobile only - Odd items - Blue background with white text */
@media (max-width: 900px) {
  .benefit-dropdown__item:nth-child(odd) .benefit-dropdown__question {
    background: linear-gradient(135deg, #003280 0%, #0052a3 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
  }

  .benefit-dropdown__item:nth-child(odd) .benefit-dropdown__question .benefit-text,
  .benefit-dropdown__item:nth-child(odd) .benefit-dropdown__question .benefit-text strong {
    color: #ffffff !important;
  }

  .benefit-dropdown__item:nth-child(odd) .benefit-dropdown__question .faq-icon {
    stroke: #ffffff !important;
  }

  /* Even items - White background with blue text */
  .benefit-dropdown__item:nth-child(even) .benefit-dropdown__question {
    background: #ffffff !important;
    border: 2px solid #003280 !important;
    color: #003280 !important;
  }

  .benefit-dropdown__item:nth-child(even) .benefit-dropdown__question .benefit-text,
  .benefit-dropdown__item:nth-child(even) .benefit-dropdown__question .benefit-text strong {
    color: #003280 !important;
  }

  .benefit-dropdown__item:nth-child(even) .benefit-dropdown__question .faq-icon {
    stroke: #003280 !important;
  }
}
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0 2px 4px rgba(10,58,126,0.2));
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  outline: none;
}
.benefit-dropdown__item.active .benefit-dropdown__question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  box-shadow: none;
  position: relative;
}
.benefit-dropdown__question .faq-icon-plus { display: inline; }
.benefit-dropdown__question .faq-icon-minus { display: none; }
.benefit-dropdown__item.active .faq-icon-plus { display: none; }
.benefit-dropdown__item.active .faq-icon-minus { display: inline; }
.benefit-dropdown__answer {
  display: none;
  padding: 0 1.5rem 1.2rem 4.5rem;
  border-left: 1px solid rgba(255,255,255,0.3);
  border-right: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  border-top: none;
  border-radius: 0 0 16px 16px;
  background: rgba(255,255,255,0.7);
  margin-top: -1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.benefit-dropdown__item.active .benefit-dropdown__answer {
  display: block;
}

/* Mobile only - First answer section - Alternating colors */
@media (max-width: 900px) {
  .benefit-dropdown__item:nth-child(odd) .benefit-dropdown__answer {
    background: linear-gradient(135deg, #003280 0%, #0052a3 100%) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  }

  .benefit-dropdown__item:nth-child(even) .benefit-dropdown__answer {
    background: #ffffff !important;
    border-left: 1px solid #003280 !important;
    border-right: 1px solid #003280 !important;
    border-bottom: 1px solid #003280 !important;
  }
}
@media (max-width: 900px) {
  .benefit-dropdown__question {
    font-size: 1rem;
    padding: 1.2rem;
    gap: 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 32px rgba(0,50,128,0.08);
  }
  .benefit-dropdown__answer {
    padding: 0 1.2rem 1.2rem 3.5rem;
  }
}
@media (max-width: 600px) {
  .benefit-dropdown__question {
    padding: 0.5rem;
    gap: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(0,50,128,0.1);
  }
  .benefit-dropdown__answer {
    padding: 0 0.8rem 0.8rem 2.8rem;
  }
}

/* --- NEDEN ORJINA DROPDOWN: FAQ-LIKE OPENED STYLE --- */
.benefit-dropdown__answer {
  display: none;
  background: #fff;
  border-left: 2px solid #d1d5db;
  border-right: 2px solid #d1d5db;
  border-bottom: 2px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 16px 16px;
  margin-top: -2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 0 28px 28px 28px;
  position: relative;
}
.benefit-dropdown__item.active .benefit-dropdown__answer {
  display: block;
}

/* Mobile only - Answer sections for odd items (blue background items) */
@media (max-width: 900px) {
  .benefit-dropdown__item:nth-child(odd) .benefit-dropdown__answer {
    background: linear-gradient(135deg, #003280 0%, #0052a3 100%) !important;
    border-left: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-right: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
  }

  .benefit-dropdown__item:nth-child(odd) .benefit-dropdown__answer p {
    color: #ffffff !important;
  }

  /* Answer sections for even items (white background items) */
  .benefit-dropdown__item:nth-child(even) .benefit-dropdown__answer {
    background: #ffffff !important;
    border-left: 2px solid #003280 !important;
    border-right: 2px solid #003280 !important;
    border-bottom: 2px solid #003280 !important;
  }

  .benefit-dropdown__item:nth-child(even) .benefit-dropdown__answer p {
    color: #003280 !important;
  }
}

/* Mobile only - Hover effects for odd items (blue backgrounds) */
@media (max-width: 900px) {
  .benefit-dropdown__item:nth-child(odd) .benefit-dropdown__question:hover {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 50, 128, 0.3);
  }

  /* Hover effects for even items (white backgrounds) */
  .benefit-dropdown__item:nth-child(even) .benefit-dropdown__question:hover {
    background: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 50, 128, 0.15);
  }

  /* Divider line for active odd items */
  .benefit-dropdown__item:nth-child(odd).active .benefit-dropdown__question::after {
    background-color: rgba(255, 255, 255, 0.3);
  }

  /* Divider line for active even items */
  .benefit-dropdown__item:nth-child(even).active .benefit-dropdown__question::after {
    background-color: #003280;
  }
}

.benefit-dropdown__answer p {
  font-size: 17px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
  padding-top: 20px;
}
.benefit-dropdown__item.active .benefit-dropdown__question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  box-shadow: none;
  position: relative;
}
.benefit-dropdown__item.active .benefit-dropdown__question::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background-color: #d1d5db;
}
@media (max-width: 900px) {
  .benefit-dropdown__answer {
    padding: 0 24px 24px 24px;
  }
  .benefit-dropdown__answer p {
    font-size: 16px;
    padding-top: 16px;
  }
  .benefit-dropdown__item.active .benefit-dropdown__question::after {
    left: 24px;
    right: 24px;
  }
}
@media (max-width: 600px) {
  .benefit-dropdown__answer {
    padding: 0 12px 16px 12px;
  }
  .benefit-dropdown__answer p {
    font-size: 15px;
    padding-top: 12px;
  }
  .benefit-dropdown__item.active .benefit-dropdown__question::after {
    left: 12px;
    right: 12px;
  }
}
/* ————————— Marker effect ————————— */
.marker {
  position: relative;
  display: inline-block;
  overflow: hidden;
  /* white "bar" */
  background-image: linear-gradient(var(--white), var(--white));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: 0 0;
  /* desktop sweep */
  transition: background-size 1.8s cubic-bezier(.85,0,.15,1) 0.1s;
  color: #fff; /* start letters white */
}
.marker.in-view {
  background-size: 100% 100%;
  
}
/* Tech scan overlay line */
.marker::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(59,130,246,0) 0%, rgba(59,130,246,0.85) 50%, rgba(59,130,246,0) 100%);
  filter: blur(0.6px); /* remove blur */
  opacity: 0;
  pointer-events: none;
}
.marker.in-view::before {
  opacity: 1;
  width: 75%;
  animation: marker-scan 2200ms cubic-bezier(.2,.7,.2,1) 40ms forwards;
}
@keyframes marker-scan {
  0% { transform: translateX(0); opacity: 0.0; }
  15% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(260%); opacity: 0; }
}
/* ————— Letter-by-letter color flip ————— */
.marker .char {
  display: inline-block;
  white-space: pre;            /* start white */
  color: #fff;          
  transition: color 600ms ease;    /* same duration as your sweep */
}

.marker .char.in-view {
  color: var(--primary-dark);      /* #003280 once the bar passes */
}
/* Subtle character glow as scan passes */
.marker .char.in-view {
  text-shadow: none;           /* remove glow/blur */
  animation: none;             /* no glow animation */
}
/* ————————————————————————————————————— */
/* 1/4em is about the width of a normal space */
.marker .char.space {
  /* you can tweak this "0.25em" until it looks right */
  display: inline-block;    /* (might already be inherited) */
  width: 0.25em;
}


/* ————————— Circle effect ————————— */
.circle {
  position: relative;
  display: inline-block;
}
.circle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width:  calc(100% + 0.8em);
  height: calc(100% + 0.8em);
  border: 2px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -5%) scale(0);
  transform-origin: center;
  /* desktop pop-in */
  transition: transform 0.4s ease-out 0.4s;
}
.circle.in-view::after {
  transform: translate(-50%, -50%) scale(1);
}

/* ————————— Underline effect ————————— */
.underline {
  text-decoration: none !important;
  position: relative;
  display: inline-block;
}
.underline::after {
  content: '';
  position: absolute;
  bottom: -0.1em; left: 0;
  width: 0;
  height: 3px;
  background: var(--white);
  /* desktop draw */
  transition: width 0.5s cubic-bezier(.85,0,.15,1) 2.5s; /* delay until after text sweep */
}
.underline.in-view::after {
  width: 100%;
}

/* ————————— Responsive Tweaks ————————— */
/* Confirmation pulse after scan */
.marker-confirm {
  position: absolute;
  right: 0.05em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.05em;
  height: 1.05em;
  border-radius: 9999px;
  background: #ffffff; /* white outer */
  border: 2px solid #003280;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: marker-ping 900ms ease-out forwards;
}
.marker-confirm::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.45em;
  height: 0.25em;
  border-left: 2px solid #003280; /* tick in #003280 */
  border-bottom: 2px solid #003280;
  transform: translate(-50%, -55%) rotate(-45deg);
}
@keyframes marker-ping {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.8); transform: translateY(-50%) scale(0.85); }
  40% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); transform: translateY(-50%) scale(1); }
}
@media (max-width: 991px) {
  /* slightly faster sweeps on tablet */
  .marker {
    transition: background-size 0.5s cubic-bezier(.85,0,.15,1);
  }
  .circle::after {
    width:  calc(100% + 0.6em);
    height: calc(100% + 0.6em);
    transition: transform 0.35s ease-out 0.35s;
  }
  .underline::after {
    transition: width 0.4s cubic-bezier(.85,0,.15,1) 2.3s; /* delay until after text sweep */
  }
}

@media (max-width: 767px) {
  /* snappiest on mobile */
  .marker {
    transition: background-size 0.4s cubic-bezier(.85,0,.15,1);
  }
  .circle::after {
    width:  calc(100% + 0.4em);
    height: calc(100% + 0.4em);
    transition: transform 0.3s ease-out 0.3s;
  }
  .underline::after {
    transition: width 0.3s cubic-bezier(.85,0,.15,1) 2.2s; /* delay until after text sweep */
  }
}
.marker,
.circle,
.underline {
  /* instead of inline-block… */
  display: inline-flex;
  /* center the text + the absolutely‐positioned scribble/highlight */
  align-items: center;
  /* now each span lines up with its siblings */
}

/* Fine-tuned inline paddings */
.marker { padding-left: 0.1em; padding-right: 1.1em; }
.underline { padding-left: 0.1em; padding-right: 0.1em; }
.circle { padding-left: 0.1em; padding-right: 0.1em; }

.desktop-nav-link {
  white-space: nowrap;
}

.circle-check {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  text-align: center;
  line-height: 1.1em;
  font-size: 0.85em;
  font-weight: bold;
  vertical-align: middle;
  color: #003280; /* Or your preferred color */
  background: #fff;
  margin-left: 0.2em;
}

.orjina-mark-wrapper {
  position: relative;
  display: inline-block;
}

.orjina-mark-wrapper .circle-check {
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  /* Adjust right/top as needed for perfect alignment */
}

/* --- HAKKIMIZDA SECTION (About Us) --- */
.section-about {
  background: #ffffff; /* white background */
  padding: 64px 0 64px 0;
}
.section-about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.section-about__image-wrapper {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-about__image {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(237, 239, 241, 0.18);
  border-radius: 12px;
  background: #fff;
}
.section-about__content {
  flex: 2 1 400px;
  min-width: 280px;
  color: #1f2937;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.section-about__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
  letter-spacing: 0.02em;
}
.section-about__desc {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 24px;
}
/* About section buttons use unified system */
@media (max-width: 900px) {
  .section-about__container {
    gap: 32px;
    align-items: center;
  }
  .section-about__content {
    align-items: center;
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 800px) {
  .lang-dropdown.right {
    position: relative;
    opacity: 1;
    top: 25%;
}
}
@media (max-width: 600px) {
  .section-about {
    padding: 36px 0 36px 0;
  }
  .section-about__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section-about__image {
    max-width: 90vw;
  }
  .section-about__title {
    font-size: 1.5rem;
  }
  .section-about__desc {
    font-size: 1rem;
  }
  .section-about__btn {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }
}



/* --- GÜVENLİ ALIŞVERİŞ SECTION (Text First, Then Image, White Background) --- */
.section-guvenli-alisveris {
  background: #fff;
  padding: 64px 0 64px 0;
}
.section-guvenli-alisveris__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.section-guvenli-alisveris__content {
  flex: 2 1 400px;
  min-width: 280px;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.section-guvenli-alisveris__title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
  letter-spacing: 0.02em;
  text-align: left;
}
.section-guvenli-alisveris__desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 0;
  text-align: left;
}
.section-guvenli-alisveris__image-wrapper {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-guvenli-alisveris__image {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  background: #fff;
}
@media (max-width: 900px) {
  .section-guvenli-alisveris__container {
    gap: 32px;
    align-items: center;
  }
  .section-guvenli-alisveris__content {
    align-items: flex-start;
    text-align: left;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 600px) {
  .section-guvenli-alisveris {
    padding: 36px 0 36px 0;
  }
  .section-guvenli-alisveris__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section-guvenli-alisveris__image {
    max-width: 90vw;
  }
  .section-guvenli-alisveris__title {
    font-size: 1.3rem;
    text-align: left;
  }
  .section-guvenli-alisveris__desc {
    font-size: 1rem;
    text-align: left;
  }
}

/* Hakkımızda section responsive images */
.section-about__image--mobile { display: none; }
@media (max-width: 600px) {
  .section-about__image--desktop { display: none !important; }
  .section-about__image--mobile { display: block !important; max-width: 90vw; }
}



/* Section Güvenli Alışveriş responsive images */
.section-guvenli-alisveris__image--mobile { display: none; }
@media (max-width: 600px) {
  .section-guvenli-alisveris__image--desktop { display: none !important; }
  .section-guvenli-alisveris__image--mobile { display: block !important; max-width: 90vw; width: 100%; height: auto; }
}

/* Section Corporate responsive images */
.section-corporate__img--mobile { display: none; }
@media (max-width: 600px) {
  .section-corporate__img--desktop { display: none !important; }
  .section-corporate__img--mobile { display: block !important; max-width: 90vw; width: 100%; height: auto; }
  
}

.blog-hero-img-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}
.blog-hero.magazine-hero {
  padding: 0;
}

.blog-hero-meta-bg {
  background: rgba(10, 20, 40, 0.85);
  border-radius: 0.7em;
  padding: 0.6em 1.2em;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.blog-hero-meta {
  color: #fff;
}


@keyframes fadeInSmooth {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.fade-in-smooth {
  opacity: 0;
  animation: fadeInSmooth 2s ease-out 0.2s forwards;
}

@media (max-width: 600px) {
  .blog-hero-meta-bg {
    
    padding: 0.1em 0.6em;
  }
}
@media (min-width: 1200px) {
  .float-right {
    right: 0px !important;
  }
  .blog-hero-title.fade-in {
    max-width: 70%;
    font-size: 55px;
  }
}
@media (max-width: 1200px) {
  .blog-hero-title.fade-in {
    max-width: 70%;
    font-size: 50px;
  }
}
@media (max-width: 1050px) {
  .blog-hero-title.fade-in {
    max-width: 60%;
    font-size: 40px;
  }
  .blog-hero-meta {
    font-size: 15px;
  }
  .blog-hero-meta-bg {
    padding: 0.1em 0.6em;
    margin-top: 0px;
  }
}
@media (max-width: 800px) {
  .blog-hero-title.fade-in {
    max-width: 50%;
    font-size: 35px;
  }
  .blog-hero-meta {
    font-size: 15px;
  }
  .blog-hero-meta-bg {
    padding: 0.1em 0.6em;
    margin-top: 0px;
  }
  .blog-hero.magazine-hero {
    padding-top:55px !important;
    background-color: #003280;
  }
}

@media (max-width: 767px) {
  .blog-hero-title.fade-in {
    max-width: 50% !important;
    font-size: 35px !important;
  }
  .blog-hero-meta {
    font-size: 10px !important;
    gap: 0px !important;
  }
  .blog-hero-meta-bg {
    margin-top: 0px;
    margin-bottom: 0px !important;
  }
  .blog-hero.magazine-hero {
    padding-top:50px !important;
    background-color: #003280;
    margin-top: 0px;
  }
}
@media (max-width: 700px) {
  .blog-hero-title.fade-in {
    max-width: 50% !important;
    font-size: 21px !important;
  }
}
@media (max-width: 500px) {
  .blog-hero-title.fade-in {
    max-width: 50% !important;
    font-size: 20px !important;
  }
}
@media (max-width: 400px) { .blog-hero-title.fade-in {
  max-width: 50%;
  font-size: 16px !important;
}
.blog-hero-meta-bg{
  display: none;
}
}

.neden-orjina{
  padding-bottom: 50px;
}

/* Scroll-based opacity animation for About section */
.section-about__content {
  opacity: 0.3;
  transition: opacity 0.8s ease-out;
}

.section-about__content.scroll-visible {
  opacity: 1;
}
}

/* Section Join (ported from core.css) */
.section-join {
  background: var(--primary-blue);
  padding: 80px 0;
  color: #fff;
}

.section-join__title {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.1;
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-join__title.title-animated {
  animation: typewriterNeon 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1 !important;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 0;
}

.section-join__title.animation-complete {
  white-space: normal !important;
  overflow: visible !important;
  display: block !important;
  width: auto !important;
  text-shadow: none !important;
  color: white !important;
}

.section-join__content {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-join__img {
  flex: 0 0 auto;
  width: 400px;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(237, 239, 241, 0.18);
  border-radius: 12px;
}

.section-join__text {
  flex: 1;
}

.section-join__content p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.btn--join {
  background: #fff;
  color: #1a3975;
  border: 2px solid #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn--join:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

@media (max-width: 900px) {
  .section-join {
    padding: 60px 0;
  }
  .section-join__title {
    font-size: 32px;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  .section-join__content {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
  .section-join__img {
    width: 100%;
    max-width: 320px;
  }
  .section-join__content p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  .section-join__text {
    text-align: center;
  }
}

/* Section Join responsive images */
.section-join__img--mobile { display: none; }
@media (max-width: 600px) {
  .section-join__img--desktop { display: none !important; }
  .section-join__img--mobile { display: block !important; max-width: 90vw; width: 100%; height: auto; }
}