/* ========================================
   TRANSGLOBAL LOJİSTİK - KURUMSAL TASARIM
   Profesyonel, Temiz, Okunabilir
======================================== */

/* CSS Variables */
:root {
    --primary: #0052CC;
    --primary-dark: #003d99;
    --primary-light: #4C9AFF;
    --secondary: #FF6B00;
    --secondary-dark: #cc5500;
    --dark: #172B4D;
    --gray-900: #253858;
    --gray-800: #42526E;
    --gray-700: #5E6C84;
    --gray-600: #6B778C;
    --gray-500: #97A0AF;
    --gray-400: #C1C7D0;
    --gray-300: #DFE1E6;
    --gray-200: #EBECF0;
    --gray-100: #F4F5F7;
    --gray-50: #FAFBFC;
    --white: #FFFFFF;
    --success: #36B37E;
    --danger: #FF5630;
    --warning: #FFAB00;
    --info: #00B8D9;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px rgba(9, 30, 66, 0.08);
    --shadow: 0 1px 3px rgba(9, 30, 66, 0.12), 0 0 1px rgba(9, 30, 66, 0.08);
    --shadow-md: 0 4px 8px rgba(9, 30, 66, 0.12), 0 0 1px rgba(9, 30, 66, 0.08);
    --shadow-lg: 0 8px 16px rgba(9, 30, 66, 0.16), 0 0 1px rgba(9, 30, 66, 0.08);
    --shadow-xl: 0 16px 32px rgba(9, 30, 66, 0.2), 0 0 1px rgba(9, 30, 66, 0.08);
    --radius: 6px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --transition: 0.2s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    height: 80px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-text {
    color: var(--primary);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--gray-100);
}

.dropdown-arrow {
    transition: transform 0.2s;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* ========================================
   MEGA MENU
======================================== */
.has-megamenu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item.has-megamenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.mega-menu-section {
    min-width: 0;
}

.mega-menu-grid .mega-menu-inner {
    grid-template-columns: 1fr;
}

.mega-menu-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* 2 Sütunlu Liste */
.mega-menu-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 24px;
    max-height: 400px;
    overflow-y: auto;
}

.mega-menu-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 24px;
}

.mega-menu-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--gray-700);
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mega-menu-list li a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.mega-menu-list li a i {
    width: 24px;
    height: 24px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.mega-menu-list li a:hover i {
    background: var(--primary);
    color: var(--white);
}

.mega-menu-list li a span {
    flex: 1;
}

.mega-menu-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.mega-menu-all:hover {
    color: var(--primary-dark);
}

/* Mega Menu Scrollbar */
.mega-menu-2col::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-2col::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.mega-menu-2col::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 3px;
}

.mega-menu-2col::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Mega Menu CTA */
.mega-menu-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
}

.mega-cta-content {
    color: var(--white);
}

.mega-cta-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.mega-cta-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.mega-cta-content .btn {
    background: var(--white);
    color: var(--primary);
}

.mega-cta-content .btn:hover {
    background: var(--gray-100);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta {
    display: inline-flex;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
}

.lang-btn:hover {
    background: var(--gray-200);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 80px;
}

.language-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.lang-dropdown li a {
    display: block;
    padding: 8px 16px;
    color: var(--gray-700);
    font-size: 0.85rem;
}

.lang-dropdown li a:hover,
.lang-dropdown li a.active {
    background: var(--gray-100);
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
}


/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   HERO SLIDER
======================================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-swiper {
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.85) 0%, rgba(23, 43, 77, 0.8) 100%);
}

.hero-swiper .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Swiper Navigation */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
    font-size: 18px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary);
}

/* Hero Simple */
.hero-simple {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    text-align: center;
    margin-top: -80px;
    padding-top: 160px;
}

.hero-simple .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-simple .hero-title {
    font-size: 2.75rem;
}

/* ========================================
   SECTIONS
======================================== */
.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--gray-50);
}

.bg-dark {
    background: var(--dark);
    color: var(--white);
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.bg-dark .section-title {
    color: var(--white);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
}

.text-center .section-desc {
    margin: 0 auto;
}

/* ========================================
   SERVICES - ANASAYFA
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

/* Service Card with Image - YATAY RESİM */
.service-card .service-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Service Card Content */
.service-card .service-content {
    padding: 24px;
}

.service-card .service-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    padding: 20px 24px 0 24px;
}

.service-card .service-title a {
    color: inherit;
}

.service-card .service-title a:hover {
    color: var(--primary);
}

.service-card .service-excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    padding: 0 24px;
    min-height: 48px;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0 24px 24px 24px;
}

.service-card .service-link:hover {
    gap: 10px;
}

.service-card .service-link svg {
    transition: var(--transition);
}


/* ========================================
   SECTORS - ANASAYFA
======================================== */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.sector-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Sektör Resmi - YATAY */
.sector-card .sector-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
}

.sector-card .sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sector-card:hover .sector-image img {
    transform: scale(1.05);
}

.sector-card .sector-icon {
    width: 72px;
    height: 72px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.sector-card:hover .sector-icon {
    background: var(--primary);
}

.sector-card .sector-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.sector-card:hover .sector-icon i {
    color: var(--white);
}

.sector-card .sector-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.sector-card:hover .sector-title {
    color: var(--primary);
}

/* ========================================
   STATISTICS
======================================== */
.statistics-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 64px 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item .stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.stat-item .stat-icon i {
    font-size: 22px;
    color: var(--white);
}

.stat-item .stat-value {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-item .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   BLOG - ANASAYFA
======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card .blog-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-content {
    padding: 24px;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.blog-card .blog-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.blog-card .blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .blog-title a {
    color: var(--dark);
}

.blog-card .blog-title a:hover {
    color: var(--primary);
}

.blog-card .blog-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Blog Card Category Badge */
.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: var(--dark);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 48px 0;
    text-align: center;
    margin-top: -80px;
    padding-top: 128px;
}

.page-header .page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span,
.breadcrumb [aria-current] {
    color: var(--white);
}


/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--primary-light);
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-500);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-form-wrapper > p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-control::placeholder {
    color: var(--gray-500);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.checkbox-label input {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

/* Contact Info */
.contact-info-wrapper {
    position: sticky;
    top: 100px;
    align-self: start;
}

.contact-info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--dark);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon svg {
    color: var(--white);
    stroke-width: 2;
}

.contact-info-item .content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-info-item .content p,
.contact-info-item .content a {
    color: var(--gray-800);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-item .content a:hover {
    color: var(--primary);
}

/* Branches */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.branch-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    position: relative;
}

.branch-card.headquarters {
    border-color: var(--primary);
    border-width: 2px;
}

.branch-card .badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.branch-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.branch-address {
    color: var(--gray-600);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.branch-phone,
.branch-email {
    display: block;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.branch-phone:hover,
.branch-email:hover {
    color: var(--primary);
}

.branch-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}


/* ========================================
   BLOG PAGE
======================================== */
.blog-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.blog-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: var(--dark);
}

.blog-card-content h3 a:hover {
    color: var(--primary);
}

.blog-card-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Featured Post */
.featured-post {
    margin-bottom: 48px;
}

.featured-post-inner {
    display: block;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
    color: var(--white);
    text-decoration: none;
}

.featured-post-image {
    position: absolute;
    inset: 0;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-post-inner:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
}

.featured-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
}

.featured-post-category {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.featured-post-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
    max-width: 700px;
}

.featured-post-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 12px;
}

.featured-post-meta {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   SERVICES PAGE
======================================== */
.services-page-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
}

.services-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.filter-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--dark);
}

.filter-list li {
    margin-bottom: 6px;
}

.filter-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    color: var(--gray-700);
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-list a:hover,
.filter-list a.active {
    background: var(--primary);
    color: var(--white);
}

.filter-list .count {
    font-size: 0.8rem;
    opacity: 0.7;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.sidebar-cta p {
    opacity: 0.9;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.services-content {
    min-width: 0;
}

.empty-state {
    text-align: center;
    padding: 48px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    color: var(--gray-600);
}

/* ========================================
   PAGINATION
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   ALERTS
======================================== */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ========================================
   WHATSAPP BUTTON
======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.text-muted { color: var(--gray-500); }


/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 70px;
    }
    
    .header,
    .header-inner {
        height: 70px;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-link {
        padding: 14px;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 16px;
        display: none;
        border-left: 2px solid var(--primary);
        margin-left: 14px;
    }
    
    .nav-item.open .dropdown-menu {
        display: block;
    }
    
    /* Mega Menu Mobile */
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        display: none;
        background: var(--gray-50);
        margin: 0 -20px;
        padding: 0;
    }
    
    .nav-item.has-megamenu.open .mega-menu {
        display: block;
    }
    
    .mega-menu-inner {
        display: block;
        padding: 16px 20px;
    }
    
    .mega-menu-2col,
    .mega-menu-cols {
        grid-template-columns: 1fr;
    }
    
    .mega-menu-cta {
        display: none;
    }
    
    .mega-menu-title {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .mega-menu-list li a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .mega-menu-list li a i {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
    
    .mega-menu-all {
        margin-top: 12px;
        padding-top: 12px;
        font-size: 0.85rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services-page-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .services-sidebar,
    .contact-info-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .section {
        padding: 56px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item .stat-value {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-header .page-title {
        font-size: 1.75rem;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-post-inner {
        min-height: 300px;
    }
    
    .featured-post-content {
        padding: 24px;
    }
    
    .featured-post-content h2 {
        font-size: 1.5rem;
    }
    
    .featured-post-content p {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .whatsapp-btn {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open {
    overflow: hidden;
}

/* Form Invalid State */
.form-control.is-invalid {
    border-color: var(--danger);
}

/* Print */
@media print {
    .header,
    .footer,
    .whatsapp-btn {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
}


/* ========================================
   QUOTE PAGE
======================================== */
.quote-page-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

.quote-form-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.quote-form-header {
    margin-bottom: 24px;
}

.quote-form-header h2 {
    margin-bottom: 8px;
    color: var(--dark);
}

.quote-form-header p {
    color: var(--gray-600);
}

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quote-info-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.quote-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
    color: var(--dark);
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
}

.why-icon {
    width: 24px;
    height: 24px;
    background-color: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.quote-contact-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
}

.quote-contact-card h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.quote-contact-card p {
    opacity: 0.9;
}

.quote-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 16px 0;
}

.quote-phone:hover {
    color: var(--white);
    opacity: 0.9;
}

.phone-icon {
    font-size: 1.5rem;
}

.quote-hours {
    font-size: 0.9rem;
    opacity: 0.9;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-services li {
    margin-bottom: 10px;
}

.quick-services a {
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-services a::before {
    content: '→';
    color: var(--primary);
}

.quick-services a:hover {
    color: var(--primary);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input {
    margin-top: 3px;
    accent-color: var(--primary);
}

.form-check label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.form-check label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

@media (max-width: 1024px) {
    .quote-page-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .quote-info-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .quote-form-wrapper {
        padding: 24px;
    }
    
    .quote-sidebar {
        flex-direction: column;
    }
    
    .quote-info-card {
        min-width: auto;
    }
}

/* ========================================
   SECTOR CARD WITH IMAGE
======================================== */
.sector-card .sector-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
}

.sector-card .sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sector-card:hover .sector-image img {
    transform: scale(1.1);
}

/* ========================================
   SERVICE DETAIL PAGE
======================================== */
.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.service-content {
    min-width: 0;
}

.service-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.service-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.service-body h2,
.service-body h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.service-body p {
    margin-bottom: 16px;
}

.service-body ul,
.service-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.service-body li {
    margin-bottom: 8px;
    list-style: disc;
}

.service-features {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 32px 0;
}

.service-features h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.service-features ul {
    margin: 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    list-style: none;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.related-services li {
    margin-bottom: 10px;
}

.related-services a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    padding: 10px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.related-services a:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 992px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .service-hero-image img {
        height: 300px;
    }
}

/* ========================================
   SECTOR DETAIL PAGE
======================================== */
.sector-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.sector-content {
    min-width: 0;
}

.sector-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.sector-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.sector-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.sector-services {
    margin-top: 48px;
}

.sector-services h2 {
    margin-bottom: 24px;
}

.sector-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

@media (max-width: 992px) {
    .sector-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .sector-sidebar {
        position: static;
    }
    
    .sector-hero-image img {
        height: 250px;
    }
}

/* ========================================
   BLOG DETAIL PAGE
======================================== */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.blog-content {
    min-width: 0;
}

.blog-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-meta-full {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 0.9rem;
}

.blog-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.blog-body h2,
.blog-body h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-body p {
    margin-bottom: 16px;
}

.blog-body img {
    border-radius: var(--radius);
    margin: 24px 0;
}

.blog-body blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--gray-600);
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.related-posts li {
    margin-bottom: 16px;
}

.related-posts a {
    display: flex;
    gap: 12px;
    color: var(--gray-700);
}

.related-posts a:hover {
    color: var(--primary);
}

.related-posts .thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.related-posts .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-posts .info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}

.related-posts .info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

@media (max-width: 992px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .blog-hero-image img {
        height: 300px;
    }
}

/* ========================================
   PAGE CONTENT
======================================== */
.page-content {
    width: 100%;
}

.page-content .content-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.page-content .content-body h2,
.page-content .content-body h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark);
}

.page-content .content-body p {
    margin-bottom: 16px;
}

.page-content .content-body ul,
.page-content .content-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content .content-body li {
    margin-bottom: 8px;
    list-style: disc;
}

.page-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.page-body h2,
.page-body h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-body p {
    margin-bottom: 16px;
}

.page-body ul,
.page-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-body li {
    margin-bottom: 8px;
    list-style: disc;
}

/* ========================================
   SERVICES LIST PAGE
======================================== */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-list-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SECTORS LIST PAGE
======================================== */
.sectors-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .sectors-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sectors-list-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   SECTOR CARD LARGE (List Page)
======================================== */
.sector-card-large {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--gray-200);
}

.sector-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.sector-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sector-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sector-card-large:hover .sector-card-img img {
    transform: scale(1.05);
}

.sector-icon-large {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-icon-large i {
    font-size: 48px;
    color: var(--white);
}

.sector-card-body {
    padding: 24px;
}

.sector-card-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.sector-card-body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.sector-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.sector-card-large:hover .sector-more {
    color: var(--primary-dark);
}

/* ========================================
   SERVICE DETAIL PAGE FIXES
======================================== */
.service-main {
    min-width: 0;
}

.content-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.content-body h2,
.content-body h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark);
}

.content-body p {
    margin-bottom: 16px;
}

.content-body ul,
.content-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-body li {
    margin-bottom: 8px;
    list-style: disc;
}

.content-body img {
    border-radius: var(--radius);
    margin: 24px 0;
}

.features-list {
    margin: 0;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    list-style: none;
    color: var(--gray-700);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li svg {
    color: var(--success);
    flex-shrink: 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
}

.cta-card h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: 16px;
}

.cta-card .btn-block {
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    color: var(--primary);
}

.contact-item.whatsapp {
    color: #25d366;
}

.contact-item.whatsapp:hover {
    color: #128c7e;
}

.related-list {
    margin: 0;
    padding: 0;
}

.related-list li {
    margin-bottom: 8px;
}

.related-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    color: var(--gray-700);
    font-size: 0.9rem;
    transition: var(--transition);
}

.related-list a:hover,
.related-list a.active {
    background: var(--primary);
    color: var(--white);
}

.related-list a i {
    width: 20px;
    text-align: center;
}

/* Page Header with Background */
.page-header-service {
    position: relative;
    padding: 80px 0 48px;
    margin-top: -80px;
    padding-top: 160px;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.9) 0%, rgba(23, 43, 77, 0.85) 100%);
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    
}


/* ========================================
   BLOG DETAIL PAGE STYLES
======================================== */
.post-category-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.post-meta-header {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
}

.blog-tags {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tag {
    display: inline-block;
    background-color: var(--gray-100);
    color: var(--gray-600);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary);
    color: var(--white);
}

.blog-share {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.share-facebook { background-color: #1877f2; }
.share-twitter { background-color: #1da1f2; }
.share-linkedin { background-color: #0a66c2; }
.share-whatsapp { background-color: #25d366; }

.share-btn:hover {
    transform: translateY(-2px);
    color: var(--white);
}


/* ========================================
   PAGINATION EXTENDED
======================================== */
.pagination-wrapper {
    margin-top: 48px;
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

.pagination-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination-dots {
    padding: 0 8px;
    color: var(--gray-500);
}

/* ========================================
   ALERT STYLES IN CONTAINER
======================================== */
.alert.container {
    margin-top: 16px;
    margin-bottom: 16px;
}


/* ========================================
   PAGE FEATURED IMAGE
======================================== */
.page-featured-image {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}


/* ========================================
   ABOUT PAGE
======================================== */
.about-hero-image {
    width: 100%;
    aspect-ratio: 21 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.about-content h2 {
    font-size: 1.75rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content h3 {
    font-size: 1.35rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark);
}

.about-content p {
    margin-bottom: 16px;
}

.about-content ul,
.about-content ol {
    margin-bottom: 24px;
    padding-left: 0;
}

.about-content li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    list-style: none;
}

.about-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.about-content li strong {
    color: var(--dark);
}
