/* ============================================
   NakliyatScript - Ana Stil Dosyası
   Premium Nakliyat Firma Scripti
   ============================================ */


/* ============================================
   CSS Variables / Renk Paleti
   ============================================ */
:root {
    --primary: #1a237e;
    --primary-light: #283593;
    --primary-dark: #0d1442;
    --secondary: #ff6f00;
    --secondary-light: #ff8f00;
    --secondary-dark: #e65100;
    --accent: #00bcd4;

    --bg-body: #f5f7fa;
    --bg-white: #ffffff;
    --bg-light: #f8f9fc;
    --bg-dark: #0a0e27;
    --bg-card: #ffffff;

    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;
    --text-white: #ffffff;

    --border-color: #e2e8f0;
    --border-light: #edf2f7;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.06);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;

    --header-height: 80px;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-body);
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Utilities
   ============================================ */
.section-padding {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title .badge-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(255, 111, 0, 0.08));
    color: var(--secondary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title h2 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: var(--transition-slow);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.35);
    color: var(--text-white);
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--text-white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.25);
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.35);
    color: var(--text-white);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ============================================
   Navbar / Header
   ============================================ */
.navbar-custom {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar-custom.scrolled {
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    top: 0;
}

.navbar-custom .navbar-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-custom.scrolled .navbar-brand {
    color: var(--text-white);
}

.navbar-custom .navbar-brand img {
    height: 38px;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-custom.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.12);
}

.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.12);
}

.navbar-custom .nav-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--text-white) !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.25);
}

.navbar-custom .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.35);
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary)) !important;
}

/* Dropdown menüler */
.navbar-custom .dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px;
    margin-top: 8px;
    min-width: 220px;
    background: var(--bg-white);
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-custom .dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item.active {
    background: rgba(26, 35, 126, 0.06);
    color: var(--primary);
}

.navbar-custom .dropdown-item i {
    color: var(--text-muted);
    font-size: 15px;
}

.navbar-custom .dropdown-item:hover i {
    color: var(--primary);
}

.navbar-custom .dropdown-divider {
    margin: 4px 8px;
    border-color: var(--border-light);
}

.navbar-custom .dropdown-toggle::after {
    font-size: 10px;
    vertical-align: 2px;
    margin-left: 4px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-custom.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff6f00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1;
    overflow: hidden;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.min-vh-hero {
    min-height: calc(100vh + 60px);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 8s ease;
    opacity: 0.5;
}

.hero-slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-bg-0 {
    background: linear-gradient(135deg, #0a0f2e 0%, var(--primary) 40%, var(--primary-light) 100%);
}

.slide-bg-1 {
    background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 50%, #2d5f9a 100%);
}

.slide-bg-2 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 15, 46, 0.75) 0%, rgba(10, 15, 46, 0.65) 50%, rgba(10, 15, 46, 0.7) 100%);
    z-index: 2;
}

.slider-dots {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.3);
}

.slider-dot:hover {
    border-color: #fff;
}

.slider-arrow {
    position: absolute;
    bottom: 30px;
    z-index: 10;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.05);
}

.slider-prev {
    right: 120px;
}

.slider-next {
    right: 56px;
}

.hero-stats-bar {
    position: relative;
    z-index: 100;
    margin-top: -60px;
    background: transparent;
    padding: 0;
}

.stats-inner {
    display: flex;
    justify-content: center;
    gap: 60px;
    background: var(--bg-white);
    padding: 36px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(10, 15, 46, 0.08);
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 178px 0 120px;
    /* Increased bottom padding to fit the overlapping stats bar */
}

.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    color: var(--text-white);
    font-weight: 500;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 28px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-content h1 .highlight {
    position: relative;
    display: inline;
    color: var(--secondary);
    background-image: linear-gradient(to top, transparent 0.08em, rgba(255, 111, 0, 0.2) 0.08em, rgba(255, 111, 0, 0.2) 0.28em, transparent 0.28em);
    padding: 0 4px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    border-radius: 4px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.hero-stat .label {
    font-size: 14px;
    color: var(--text-secondary);
    /* Dark text to contrast with white card */
    font-weight: 500;
    margin-top: 4px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
    overflow: hidden;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: var(--bg-white);
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(26, 35, 126, 0.08);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    background: #f8fafc;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05) rotate(-5deg);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.service-card .read-more i {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.service-card:hover .read-more {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.service-card:hover .read-more i {
    transform: translateX(6px);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--bg-light);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
    background: linear-gradient(135deg, #f8f9fc, #eef2f7);
    padding: 40px;
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--text-white);
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.3);
    text-align: center;
}

.about-experience-badge .number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
}

.about-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-content .lead {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.about-feature {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.about-feature .feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(26, 35, 126, 0.04));
    color: var(--primary);
}

.about-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.about-feature p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   Why Us / Features
   ============================================ */
.why-us-section {
    background: linear-gradient(135deg, #080c24 0%, var(--primary-dark) 50%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 111, 0, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(0, 188, 212, 0.05) 0%, transparent 60%);
}

.why-us-section .section-title h2,
.why-us-section .section-title p {
    color: var(--text-white);
}

.why-us-section .section-title h2 span {
    -webkit-text-fill-color: var(--secondary);
}

.why-us-stat {
    color: #fff;
    position: relative;
    padding: 10px 5px;
}

.row>div:not(:last-child) .why-us-stat::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.why-us-stat-num {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.why-us-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    white-space: normal;
    font-weight: 500;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--text-white);
    margin: 0 auto 18px;
    box-shadow: 0 6px 16px rgba(255, 111, 0, 0.25);
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section {
    background: var(--bg-white);
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 56px;
    font-family: var(--font-display);
    color: var(--secondary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 2px;
}

.testimonial-card .text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 17px;
}

.testimonial-card .author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.testimonial-card .author-title {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   Blog Section
   ============================================ */
.blog-section {
    background: var(--bg-light);
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card .blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-image .category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.blog-card .blog-body {
    padding: 24px;
}

.blog-card .blog-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.blog-card .blog-meta i {
    margin-right: 3px;
}

.blog-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover h3 {
    color: var(--primary);
}

.blog-card .blog-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 13px;
}

.blog-card .blog-read-more i {
    transition: var(--transition);
}

.blog-card:hover .blog-read-more i {
    transform: translateX(4px);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary) 50%, var(--secondary-light));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -8%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta-section .btn-white {
    background: var(--text-white);
    color: var(--secondary-dark);
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 15px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.cta-section .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

/* ============================================
   Contact / Quote Form
   ============================================ */
.contact-section {
    background: var(--bg-white);
}

.contact-info-card {
    background: linear-gradient(135deg, #0a0f2e, var(--primary));
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    height: 100%;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 111, 0, 0.08);
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    font-size: 14px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-info-item .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.contact-info-item .value {
    font-weight: 600;
    font-size: 14px;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--text-white);
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.contact-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-form-card>p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 14px;
}

.form-floating-custom {
    margin-bottom: 16px;
}

.form-floating-custom .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-floating-custom .form-control,
.form-floating-custom .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-floating-custom .form-control:focus,
.form-floating-custom .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.08);
    background: var(--bg-white);
}

.form-floating-custom textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background: var(--bg-light);
}

.faq-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    padding: 20px 22px;
    background: transparent;
    box-shadow: none;
    align-items: center;
    min-height: 60px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(26, 35, 126, 0.03);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a237e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 16px 22px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    min-height: 60px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(180deg, #070b1e, var(--bg-dark));
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.footer-main {
    padding: 70px 0 36px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-brand .logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand .logo img {
    height: 34px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    max-width: 260px;
}

.footer h5 {
    color: var(--text-white);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: none;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 15px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom p {
    font-size: 12px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ============================================
   Blog Detail Page
   ============================================ */
.blog-detail-hero {
    background: linear-gradient(135deg, #0a0f2e, var(--primary));
    padding: 168px 0 50px;
    color: var(--text-white);
}

.blog-detail-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.blog-detail-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.4);
}

.blog-detail-content {
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.blog-detail-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
}

.blog-detail-card .featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
}

.blog-detail-card .featured-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.blog-detail-card .content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.blog-detail-card .content h2,
.blog-detail-card .content h3 {
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 14px;
}

.blog-detail-card .content p {
    margin-bottom: 18px;
}

.blog-detail-card .content img {
    border-radius: var(--radius-md);
    margin: 18px 0;
}

/* Blog sidebar */
.blog-sidebar .widget {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.blog-sidebar .widget h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

.blog-sidebar .widget-post {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.blog-sidebar .widget-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-sidebar .widget-post img {
    width: 65px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.blog-sidebar .widget-post h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
    line-height: 1.4;
}

.blog-sidebar .widget-post .date {
    font-size: 11px;
    color: var(--text-muted);
}

.blog-sidebar .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar .category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.blog-sidebar .category-list li:last-child a {
    border-bottom: none;
}

.blog-sidebar .category-list li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.blog-sidebar .category-list li a .count {
    background: var(--bg-light);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* ============================================
   Inner Page Hero
   ============================================ */
.inner-hero {
    background: linear-gradient(135deg, #0a0f2e, var(--primary));
    padding: 168px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 120%, rgba(255, 111, 0, 0.06) 0%, transparent 60%);
}

.inner-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 14px;
    position: relative;
    letter-spacing: -0.02em;
}

.inner-hero .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    position: relative;
}

.inner-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.55);
}

.inner-hero .breadcrumb-item a:hover {
    color: var(--text-white);
}

.inner-hero .breadcrumb-item.active {
    color: var(--secondary);
}

.inner-hero .breadcrumb-item:not(.active) {
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.35);
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 84px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #25d366;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 10001;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
    color: var(--text-white);
}

/* ============================================
   Pagination
   ============================================ */
.pagination-wrapper {
    margin-top: 48px;
}

.pagination .page-link {
    border: none;
    padding: 10px 16px;
    margin: 0 3px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary);
    color: var(--text-white);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.25);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat .number {
        font-size: 26px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .inner-hero h1 {
        font-size: 32px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-md);
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .navbar-collapse .dropdown-menu {
        transition: opacity 0.2s ease, max-height 0.25s ease;
        overflow: hidden;
    }

    .navbar-collapse .dropdown-menu.hiding {
        opacity: 0;
        max-height: 0 !important;
        padding: 0;
        margin: 0;
        border: none;
    }

    .navbar-custom .collapsing {
        transition: height 0.35s ease;
    }

    .navbar-collapse .navbar-nav {
        padding: 16px;
    }

    .navbar-collapse .nav-link {
        color: var(--text-primary) !important;
    }

    .about-experience-badge {
        right: 10px;
        bottom: 10px;
    }

    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .section-padding {
        padding: 56px 0;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 24px;
    }

    .stats-inner {
        flex-direction: column;
        gap: 30px;
        padding: 24px;
        margin: 0 15px;
    }

    .hero-stats-bar {
        margin-top: -30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        justify-content: center;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 28px 20px;
    }

    .blog-detail-card {
        padding: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .inner-hero {
        padding: 148px 0 50px;
    }

    .inner-hero h1 {
        font-size: 26px;
    }

    .min-vh-hero {
        min-height: auto;
    }

    .hero-content {
        padding: 148px 0 80px;
    }

    .slider-dots {
        display: none;
    }

    .slider-arrow {
        display: none;
    }
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 10001;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(26, 39, 68, 0.3);
    z-index: 9998;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-top.active {
    display: flex;
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-light);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-light);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #f0f2f5 25%, #fafbfc 50%, #f0f2f5 75%);
    background-size: 400% 400%;
    animation: gradientShimmer 2s ease infinite;
    color: #cbd5e1;
    font-size: 56px;
}

@keyframes gradientShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 6px;
}

.gallery-category {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
}

.gallery-zoom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-zoom:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-top: 16px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: #e53935;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ / Accordion
   ============================================ */
.custom-accordion .accordion-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: var(--transition);
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 8px 24px rgba(26, 35, 126, 0.08);
}

.custom-accordion .accordion-button {
    background-color: transparent !important;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 16px;
    padding: 24px;
    box-shadow: none !important;
    border: none;
    transition: var(--transition);
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(26, 35, 126, 0.02) !important;
}

.custom-accordion .accordion-button::after {
    filter: invert(15%) sepia(35%) saturate(3015%) hue-rotate(224deg) brightness(82%) contrast(100%);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    background-color: rgba(26, 35, 126, 0.02);
}

/* ============================================
   Responsive - Tablet (max-width: 991px)
   ============================================ */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .section-title p {
        font-size: 15px;
    }

    /* Hero */
    .hero-content {
        padding: 158px 0 100px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .slider-dots {
        display: none;
    }

    .slider-prev {
        right: 100px;
    }

    .slider-next {
        right: 40px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
        bottom: 20px;
    }

    /* Stats Bar */
    .stats-inner {
        gap: 30px;
        padding: 28px 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat .number {
        font-size: 26px;
    }

    .hero-stat .label {
        font-size: 12px;
    }

    /* About */
    .about-content h2 {
        font-size: 28px;
    }

    .about-experience-badge {
        right: 10px;
        bottom: 15px;
        padding: 14px 20px;
    }

    .about-experience-badge .number {
        font-size: 28px;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 15px;
    }

    /* Contact */
    .contact-info-card {
        padding: 32px 24px;
    }

    .contact-form-card {
        padding: 32px 24px;
    }

    /* Blog Detail */
    .blog-detail-card {
        padding: 28px;
    }

    .blog-detail-card .featured-image img {
        height: 260px;
    }

    /* Footer */
    .footer-main {
        padding: 50px 0 28px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    /* Inner Hero */
    .inner-hero {
        padding: 148px 0 40px;
    }

    .inner-hero h1 {
        font-size: 30px;
    }
}

/* ============================================
   Responsive - Small Tablet (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .min-vh-hero {
        min-height: calc(100vh + 120px);
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 40px 0 160px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-bar {
        margin-top: -60px;
        padding: 0 20px;
    }

    .stats-inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 22px;
        border-radius: 12px;
    }

    .hero-stat {
        min-width: 0;
    }

    .hero-stat .number {
        font-size: 22px;
    }

    .hero-stat .label {
        font-size: 11px;
    }

    .why-us-stat-num {
        font-size: 26px;
    }

    .why-us-stat-label {
        font-size: 11px;
        white-space: normal;
    }

    /* Service Cards */
    .service-card {
        padding: 28px 22px;
    }

    .service-card .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 18px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    /* About */
    .about-content h2 {
        font-size: 24px;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
    }

    /* Feature Cards */
    .feature-card {
        padding: 24px 18px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px;
    }

    /* Blog */
    .blog-card .blog-image {
        height: 180px;
    }

    .blog-card .blog-body {
        padding: 18px;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 24px;
    }

    /* Contact */
    .contact-info-card h3 {
        font-size: 20px;
    }

    .contact-form-card h3 {
        font-size: 20px;
    }

    /* Blog Detail */
    .blog-detail-hero {
        padding: 148px 0 36px;
    }

    .blog-detail-card {
        padding: 22px;
    }

    .blog-detail-card .featured-image img {
        height: 200px;
    }

    .blog-detail-card .content {
        font-size: 14px;
    }

    /* Footer */
    .footer-main .row>div {
        margin-bottom: 24px;
    }

    .footer h5 {
        margin-bottom: 16px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-links {
        gap: 12px;
    }

    /* Inner Hero */
    .inner-hero {
        padding: 138px 0 30px;
    }

    .inner-hero h1 {
        font-size: 26px;
    }

    /* FAQ */
    .faq-accordion .accordion-button {
        font-size: 14px;
        padding: 16px 18px;
    }

    .faq-accordion .accordion-body {
        padding: 12px 18px 16px;
        font-size: 13px;
    }

    .custom-accordion .accordion-button {
        font-size: 14px;
        padding: 18px;
    }

    .custom-accordion .accordion-body {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}

/* ============================================
   Responsive - Mobile (max-width: 576px)
   ============================================ */
@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title .badge-text {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section-title p {
        font-size: 14px;
    }

    /* Buttons */
    .btn-primary-custom,
    .btn-secondary-custom {
        font-size: 14px;
        padding: 12px 24px;
    }

    /* Hero */
    .hero-content {
        padding: 128px 0 60px;
    }

    .hero-content .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 23px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 14px;
        border-radius: 10px;
    }

    .slider-prev {
        right: 88px;
    }

    .slider-next {
        right: 40px;
    }

    /* WhatsApp Mobile */
    .whatsapp-float {
        width: 46px;
        height: 46px;
        bottom: 20px;
        right: 15px;
    }

    /* Extra Mobile Fixes */
    html {
        overflow-x: hidden;
        width: 100vw;
    }

    .slider-dots {
        left: 15px;
    }

    /* Stats */
    .hero-stats-bar {
        margin-top: -60px;
        padding: 0 15px;
        /* Prevent overflow */
    }

    .why-us-stat-num {
        font-size: 20px;
    }

    .why-us-stat-label {
        font-size: 10px;
        white-space: normal;
    }

    .stats-inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 15px 10px;
        border-radius: 12px;
    }

    .hero-stat {
        min-width: 0;
        margin-bottom: 0;
    }

    .hero-stat .number {
        font-size: 20px;
    }

    .hero-stat .label {
        font-size: 11px;
    }

    /* Service Cards */
    .service-card {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .service-card .icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 22px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }

    .service-card .read-more {
        font-size: 13px;
    }

    /* About */
    .about-img-placeholder {
        padding: 20px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content .lead {
        font-size: 14px;
    }

    .about-experience-badge {
        position: absolute;
        right: 15px;
        bottom: -15px;
        display: block;
        margin-top: 0;
        padding: 12px 18px;
        transform: scale(0.85);
        transform-origin: bottom right;
    }

    /* Feature Cards */
    .feature-card {
        padding: 20px 16px;
    }

    .feature-card .icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .feature-card h4 {
        font-size: 14px;
    }

    .feature-card p {
        font-size: 12px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card .text {
        font-size: 13px;
    }

    .testimonial-card .author-avatar {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    /* Blog */
    .blog-card .blog-image {
        height: 160px;
    }

    .blog-card .blog-body {
        padding: 16px;
    }

    .blog-card h3 {
        font-size: 15px;
    }

    /* CTA */
    .cta-section {
        text-align: center;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .cta-section .btn-white {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
    }

    /* Contact */
    .contact-info-card {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }

    .contact-info-card h3 {
        font-size: 20px;
    }

    .contact-form-card {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }

    .contact-form-card h3 {
        font-size: 20px;
    }

    /* Blog Detail */
    .blog-detail-hero {
        padding: 138px 0 30px;
    }

    .blog-detail-card {
        padding: 18px;
        border-radius: var(--radius-lg);
    }

    .blog-detail-card .featured-image img {
        height: 180px;
    }

    /* Footer */
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer h5 {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact-item {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .footer-bottom-links a {
        font-size: 11px;
    }

    /* Inner Hero */
    .inner-hero {
        padding: 128px 0 24px;
    }

    .inner-hero h1 {
        font-size: 22px;
    }

    /* Forms */
    .form-floating-custom .form-control,
    .form-floating-custom .form-select {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 16px;
        right: 16px;
    }

    /* Cookie Banner */
    .cookie-banner {
        padding: 16px;
        font-size: 13px;
    }
}