:root {
    --primary-red: #e00007;
    --primary-red-hover: #c00006;
    --bg-dark: #242A5D;
    --bg-dark-light: #2e3572;
    --bg-light: #ffffff;
    --bg-light-slate: #fcfbfa; /* Warm warm sand background for sections */
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light-gray: #94a3b8;
    --accent-gold: #ecaf2d;
    --accent-gold-dark: #d97706;
    --border-light: rgba(15, 23, 42, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.04), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.05);
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Manrope', sans-serif;
    --font-heading: 'Saira', sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-gray);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    clear: both;
}

/* Slider & Hero Headings */
.hero-title, .hero-title *, .slider-title, .slider-title * {
    font-family: var(--font-heading) !important;
}

/* Header & Navigation */
header {
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.header-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
}

header.header-inner {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #191e45 0%, #242A5D 100%);
}

header.scrolled {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(36, 42, 93, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.logo img {
    height: 90px;
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

.menuduzenle ul {
    list-style: none;
    display: flex;
    gap: 2.25rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menuduzenle ul li {
    position: relative;
}

.menuduzenle ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85); /* White text links for overlay styling */
    font-weight: 700;
    font-size: 15px;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    letter-spacing: -0.015em;
    text-transform: none !important;
}

.menuduzenle ul li a:hover {
    color: var(--primary-red);
}

/* Dropdown Menu */
.menuduzenle ul li ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #242A5D; /* Dark dropdown background */
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    padding: 0.75rem 0;
    border-radius: 12px;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block !important;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.menuduzenle ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.menuduzenle ul li ul li {
    width: 100%;
    padding: 0 1rem;
}

.menuduzenle ul li ul li a {
    padding: 0.6rem 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7); /* Lighter link colors on dark background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menuduzenle ul li ul li:last-child a {
    border-bottom: none;
}

.menuduzenle ul li ul li a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding-left: 0.75rem;
}

/* Header Buttons */
.header-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.header-btn-dark {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.header-btn-dark:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.header-btn-red {
    background: var(--primary-red);
    color: white;
    border: 1px solid var(--primary-red);
}

.header-btn-red:hover {
    background: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    color: white;
}

.mobile-toggle i {
    color: white !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #191e45 0%, #242A5D 50%, #2e3572 100%);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #191e45 0%, #242A5D 50%, #2e3572 100%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    position: relative;
    padding: 180px 0 100px 0; /* Top padding expanded to host transparent menu overlay */
    color: white;
    overflow: hidden;
}

.hero-badge {
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.2);
    color: #fda4af;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    letter-spacing: -0.025em;
}

.hero-title span, .hero-title span.highlight {
    color: var(--primary-red) !important;
}

.hero-desc {
    font-size: 0.975rem;
    color: #9ca3af;
    line-height: 1.65;
    margin-bottom: 2.75rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 4.5rem;
}

.btn-hero-primary {
    background: var(--primary-red);
    color: white;
    padding: 1rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
    background: var(--primary-red-hover);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

.hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* WhatsApp Contact Bar */
.whatsapp-bar {
    background: var(--primary-red);
    color: white;
    padding: 1.25rem 0;
}

.whatsapp-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.whatsapp-bar-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-bar-btn {
    background: white;
    color: var(--primary-red);
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.whatsapp-bar-btn:hover {
    background: #f1f5f9;
    color: var(--primary-red-hover);
}

/* Standard Section Layouts */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.65;
}

/* Services Grid (Sahadan, Masaya) */
.service-card {
    position: relative;
    background: white;
    border: 1px solid #e5e6e7;
    border-radius: 0;
    margin-right: -1px;
    margin-bottom: -1px;
    padding: 2.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.service-card-full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-card:hover {
    z-index: 1;
    background-color: #fefce8;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover .service-card-title {
    color: var(--primary-red);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    color: #000000;
    font-size: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.35;
    transition: var(--transition-smooth);
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-divider {
    border-top: 1px dashed rgba(15, 23, 42, 0.08);
    margin: 1.25rem 0;
}

.service-card-links {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-link-btn {
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.service-card-link-btn-red {
    color: var(--primary-red);
}

.service-card-link-btn-red:hover {
    color: var(--primary-red-hover);
}

.service-card-link-btn-dark {
    color: #1e293b;
}

.service-card-link-btn-dark:hover {
    color: #0f172a;
}

/* News Banner Highlight */
.news-banner {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: stretch;
}

@media (max-width: 767.98px) {
    .news-banner {
        flex-direction: column;
    }
}

.news-banner-visual {
    background: linear-gradient(135deg, #191e45 0%, #242A5D 50%, #2e3572 100%);
    color: white;
    width: 240px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .news-banner-visual {
        width: 100%;
        padding: 2.5rem;
    }
}

.news-banner-visual-icon {
    font-size: 2.75rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.news-banner-visual-tag {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
}

.news-banner-visual-tag span {
    color: var(--primary-red);
}

.news-banner-category-badge {
    background-color: var(--primary-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    letter-spacing: 0.03em;
}

.news-banner-content {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

@media (max-width: 575.98px) {
    .news-banner-content {
        padding: 1.75rem;
    }
}

.news-banner-label {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.news-banner-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.news-banner-title a {
    color: inherit;
    text-decoration: none;
}

.news-banner-title a:hover {
    color: var(--primary-red);
}

.news-banner-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-banner-btn {
    color: #1e293b;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-smooth);
}

.news-banner-btn:hover {
    color: var(--primary-red);
    transform: translateX(3px);
}

/* Category Tabs (Hangi Alanda Ne Yapıyoruz) */
.tab-container {
    background: linear-gradient(135deg, #191e45 0%, #242A5D 50%, #2e3572 100%);
    padding: 90px 0;
    color: white;
}

.tab-section-tag {
    color: #ecaf2d;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.tab-section-title {
    font-family: 'Saira', sans-serif;
    font-weight: 900;
    font-size: 2.75rem;
    text-transform: uppercase;
    color: white;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.tab-section-desc {
    color: #94a3b8;
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 2.5rem;
}

.tab-nav {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #2e3572;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 0.85rem 1.6rem;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tab-btn:hover {
    background: #ecaf2d;
    border-color: #ecaf2d;
    color: #111827;
}

.tab-btn.active {
    background: #ecaf2d;
    border-color: #ecaf2d;
    color: #111827;
    font-weight: 900;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-group-title {
    color: #ecaf2d;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.6rem;
    margin-bottom: 1.25rem;
}

.tab-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-item-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #e2e8f0;
    font-size: 0.92rem;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 0.85rem;
}

.tab-item-list li i {
    color: #ecaf2d;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Process Timeline (Bir süreç) */
.process-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2.25rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.process-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.process-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.65;
    margin: 0;
}

/* Quality Documents & Certificates */
.cert-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 2.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cert-visual-container {
    background: #f8fafc;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cert-visual-document {
    width: 90px;
    height: 120px;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    position: relative;
}

.cert-visual-badge {
    width: 24px;
    height: 24px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 2px solid white;
    position: absolute;
    bottom: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.65rem;
    box-shadow: var(--shadow-md);
}

.cert-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cert-subtitle {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1.75rem;
    line-height: 1.6;
    flex-grow: 1;
}

.cert-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.cert-btn {
    padding: 0.65rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    text-align: center;
}

.cert-btn-dark {
    background: #242A5D;
    color: white;
}

.cert-btn-dark:hover {
    background: #2e3572;
}

.cert-btn-outline {
    background: transparent;
    color: var(--text-gray);
    border: 1.5px solid rgba(15, 23, 42, 0.12);
}

.cert-btn-outline:hover {
    background: #f8fafc;
    color: var(--text-dark);
    border-color: var(--text-gray);
}

/* Footer Section */
footer {
    background: linear-gradient(135deg, #191e45 0%, #242A5D 50%, #2e3572 100%);
    color: white;
    padding: 70px 0 0 0;
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: none;
}

.footer-address {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 320px;
}

.footer-phone-number {
    font-family: 'Saira', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    transition: var(--transition-smooth);
}

.footer-phone-number:hover {
    color: var(--primary-red) !important;
}

.footer-email-link {
    color: #94a3b8;
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.footer-email-link:hover {
    color: #ffffff;
}

.footer-disclaimer {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.footer-disclaimer strong {
    color: #ffffff;
    font-weight: 800;
}

.footer-column-title {
    font-family: 'Saira', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0;
}

.footer-column-title::after {
    display: none;
}

.footer-menu-link {
    font-family: 'Manrope', sans-serif;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.footer-menu-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom {
    padding: 1.25rem 0;
    margin-top: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-text {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-text a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-text a:hover {
    color: white;
}

/* Custom Responsive Container Width (1480px) for Large Screens & Laptops */
@media (min-width: 1400px) {
    .container {
        max-width: 1480px !important;
    }
}

/* ==========================================================================
   Inner Page & About Us Styles
   ========================================================================== */

.inner-page-hero {
    background: linear-gradient(135deg, #191e45 0%, #242A5D 50%, #2e3572 100%);
    padding: 90px 0 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.inner-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ecaf2d 100%);
}

.inner-hero-subtitle {
    color: #ecaf2d;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.inner-hero-title {
    font-family: 'Saira', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.inner-breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.inner-breadcrumb a:hover {
    color: #ffffff;
}

/* About Visual Box */
.about-visual-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.about-visual-box img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b00005 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(224, 0, 7, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-experience-num {
    font-family: 'Saira', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about-experience-text {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.about-feature-card {
    background: #ffffff;
    border: 1px solid #e5e6e7;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    border-color: #ecaf2d;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #fefce8;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.stat-num {
    font-family: 'Saira', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    color: #ecaf2d;
    margin-bottom: 0.25rem;
}

.stat-title {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 600;
}

/* Mobile Optimization Rules (2-Column Contiguous Services & Spacing) */
@media (max-width: 767.98px) {
    .service-card {
        padding: 1.25rem 0.85rem !important;
    }

    .service-icon-box {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.65rem !important;
        margin-bottom: 0.75rem !important;
    }

    .service-card-title {
        font-size: 0.95rem !important;
        font-weight: 900 !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }

    .service-card-text,
    .service-card-desc {
        font-size: 0.8rem !important;
        line-height: 1.45 !important;
        margin-bottom: 0.75rem !important;
    }

    .service-card-yasal-dayanak {
        margin-top: 0.5rem !important;
        margin-bottom: 0.75rem !important;
        padding-top: 0.5rem !important;
    }

    .service-card-yasal-dayanak h4,
    .service-card-yasal-dayanak div:first-child {
        font-size: 0.78rem !important;
    }

    .service-card-yasal-dayanak p,
    .service-card-yasal-dayanak div:last-child {
        font-size: 0.85rem !important;
    }

    .service-card-links {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.35rem !important;
    }

    .service-card-link-btn {
        font-size: 0.72rem !important;
    }

    .section-padding {
        padding: 2.5rem 0 !important;
    }

    .hero-section {
        padding: 135px 0 3rem 0 !important;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }

    .inner-page-hero {
        padding: 3rem 0 2.5rem 0 !important;
    }

    .inner-hero-title {
        font-size: 1.75rem !important;
    }
}

/* Pulsing Green Oval Floating WhatsApp Button */
.whatsapp-float-wrapper {
    display: inline-block;
}

.whatsapp-float-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px 12px 16px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    border-radius: 50px;
    text-decoration: none !important;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.whatsapp-float-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
    color: #ffffff !important;
}

.whatsapp-icon {
    font-size: 1.6rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.whatsapp-text {
    white-space: nowrap;
}

/* Pulsing Signal Wave Animation Rings */
.whatsapp-pulse-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50px;
    border: 2px solid rgba(37, 211, 102, 0.75);
    animation: whatsappPulseWave 2s infinite ease-out;
    pointer-events: none;
    z-index: -1;
}

.whatsapp-pulse-ring.ring-2 {
    animation-delay: 0.75s;
}

@keyframes whatsappPulseWave {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* ==========================================================================
   Reference Card & Grid Styles
   ========================================================================== */
.ref-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    text-decoration: none;
    overflow: hidden;
}

.ref-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    border-color: rgba(224, 0, 7, 0.25);
}

.ref-logo-box {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.ref-card:hover .ref-logo-box {
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(224, 0, 7, 0.1);
}

.ref-logo-img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.88;
    transition: var(--transition-smooth);
}

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

.ref-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    transition: var(--transition-smooth);
    line-height: 1.3;
}

.ref-card:hover .ref-card-title {
    color: var(--primary-red);
}

.ref-link-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light-gray);
    margin-top: 0.5rem;
    transition: var(--transition-smooth);
}

.ref-card:hover .ref-link-badge {
    color: var(--primary-red);
}

/* Custom Pagination Wrapper */
.ref-pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.ref-pagination-wrapper .pagination {
    gap: 0.4rem;
    margin: 0;
}

.ref-pagination-wrapper .page-item .page-link {
    border-radius: 8px;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    transition: var(--transition-smooth);
}

.ref-pagination-wrapper .page-item.active .page-link {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
}

.ref-pagination-wrapper .page-item .page-link:hover {
    background-color: #f1f5f9;
    color: var(--primary-red);
}

