/* ==========================================================================
   ATLAS TEMİZLİK - MAIN DESIGN SYSTEM AND STYLING
   ========================================================================== */

:root {
    --primary: #0091d5;
    --primary-hover: #002d62;
    --primary-glow: rgba(0, 145, 213, 0.2);
    --bg-dark: #282828;
    --bg-dark-accent: #1e1e1e;
    --bg-light: #ffffff;
    --bg-light-grey: #f0f1f2;
    --text-main: #444444;
    --text-heading: #000000;
    --text-white: #ffffff;
    --border-color: #e5e7eb;
    --border-glass: rgba(255, 255, 255, 0.15);

    --font-body: 'Roboto', sans-serif;
    --font-heading: 'Dosis', sans-serif;
    --font-accent: 'Dosis', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.btn-header-cta {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 8px 20px;
    font-size: 13px;
    font-family: var(--font-accent);
    font-weight: 700;
}

.btn-header-cta:hover {
    background-color: var(--primary-hover);
    transform: scale(1.02);
}

.btn-large {
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 700;
}

.btn-block {
    display: flex;
    width: 100%;
}

.icon-left {
    margin-right: 8px;
}

/* Headings */
.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 40px;
    position: relative;
}

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

.text-white {
    color: var(--text-white) !important;
}

.text-black {
    color: var(--text-heading) !important;
}

.mt-30 {
    margin-top: 30px;
}

/* ==========================================================================
   LAYOUT: HEADER AND TOP BAR (REDESIGNED)
   ========================================================================== */

.header-absolute-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
}

.top-bar-transparent {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    padding: 15px 0 10px 0;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-nav-link {
    font-family: var(--font-accent);
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.top-bar-nav-link:hover {
    color: var(--primary);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item a {
    color: #ffffff;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Floating White Menu Bar */
.main-header-floating {
    position: relative;
    width: 100%;
}

.header-white-bar {
    background-color: #ffffff;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hamburger Trigger */
.header-hamburger-trigger {
    background: none;
    border: none;
    width: 80px;
    height: 80px;
    border-right: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger-lines {
    width: 22px;
    height: 2px;
    background-color: #000000;
    display: block;
    position: relative;
}

.hamburger-lines::after {
    content: '';
    width: 22px;
    height: 2px;
    background-color: #000000;
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
}

/* Header Bar Logo (hidden on desktop normally) */
.header-bar-logo {
    display: none;
    align-items: center;
    font-family: var(--font-accent);
    font-size: 20px;
    letter-spacing: 1.5px;
    color: var(--text-heading);
    font-weight: 700;
}

/* Sticky Header Scroll overrides */
.header-absolute-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.4s ease;
}

.header-absolute-wrapper.is-sticky .top-bar-transparent {
    display: none;
}

.header-absolute-wrapper.is-sticky .main-header-floating .container {
    max-width: 100%;
    padding: 0;
}

.header-absolute-wrapper.is-sticky .header-white-bar {
    height: 95px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.header-absolute-wrapper.is-sticky .header-bar-logo {
    display: flex;
    padding: 0 30px;
    border-right: 1px solid #f0f0f0;
    height: 100%;
}

.header-absolute-wrapper.is-sticky .desktop-nav {
    justify-content: flex-end;
    padding-right: 20px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Desktop Nav Centered */
.desktop-nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    height: 100%;
}

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

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

.nav-link {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333333;
    letter-spacing: 0.5px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 5px;
    transition: var(--transition);
}

.nav-link i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-light);
    min-width: 240px;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    padding: 10px 0;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: var(--primary);
    padding-left: 25px;
}

/* Search Trigger */
.header-search-trigger {
    background: none;
    border: none;
    width: 80px;
    height: 80px;
    border-left: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333333;
    cursor: pointer;
    transition: var(--transition);
}

.header-search-trigger:hover {
    color: var(--primary);
}

/* Orange CTA Button (Full Height Right-most) */
.header-cta-button {
    background-color: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
    font-family: var(--font-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    height: 100%;
    transition: var(--transition);
}

.header-cta-button:hover {
    background-color: var(--primary-hover);
}

/* Search Overlay inside floating header */
.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1010;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-form {
    display: flex;
    flex-grow: 1;
    max-width: 800px;
}

.search-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--border-color);
    padding: 10px 0;
    font-size: 18px;
    outline: none;
    background: transparent;
}

.search-input:focus {
    border-color: var(--primary);
}

.search-submit-btn {
    background-color: var(--primary);
    color: var(--text-white);
    border: none;
    padding: 10px 25px;
    margin-left: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-accent);
    font-weight: 700;
}

.search-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
    margin-left: 20px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-light);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1020;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    left: 0;
}

.mobile-drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.mobile-drawer-body {
    padding: 20px 0;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-menu li a {
    display: block;
    padding: 12px 20px;
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-nav-menu li a:hover {
    color: var(--primary);
    background-color: #f8f9fa;
}

.mobile-has-submenu .mobile-submenu {
    list-style: none;
    background-color: #f9fafb;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.mobile-has-submenu.open .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li a {
    padding-left: 40px;
    font-size: 13px;
    font-weight: 500;
}

.mobile-drawer-cta {
    padding: 20px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1015;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */

.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 700px;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.slide-text-wrapper {
    text-align: right;
    color: var(--text-white);
    max-width: 800px;
}

.slide-tagline {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 20px;
}

.slide-desc {
    font-size: 18px;
    font-weight: 400;
}

/* Slayt Animasyonları */
.animate-down {
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.animate-up {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.slide.active .animate-down,
.slide.active .animate-up {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--primary);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* ==========================================================================
   SECTIONS: GENERAL, WHY US
   ========================================================================== */

.section {
    padding: 80px 0;
}

.section-why-us {
    background-color: var(--bg-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.why-us-col {
    display: flex;
    flex-direction: column;
}

.text-block p {
    margin-bottom: 20px;
    color: var(--text-main);
    font-size: 15px;
    text-align: justify;
}

.text-block .highlight-text {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-heading);
    line-height: 1.5;
    text-align: left;
}

/* ==========================================================================
   SECTIONS: RAKAMLARLA BİZ (STATS)
   ========================================================================== */

.section-stats {
    background-color: var(--bg-light-grey);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 145, 213, 0.12);
    border-color: rgba(0, 145, 213, 0.3);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(0, 145, 213, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.08);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    text-transform: capitalize;
}

/* ==========================================================================
   SECTIONS: INTERACTIVE SERVICES TABS
   ========================================================================== */

.section-services-tabs {
    position: relative;
}

.services-tabs-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

/* Tab List */
.services-tabs-list {
    list-style: none;
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-item {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.tab-item:hover,
.tab-item.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.tab-icon {
    font-size: 18px;
}

.tab-text {
    font-size: 13px;
    line-height: 1.4;
}

/* Tab Content */
.services-tabs-content {
    width: 65%;
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.js-services-swiper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    /* Prevents card translation scale/shadow clipping */
    margin: -10px 0;
}

.services-swiper-column {
    display: flex !important;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

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

.service-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-info {
    padding: 20px;
    text-align: center;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-heading);
    font-weight: 700;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SECTIONS: VIDEOS Q&A
   ========================================================================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-thumbnail {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.video-card:hover .video-thumbnail::before {
    background-color: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.video-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.play-icon i {
    font-size: 32px;
    transition: var(--transition);
}

.video-card:hover .play-icon i {
    transform: scale(1.15);
    color: var(--primary);
}

/* ==========================================================================
   SECTIONS: BRAND PARALLAX
   ========================================================================== */

.section-brands-parallax {
    padding: 50px 0;
    color: var(--text-main);
}

.brands-subtitle {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.7;
}

.brands-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}

.brand-item {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    transition: var(--transition);
}

.brand-item:hover {
    color: var(--primary);
}

/* ==========================================================================
   SECTIONS: TEAM SLIDER
   ========================================================================== */

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

.team-slider {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
    margin-top: 30px;
}

.team-slider .swiper {
    width: 100%;
    overflow: hidden;
}

.team-member-card {
    height: auto;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-member-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.swiper-button-prev-custom {
    left: 0;
}

.swiper-button-next-custom {
    right: 0;
}

.member-img {
    height: 300px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px 10px;
}

.member-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 5px;
}

.member-position {
    font-size: 13px;
    color: var(--text-main);
}

.team-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.team-arrow:hover {
    color: var(--primary);
}

.team-arrow.prev {
    left: 0;
}

.team-arrow.next {
    right: 0;
}

/* ==========================================================================
   SECTIONS: BLOG AND NEWS
   ========================================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blog-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-body {
    padding: 25px;
}

.blog-date {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   SECTIONS: INTRO FILM
   ========================================================================== */

.intro-film-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
}

.intro-film-text p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
}

.intro-film-video {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail.large {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn.large {
    flex-direction: column;
}

.video-play-btn.large i {
    font-size: 64px;
    margin-bottom: 15px;
}

.video-caption {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
   LIGHTBOX VIDEO MODAL
   ========================================================================== */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    background-color: var(--bg-light);
    width: 90%;
    max-width: 800px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2010;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-modal-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.video-modal-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
}

.video-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.video-modal-close:hover {
    color: var(--primary);
}

.video-modal-body {
    padding: 0;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2005;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.site-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    border-top: 3px solid var(--primary);
    font-size: 14px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-flex;
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-desc {
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: justify;
}

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

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-menu li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    line-height: 1.5;
}

.contact-list li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
}

.contact-list li a:hover {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--bg-dark-accent);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-container a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-container a:hover {
    color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}


@media (max-width: 992px) {

    .main-header-floating .container {
        padding: 0 10px;
    }

    .header-absolute-wrapper.is-sticky .main-header-floating .container {
        padding: 0 10px;
    }

    /* Floating Header Mobile overrides */
    .header-absolute-wrapper {
        position: relative;
        background-color: var(--bg-light);
    }

    .top-bar-transparent {
        display: none;
    }

    .header-white-bar {
        height: 80px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        align-items: center;
    }

    .header-hamburger-trigger {
        width: 60px;
        /* height: 60px; */
        border-right: 1px solid #f0f0f0;
    }

    .header-search-trigger {
        width: 60px;
        /* height: 60px; */
        border-left: .5px solid #f0f0f0;
    }

    .header-bar-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        font-family: var(--font-accent);
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    /* Header Menu Collapsing */
    .desktop-nav {
        display: none;
    }

    .header-cta-button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        font-size: 12px;
        letter-spacing: 0.3px;
        white-space: nowrap;
        height: 50px;
        border-left: 1px solid #f0f0f0;
    }

    /* Hero Slider Adjustments */
    .hero-slider {
        height: 560px;
    }

    .slide-text-wrapper {
        text-align: center;
        max-width: 100%;
        padding: 0 40px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    /* Grids to Columns */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Interactive Tabs layout stacking */
    .services-tabs-container {
        flex-direction: column;
    }

    .services-tabs-list {
        width: 100%;
    }

    .services-tabs-content {
        width: 100%;
    }

    /* Video and Blog Grids */
    .video-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .team-arrow {
        display: none;
    }

    /* Intro Film stacking */
    .intro-film-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer layout */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .hero-slider {
        height: 450px;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-desc {
        font-size: 15px;
    }

    .service-carousel-grid {
        grid-template-columns: 1fr;
    }

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

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

    @media (max-width: 576px) {
        .header-hamburger-trigger {
            width: 48px;
        }

        .header-search-trigger {
            width: 48px;
        }

        .header-cta-button {
            padding: 0 10px;
            font-size: 11px;
        }

        .header-bar-logo .logo-img {
            max-height: 38px;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
    }

    @media (max-width: 380px) {
        .header-hamburger-trigger {
            width: 42px;
        }

        .header-search-trigger {
            width: 42px;
        }

        .header-cta-button {
            padding: 0 7px;
            font-size: 10px;
        }

        .header-bar-logo .logo-img {
            max-height: 32px;
        }
    }


    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar {
        display: none;
        /* Hide top bar on mobile for cleaner header */
    }
}

/* ==========================================================================
   INTERIOR PAGES: HAKKIMIZDA & HİZMETLERİMİZ (URUNLER)
   ========================================================================== */

/* 1. Page Banner */
.page-banner {
    padding: 120px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--text-white);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span {
    color: var(--primary);
}

/* 2. Hakkımızda Intro */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-column {
    position: relative;
}

.about-img-box {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 20px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(241, 88, 35, 0.3);
    text-align: center;
}

.about-experience-badge .exp-years {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .exp-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tagline {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.section-subheading {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.5;
}

.about-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 20px;
}

/* 3. Neden Biz & Values Grids */
.why-header,
.values-header {
    max-width: 700px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-top-color: var(--primary);
}

.why-card-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 25px;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.why-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-main);
}

/* 4. Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background-color: var(--bg-light);
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.01);
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv-title i {
    color: var(--primary);
    font-size: 26px;
}

.mv-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
}

/* 5. Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    background-color: var(--bg-light);
    padding: 35px 30px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.value-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(241, 88, 35, 0.06);
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
}

.value-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.value-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-main);
    position: relative;
    z-index: 2;
}

/* 6. CTA Banner */
.section-about-cta {
    padding: 90px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.section-about-cta .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

/* 7. Services Page Grid */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-list-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-list-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-list-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-list-card:hover .service-list-img-wrapper img {
    transform: scale(1.1);
}

.service-list-icon-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--text-white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(241, 88, 35, 0.3);
}

.service-list-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-list-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.service-list-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-list-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-list-btn:hover {
    color: var(--primary-hover);
}

.service-list-btn i {
    transition: var(--transition);
}

.service-list-btn:hover i {
    transform: translateX(5px);
}

/* Interior Pages Responsive Breaks */
@media (max-width: 1200px) {
    .services-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-column {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

@media (max-width: 768px) {
    .page-banner {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .section-heading {
        font-size: 28px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   WHY US VERTICAL TIMELINE STYLES
   ========================================================================== */
.section-why-timeline {
    padding: 100px 0;
}

.timeline-tabs-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
    align-items: flex-start;
}

.timeline-nav-wrapper {
    position: relative;
    padding-left: 0;
}

.timeline-vertical-line {
    position: absolute;
    left: 55px;
    /* Centered with dot-wrapper */
    top: 25px;
    bottom: 25px;
    width: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.timeline-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background-color: var(--primary);
    transition: height 0.4s ease;
}

.timeline-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.timeline-nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 5px 0;
}

.timeline-num {
    font-size: 16px;
    font-weight: 700;
    color: #a0a0a0;
    width: 30px;
    text-align: right;
    margin-right: 15px;
    flex-shrink: 0;
    transition: var(--transition);
}

.timeline-dot-wrapper {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    z-index: 3;
    transition: var(--transition);
    box-shadow: 0 0 0 4px #f8f9fa;
    /* Matches bg color to look floating */
}

.timeline-nav-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #a0a0a0;
    letter-spacing: 0.5px;
    margin-left: 15px;
    transition: var(--transition);
}

/* Active and Completed States */
.timeline-nav-item.active .timeline-num {
    color: var(--text-heading);
}

.timeline-nav-item.active .timeline-dot {
    border-color: var(--primary);
    background-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(241, 88, 35, 0.15), 0 0 0 4px #fff;
}

.timeline-nav-item.active .timeline-nav-title {
    color: var(--primary);
}

.timeline-nav-item.completed .timeline-dot {
    border-color: var(--primary);
    background-color: var(--primary);
}

.timeline-nav-item.completed .timeline-nav-title {
    color: var(--text-heading);
}

/* Right Side Content Pane */
.timeline-content-wrapper {
    position: relative;
}

.timeline-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.timeline-pane.active {
    display: block;
}

.timeline-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.timeline-card-img {
    height: 320px;
    overflow: hidden;
}

.timeline-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-card-body {
    padding: 40px;
}

.timeline-card-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 20px;
}

.timeline-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
}

/* Responsive adjustments for timeline */
@media (max-width: 992px) {
    .timeline-tabs-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES (RE-DESIGNED TO MATCH SCREENSHOT EXACTLY)
   ========================================================================== */
.contact-banner {
    padding: 160px 0 50px;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.contact-banner .contact-breadcrumb {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.contact-banner .contact-breadcrumb a {
    color: #666;
}

.contact-banner .contact-breadcrumb a:hover {
    color: var(--primary);
}

.contact-banner .page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000000;
    letter-spacing: -0.5px;
    text-transform: none;
}

.contact-banner .page-subtitle {
    font-size: 15px;
    color: #636c81;
    font-weight: 400;
}

.section-contact {
    padding: 70px 0;
    background-color: #f6f8fa;
}

/* Combined Card layout */
.contact-card-combined {
    display: flex;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid #e1e4e6;
}

.contact-form-side {
    width: 63%;
    padding: 50px;
}

.contact-info-side {
    width: 37%;
    padding: 50px 40px;
    background-color: #002d62;
    /* Deep navy matching brand logo */
    background-image: url('../images/square_bg.png');
    /* Square pattern downloaded */
    background-repeat: repeat;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

/* Titles */
.contact-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000000;
}

.contact-info-side .contact-title {
    color: #ffffff;
}

.contact-subtitle {
    font-size: 14px;
    color: #777777;
    margin-bottom: 35px;
    line-height: 1.5;
}

.contact-info-side .contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Form inputs & grid */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 20px;
    align-items: stretch;
}

.contact-form-left-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-right-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-textarea-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.contact-input {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-main);
    transition: var(--transition);
}

input[type="date"].contact-input {
    font-family: var(--font-body);
    color: #666666;
    line-height: 48px;
}

.contact-textarea {
    width: 100%;
    height: 100%;
    min-height: 110px;
    padding: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-main);
    transition: var(--transition);
    resize: none;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.contact-submit-btn {
    width: 100%;
    height: 48px;
    background-color: var(--primary);
    /* Site orange */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 5px 12px var(--primary-glow);
}

/* Right side contact list */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.contact-info-content {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
    padding-top: 8px;
    /* Vertically align with top of the icon circle */
}

.contact-info-link {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-link:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* Map frame style */
.contact-map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e4e6;
    height: 450px;
    width: 100%;
}

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

/* Alert system */
.contact-alert {
    padding: 12px 18px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
}

.contact-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive configurations */
@media (max-width: 992px) {
    .contact-card-combined {
        flex-direction: column;
    }

    .contact-form-side,
    .contact-info-side {
        width: 100%;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-textarea-wrapper {
        margin-bottom: 15px;
    }

    .contact-textarea {
        height: 150px;
    }

    .contact-submit-btn {
        margin-top: 10px;
    }
}

/* ==========================================================================
   SERVICE DETAIL PAGE STYLES (NEW)
   ========================================================================== */
.section-service-detail {
    padding: 70px 0;
    background-color: #f6f8fa;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Content Side */
.service-detail-content-wrapper {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e4e6;
    padding: 40px;
}

.service-detail-featured-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 30px;
}

.service-detail-text h2,
.service-detail-text h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #000000;
}

.service-detail-text h2:first-child,
.service-detail-text h3:first-child {
    margin-top: 0;
}

.service-detail-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 20px;
}

.service-detail-text p:last-child {
    margin-bottom: 0;
}

.service-detail-text ul,
.service-detail-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail-text li {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-main);
}

/* Sidebar Side */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e4e6;
    padding: 30px;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sidebar Form Widget */
.sidebar-form .contact-form-group {
    margin-bottom: 12px;
}

.sidebar-form .contact-input {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #ffffff;
}

.sidebar-form .contact-textarea {
    width: 100%;
    height: 90px;
    padding: 10px 12px;
    font-size: 13px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #ffffff;
    resize: none;
}

.sidebar-form .contact-submit-btn {
    width: 100%;
    height: 42px;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Sidebar List Widget */
.sidebar-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.sidebar-service-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-service-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-service-info {
    flex-grow: 1;
}

.sidebar-service-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
    color: #000000;
    line-height: 1.3;
}

.sidebar-service-name a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-service-name a:hover {
    color: var(--primary);
}

.sidebar-service-link {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sidebar-service-link:hover {
    color: var(--primary-hover);
}

/* Responsive configurations */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-content-wrapper {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   ONLINE APPOINTMENT PAGE STYLES (NEW)
   ========================================================================== */
.appointment-banner {
    padding: 150px 0 30px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
    text-align: left;
}

.appointment-breadcrumbs {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.appointment-breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.appointment-breadcrumbs a:hover {
    color: #ffffff;
}

.appointment-breadcrumbs .separator {
    font-size: 9px;
    opacity: 0.5;
}

.appointment-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.section-appointment {
    padding: 150px 0 100px;
    background: #f7f8fb url('../images/appointment_content_bg.jpg') no-repeat center top;
    background-size: cover;
    position: relative;
}

.appointment-form-card {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e4e6;
    padding: 50px 60px;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.appointment-intro-text {
    font-size: 15px;
    color: #333333;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: left;
}

.appointment-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.appointment-form-col {
    flex: 1;
}

.appointment-form-col.full-width {
    flex: none;
    width: 100%;
}

/* Dropdown Select element styling */
.appointment-select {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-main);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.appointment-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.appointment-form-submit {
    margin-top: 30px;
}

/* Responsive appointments form */
@media (max-width: 768px) {
    .appointment-banner {
        padding: 120px 0 140px;
    }

    .appointment-title {
        font-size: 36px;
    }

    .appointment-form-card {
        padding: 30px 20px;
        margin-top: -30px;
    }

    .appointment-form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .appointment-intro-text {
        margin-bottom: 30px;
    }
}

/* ==========================================================================
   IMAGE LOGO STYLES (NEW)
   ========================================================================== */
.logo-img {
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-bar-logo .logo-img {
    max-height: 80px;
    /* Comfortable height in 80px desktop sticky header */
}

@media (max-width: 992px) {
    .header-bar-logo .logo-img {
        max-height: 44px;
        /* Comfortable height in 60px mobile header */
    }
}

.mobile-drawer-header .logo-img {
    max-height: 60px;
}

.footer-logo .logo-img {
    max-height: 100px;
}

/* ==========================================================================
   TEAM SECTION STYLES (NEW)
   ========================================================================== */
.section-staff {
    padding: 80px 0;
    background-color: #f6f8fa;
}

.a-staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.a-employee-card {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #e1e4e6;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
}

.a-employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.a-employee-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 115%;
    /* Proportional height for portraits */
    overflow: hidden;
}

.a-employee-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Hover Social Links overlay */
.a-employee-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    margin: 0;
    list-style: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.35s ease-in-out;
    z-index: 2;
}

.a-employee-card:hover .a-employee-socials {
    bottom: 0;
}

.a-employee-socials li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.a-employee-socials li a:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.a-employee-details {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.a-employee-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000000;
}

.a-employee-position {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.a-employee-summary {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
}

/* Responsive team grid */
@media (max-width: 992px) {
    .a-staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .a-staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-staff {
        padding: 60px 0;
    }
}

/* ==========================================================================
   EMPLOYEE DETAIL PAGE STYLES (NEW)
   ========================================================================== */
.section-employee-detail {
    padding: 70px 0;
    background-color: #f6f8fa;
}

.employee-detail-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.employee-detail-card {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e4e6;
    padding: 40px;
}

.employee-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
}

.employee-detail-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 6px;
}

.employee-detail-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.employee-detail-socials {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.employee-detail-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    font-size: 14px;
}

.employee-detail-socials a:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #ffffff;
}

.employee-bio-row {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
    margin-bottom: 35px;
    align-items: start;
}

.employee-bio-photo-wrapper {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e1e4e6;
}

.employee-bio-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.employee-bio-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.employee-bio-details-html h2,
.employee-bio-details-html h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin: 35px 0 15px;
    color: #000000;
}

.employee-bio-details-html h2:first-child,
.employee-bio-details-html h3:first-child {
    margin-top: 0;
}

.employee-bio-details-html p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 20px;
}

.employee-bio-details-html ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.employee-bio-details-html li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
}

.employee-bio-details-html li strong {
    color: #000000;
}

/* Sidebar styling overrides */
.employee-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 992px) {
    .employee-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .employee-detail-card {
        padding: 30px 20px;
    }

    .employee-detail-header {
        flex-direction: column;
        gap: 15px;
    }

    .employee-bio-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .employee-bio-photo-wrapper {
        max-width: 200px;
    }
}

/* ==========================================================================
   VIDEO GALLERY PAGE STYLES (NEW)
   ========================================================================== */
.section-videos {
    padding: 80px 0;
    background-color: #f6f8fa;
}

.video-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.video-filter-btn {
    background-color: #ffffff;
    color: var(--text-main);
    border: 1px solid #e1e4e6;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.video-filter-btn:hover,
.video-filter-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(243, 90, 32, 0.2);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25% !important;
    /* 16:9 Aspect Ratio */
    height: 0 !important;
    overflow: hidden;
    background-color: #000000;
}

.video-embed-wrapper iframe,
.video-embed-wrapper video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    object-fit: cover !important;
}

.video-card-body {
    padding: 16px 15px;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-category-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: inline-block;
}

.video-card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.video-card-desc {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
}

/* Responsive configurations */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .section-videos {
        padding: 60px 0;
    }

    .video-filters {
        margin-bottom: 35px;
        gap: 10px;
    }

    .video-filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   BLOG DETAIL STYLES
   ========================================================================== */
.section-blog-detail {
    padding: 70px 0;
    background-color: #fcfcfc;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.blog-detail-main {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta i {
    color: var(--primary);
}

.blog-detail-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-heading);
    margin-bottom: 25px;
}

.blog-featured-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.blog-article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.blog-article-body p {
    margin-bottom: 20px;
}

.blog-article-body p.lead-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: #222;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
}

.blog-article-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 35px 0 15px 0;
}

.blog-callout-box {
    background-color: rgba(14, 165, 233, 0.06);
    border-left: 4px solid var(--primary);
    border-radius: 6px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.blog-callout-box .icon {
    font-size: 28px;
    color: var(--primary);
    line-height: 1;
}

.blog-callout-box h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.blog-callout-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-share-row {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-share-title {
    font-weight: 600;
    color: var(--text-heading);
}

.blog-share-btns {
    display: flex;
    gap: 10px;
}

.blog-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f0f4f8;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.blog-share-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
}

@media (max-width: 992px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   WHATSAPP FLOATING CHAT WIDGET
   ========================================================================== */
.wa-widget-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Floating Toggle Button */
.wa-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    position: relative;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
    outline: none;
}

.wa-toggle-btn:hover {
    transform: scale(1.08);
    background-color: #20ba5a;
}

.wa-toggle-btn:active {
    transform: scale(0.96);
}

.wa-unread-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff3b30;
    color: #ffffff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.wa-pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wa-pulse-anim 2s infinite ease-out;
    pointer-events: none;
}

@keyframes wa-pulse-anim {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Chat Box Popup Window */
.wa-chat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 340px;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.94);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.wa-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Header */
.wa-chat-header {
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-chat-header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-header-icon {
    font-size: 26px;
    color: #ffffff;
}

.wa-header-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.wa-chat-close-btn {
    background: rgba(0, 0, 0, 0.18);
    border: none;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    outline: none;
}

.wa-chat-close-btn:hover {
    background: rgba(0, 0, 0, 0.32);
    transform: scale(1.05);
}

/* Chat Body */
.wa-chat-body {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #f4f6f8;
    max-height: 380px;
    overflow-y: auto;
}

.wa-message-bubble {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 90%;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    animation: wa-bubble-pop 0.35s ease forwards;
}

@keyframes wa-bubble-pop {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wa-bubble-content strong {
    font-weight: 700;
    color: #111111;
}

/* Footer Action */
.wa-chat-footer {
    padding: 12px 16px 18px;
    background-color: #f4f6f8;
    display: flex;
    justify-content: flex-end;
}

.wa-start-chat-btn {
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 30px;
    padding: 12px 24px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-start-chat-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    color: #ffffff !important;
}

.wa-send-icon {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.wa-start-chat-btn:hover .wa-send-icon {
    transform: translateX(3px) translateY(-1px);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .wa-widget-container {
        bottom: 16px;
        right: 16px;
    }

    .wa-chat-box {
        width: calc(100vw - 32px);
        right: 0;
        bottom: 72px;
    }
}