body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, #e0f2fe 0, transparent 50%),
                radial-gradient(circle at bottom right, #dcfce7 0, transparent 55%),
                #f3f4f6;
    color: #0f172a;
    padding-top: 80px;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.text-slate-200 {
    color: #e2e8f0;
}

.text-slate-400 {
    color: #94a3b8;
}

.main-navbar {
    transition: box-shadow 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.72), rgba(30, 64, 175, 0.66));
    border-bottom: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.55);
    backdrop-filter: saturate(140%) blur(18px);
}

.main-navbar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 50%, rgba(59, 130, 246, 0.18), transparent 45%),
                radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.16), transparent 35%);
    pointer-events: none;
    z-index: -1;
}

.main-navbar .navbar-brand {
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #e0f2fe !important;
    text-transform: uppercase;
}

.main-navbar.scrolled {
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.55);
    background: rgba(15, 23, 42, 0.98) !important;
}

.logo-img {
    height: 42px;
    width: auto;
}

.site-main {
    flex: 1;
    display: block;
    min-height: calc(100vh - 80px);
}

.navbar-brand span {
    background: linear-gradient(135deg, #93c5fd, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.95rem;
    font-weight: 500;
    padding-inline: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 0.75rem;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link:focus::after,
.navbar-light .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-light .navbar-nav .nav-link.active {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.18), rgba(14, 165, 233, 0.18));
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.45);
    border-width: 2px;
    border-radius: 0.75rem;
    padding: 6px 10px;
}

.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

.main-navbar .btn-primary.btn-sm {
    border-radius: 999px;
    padding-inline: 1.4rem;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top left, #22c55e 0, transparent 40%),
                radial-gradient(circle at bottom right, #0ea5e9 0, transparent 40%),
                linear-gradient(135deg, #0f172a, #020617);
    color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(148, 163, 184, 0.3), transparent 60%);
    opacity: 0.4;
}

.floating-shape {
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.4), transparent 65%);
    filter: blur(1px);
    opacity: 0.65;
    animation: float 12s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 220px;
    height: 220px;
    top: 10%;
    right: -60px;
}

.floating-shape.shape-2 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    left: -40px;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.03);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.hero-meta-item {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-meta-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(203, 213, 244, 0.75);
}

.hero-meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: #f9fafb;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1.2rem;
}

.hero-stats li {
    padding-right: 1rem;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.8);
}

.hero-feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.95rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.hero-contact-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 1.5rem;
    background: #f5f7fb;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.15);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
}

.contact-value {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.contact-highlight {
    background: #e0f2fe;
    color: #0f172a;
}

.contact-highlight .section-title {
    color: #0f172a;
}

.contact-highlight .section-subtitle {
    color: #1e293b;
}

.contact-info {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.14);
}

.contact-list li + li {
    margin-top: 1rem;
}

.contact-list .contact-label {
    color: #1e293b;
}

.contact-list .contact-value:hover {
    color: #2563eb;
}

.contact-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    height: 100%;
}

.contact-card h5 {
    color: #0f172a;
}

.contact-card p {
    color: #475569;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.contact-icon svg {
    display: block;
}

.gradient-1 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.gradient-2 {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.gradient-3 {
    background: linear-gradient(135deg, #f97316, #db2777);
}

.contact-shape {
    position: absolute;
    border-radius: 55%;
    filter: blur(120px);
    opacity: 0.45;
    z-index: 0;
}

.contact-shape.shape-1 {
    width: 320px;
    height: 320px;
    top: -120px;
    left: -60px;
    background: rgba(14, 165, 233, 0.55);
}

.contact-shape.shape-2 {
    width: 280px;
    height: 280px;
    bottom: -90px;
    right: -40px;
    background: rgba(59, 130, 246, 0.4);
}

.contact-highlight .container {
    position: relative;
    z-index: 1;
}

.contact-highlight .btn-outline-light,
.contact-highlight .btn-light {
    border-color: rgba(15, 23, 42, 0.2);
    color: #0f172a;
    background: #ffffff;
}

.contact-highlight .btn-outline-light:hover,
.contact-highlight .btn-light:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.pest-section {
    background: #f8fafc;
}

.pest-checklist li,
.tech-highlight li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
}

.pest-checklist li::before,
.tech-highlight li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.pest-card {
    display: flex;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.pest-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    background: rgba(59, 130, 246, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.pest-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pest-card-icon span {
    font-weight: 600;
    color: #1d4ed8;
}

.teknik-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.tech-card {
    display: flex;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    color: inherit;
}

.tech-card::after {
    content: none;
    display: none;
}

.tech-card-top { display: none; }

.tech-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    background: rgba(59, 130, 246, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    font-weight: 600;
    color: #1d4ed8;
}

.tech-card-icon.gradient-teal, .tech-card-icon.gradient-blue, .tech-card-icon.gradient-amber { background: rgba(59,130,246,0.12); box-shadow: none; }

.tech-card-meta {
    display: none;
}

.tech-index {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.15);
    color: #334155;
}

.tech-duration {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
}

.tech-card h5 {
    position: relative;
    z-index: 1;
    color: #0f172a;
}

.tech-card p {
    position: relative;
    z-index: 1;
    color: #475569;
}

.tech-card-points {
    display: none;
}

.tech-card-points li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    color: #475569;
}

.tech-card-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.tech-link {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.tech-card:hover .tech-link::after {
    transform: translateX(4px);
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.about-hero {
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 50%),
                radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.18), transparent 50%),
                linear-gradient(120deg, #0f172a, #1e3a8a);
    color: #e2e8f0;
}

.about-hero .pill-accent {
    background: rgba(226, 232, 240, 0.2);
    color: #bfdbfe;
}

.about-hero-title {
    font-size: clamp(2rem, 2.5vw + 1.2rem, 3.2rem);
    color: #f8fafc;
}

.about-hero-text {
    color: #cbd5f5;
    max-width: 620px;
}

.about-hero-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(120px);
    opacity: 0.45;
}

.about-hero-shape.shape-1 {
    width: 360px;
    height: 360px;
    top: -160px;
    left: -80px;
    background: rgba(59, 130, 246, 0.4);
}

.about-hero-shape.shape-2 {
    width: 320px;
    height: 320px;
    bottom: -180px;
    right: -120px;
    background: rgba(34, 197, 94, 0.4);
}

.about-hero-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 35px 70px rgba(2, 6, 23, 0.5);
}

.about-checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.35rem;
}

.about-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.about-stats li {
    min-width: 140px;
}

.about-stat-value {
    display: block;
    font-size: 2.3rem;
    font-weight: 600;
    color: #f8fafc;
}

.about-stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.7);
}

.about-content-card {
    border-radius: 1.5rem;
    padding: 2.5rem;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.about-content-text p {
    font-size: 0.98rem;
    color: #1e293b;
}

.about-mini-card {
    border-radius: 1.25rem;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.values-card {
    border-radius: 1.25rem;
    padding: 1.8rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.values-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.values-card:hover::after {
    opacity: 1;
}

.values-card h5 {
    position: relative;
    z-index: 1;
}

.values-card p {
    position: relative;
    z-index: 1;
    color: #475569;
}

.values-index {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.06);
}

.about-timeline-section {
    background: linear-gradient(135deg, #0f172a, #111827);
    color: #e2e8f0;
}

.about-timeline-shape {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 20%, rgba(34, 197, 94, 0.3), transparent 55%),
                radial-gradient(circle at 80% 60%, rgba(59, 130, 246, 0.25), transparent 60%);
    opacity: 0.6;
}

.about-timeline-section .section-title,
.about-timeline-section .pill-accent {
    color: #e2e8f0;
}

.about-timeline {
    border-left: 2px solid rgba(148, 163, 184, 0.25);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.55rem;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.timeline-year {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #93c5fd;
    min-width: 80px;
}

.about-timeline h5 {
    color: #f1f5f9;
}

.about-timeline p {
    color: rgba(226, 232, 240, 0.82);
}

.about-timeline .text-muted {
    color: rgba(226, 232, 240, 0.78) !important;
}

.cert-card {
    border-radius: 1.5rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(96, 165, 250, 0.25);
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.6);
}

.cert-card ul li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.cert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.about-timeline-section .about-mini-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #e2e8f0;
}

.about-timeline-section .about-mini-card p,
.about-timeline-section .about-mini-card li,
.about-timeline-section .about-mini-card h5 {
    color: #e2e8f0;
}

.about-timeline-section .about-mini-card .btn-primary {
    border: none;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
}

.team-card {
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 1.5rem 1rem;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.team-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(14, 165, 233, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar span {
    font-weight: 600;
    font-size: 1.8rem;
    color: #1d4ed8;
}

.team-bio {
    color: #475569;
}

@media (max-width: 767.98px) {
    .about-hero {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-hero-card {
        margin-top: 1.5rem;
    }

    .about-timeline {
        padding-left: 1rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.75rem;
    color: #e5e7eb;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    margin-right: 6px;
}

.hero-title {
    font-weight: 700;
    font-size: clamp(2.1rem, 3vw + 1.2rem, 3.1rem);
    line-height: 1.15;
}

.hero-subtitle {
    color: #cbd5f5;
}

.hero-card {
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.28), transparent 60%),
                radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.3), transparent 55%),
                rgba(15, 23, 42, 0.92);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.35);
    backdrop-filter: blur(16px);
}

.gradient-divider {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.85));
    color: #e5e7eb;
}

.stat-card {
    border-radius: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(12px);
    min-height: 150px;
}

.stat-accent {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #93c5fd;
}

.section-title {
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 1.5rem;
}

.section-subtitle {
    color: #6b7280;
    max-width: 620px;
}

.testimonial-card {
    border-radius: 1.5rem;
    background: #ffffff;
    padding: 2rem 1.75rem;
    box-shadow: 0 20px 65px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(34, 197, 94, 0.35);
    font-weight: 700;
    line-height: 1;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: #111827;
}

.testimonial-meta {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    padding-top: 1rem;
}

.service-card {
    border-radius: 1.25rem;
    border: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
    color: #f9fafb;
    font-size: 1.4rem;
}

.badge-soft-success {
    background-color: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.badge-soft-primary {
    background-color: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.badge-soft-slate {
    background-color: rgba(148, 163, 184, 0.2);
    color: #1f2937;
}

.badge-soft-amber {
    background-color: rgba(245, 158, 11, 0.12);
    color: #b45309;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.card.border-0.shadow-sm {
    border-radius: 1.2rem;
}

/* Buttons – modern pill, shine and ring */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.6rem 1.1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    backface-visibility: hidden;
    will-change: transform;
}

.btn-sm { padding: 0.45rem 0.9rem; border-radius: 999px; }
.btn-lg { padding: 0.8rem 1.25rem; border-radius: 999px; }

@keyframes btn-shine { from { transform: translateX(-120%); } to { transform: translateX(120%); } }

.btn::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 80px;
    height: 180%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.45), rgba(255,255,255,0));
    transform: rotate(15deg);
    opacity: 0;
    pointer-events: none;
}

.btn:hover::after { opacity: 0.8; animation: btn-shine 0.9s ease; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 0.2rem rgba(59,130,246,0.28), 0 12px 30px rgba(2,6,23,0.25); }

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: 1px solid rgba(34, 197, 94, 0.85);
    box-shadow: 0 14px 40px rgba(22, 163, 74, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
    color: #f8fafc;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 20px 55px rgba(22, 163, 74, 0.6);
}

.btn-outline-primary {
    border: 1.5px solid rgba(59, 130, 246, 0.6);
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #f9fafb;
    border-color: transparent;
    box-shadow: 0 18px 45px rgba(29, 78, 216, 0.35);
}

.btn-outline-secondary {
    border: 1.5px solid rgba(148, 163, 184, 0.85);
    color: #374151;
    background: rgba(148, 163, 184, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    color: #111827;
    border-color: transparent;
    box-shadow: 0 16px 35px rgba(148, 163, 184, 0.35);
}

.btn-light {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 14px 40px rgba(2,6,23,0.08);
}

.btn-light:hover,
.btn-light:focus {
    background: #f8fafc;
    box-shadow: 0 18px 55px rgba(2,6,23,0.14);
}

.btn-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: 1px solid rgba(34, 197, 94, 0.85);
    color: #f8fafc;
}

.btn-success:hover,
.btn-success:focus {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.site-footer {
    font-size: 0.875rem;
}

.process-section {
    background: linear-gradient(135deg, #0f172a, #111827 55%, #1d4ed8);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 25%, rgba(14, 165, 233, 0.35), transparent 55%);
    opacity: 0.8;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.pill-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.work-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.9);
    color: #f8fafc;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work-body {
    padding: 1.5rem;
}

.work-tag {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.work-card h5 {
    color: #0f172a;
}

.work-card p {
    color: #475569;
}

.work-card:hover {
transform: translateY(-6px);
box-shadow: 0 35px 65px rgba(15, 23, 42, 0.18);
}


.works-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    color: #0f172a;
}

.works-section .section-title {
    color: #0f172a;
}

.works-section .section-subtitle {
    color: #475569;
}

.works-section .pill-accent {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.works-meta {
    font-size: 0.9rem;
    color: #475569;
}

.work-card {
    border-radius: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.works-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(110px);
    opacity: 0.25;
}

.works-shape.shape-1 {
    width: 220px;
    height: 220px;
    top: -30px;
    left: -20px;
    background: rgba(148, 163, 184, 0.25);
}

.works-shape.shape-2 {
    width: 240px;
    height: 240px;
    bottom: -40px;
    right: -30px;
    background: rgba(59, 130, 246, 0.2);
}

.glass-panel {
    border-radius: 1.5rem;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.45);
    backdrop-filter: blur(16px);
    color: #e5e7eb;
}

.process-card {
    border-radius: 1.25rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.55);
    min-height: 170px;
}

.process-index {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #38bdf8;
}

.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.faq-card {
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-card .accordion-button {
    font-weight: 600;
    color: #111827;
    background: #fff;
}

.faq-card .accordion-button:not(.collapsed) {
    color: #14532d;
    background: rgba(34, 197, 94, 0.08);
    box-shadow: inset 0 -1px 0 rgba(148, 163, 184, 0.25);
}

.faq-card .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(34, 197, 94, 0.25);
}

.faq-card .accordion-body {
    background: #f8fafc;
    color: #1f2937;
}

.site-footer a {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.site-footer li a {
    display: inline-block;
    max-width: 100%;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    background: #22c55e;
    color: #f9fafb;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.68);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-icon::before {
    content: '';
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

section {
    scroll-margin-top: 90px;
}

@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
        font-size: 14px;
    }

    .hero-section {
        padding-top: 1rem;
        padding-bottom: 1.5rem;
    }

    .hero-card {
        margin-top: 2.2rem;
        padding: 1.5rem;
    }

    .hero-meta {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .work-card {
        margin-bottom: 1rem;
    }

    .work-media {
        border-radius: 6px;
        overflow: hidden;
    }

    .gallery-before-after {
        height: 200px;
    }

    .gallery-before-after img {
        height: 100%;
        object-fit: cover;
    }

    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-lg {
        max-width: 95vw;
    }

    .ratio {
        aspect-ratio: 16 / 9;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .logo-img {
        height: 32px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .hero-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .feature-pill {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .contact-label {
        font-size: 0.75rem;
    }

    .contact-value {
        font-size: 0.95rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-accent {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .process-card {
        padding: 1rem;
    }

    .process-index {
        font-size: 1.25rem;
    }

    .pest-card {
        padding: 0.75rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .tech-card {
        padding: 1rem;
    }

    .tech-card-icon {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .faq-card {
        margin-bottom: 0.75rem;
    }

    .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0.75rem;
    }

    p {
        margin-bottom: 0.75rem;
    }

    .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }

    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mt-5 {
        margin-top: 1.5rem !important;
    }

    .mb-4 {
        margin-bottom: 1rem !important;
    }

    .gap-4 {
        gap: 0.75rem !important;
    }
}

/* Çok küçük ekranlar için (< 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 1.25rem !important;
    }

    .btn-lg {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .modal-dialog {
        max-width: 100%;
    }

    .navbar-brand span {
        font-size: 0.8rem;
    }

    .work-card h5 {
        font-size: 1rem;
    }

    .work-tag {
        font-size: 0.75rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
    }
}

/* Modern Enhancements */
.card, .section-card, .about-content-card, .about-mini-card, .values-card, .team-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.card:hover, .section-card:hover, .about-content-card:hover, .about-mini-card:hover, .values-card:hover, .team-card:hover {
    box-shadow: 0 12px 48px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

/* Buttons Modern */
.btn {
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Forms Modern */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Tables Modern */
.table {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.table thead {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: scale(1.01);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Text Selection */
::selection {
    background: #667eea;
    color: #ffffff;
}

::-moz-selection {
    background: #667eea;
    color: #ffffff;
}

/* ========== MOBILE RESPONSIVENESS ========== */

/* Extra Small Devices (< 576px) */
@media (max-width: 575.98px) {
    body {
        padding-top: 70px;
        font-size: 14px;
    }

    .main-navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1rem !important;
    }

    .logo-img {
        height: 32px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding-inline: 0.5rem;
        font-size: 0.85rem;
        padding: 0.5rem 0.25rem;
    }

    .main-navbar .btn-primary.btn-sm {
        padding-inline: 0.8rem;
        font-size: 0.75rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-meta-item {
        padding: 0.6rem 0.8rem;
        border-radius: 0.75rem;
    }

    .hero-meta-label {
        font-size: 0.65rem;
    }

    .hero-meta-value {
        font-size: 0.9rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-feature-grid {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .feature-pill {
        padding: 0.25rem 0.7rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .pill-dot {
        width: 5px;
        height: 5px;
    }

    .hero-contact-bar {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.6rem;
        border-radius: 1rem;
    }

    .contact-item {
        gap: 0.15rem;
    }

    .contact-label {
        font-size: 0.65rem;
    }

    .contact-value {
        font-size: 0.85rem;
    }

    .d-flex.flex-wrap.gap-2 {
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .btn-light.btn-lg,
    .btn-outline-light.btn-lg {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .hero-card {
        padding: 1.2rem;
        margin-top: 2rem;
    }

    .hero-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .hero-card p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .form-control,
    .form-select,
    .form-control-sm,
    .form-select-sm {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .form-label {
        font-size: 0.8rem;
    }

    /* Gradient Divider */
    .gradient-divider {
        padding: 2rem 0;
    }

    .stat-card {
        padding: 1rem;
        min-height: auto;
        margin-bottom: 0.5rem;
    }

    .stat-accent {
        font-size: 0.75rem;
    }

    .stat-card h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .stat-card p {
        font-size: 0.8rem;
    }

    /* Services Section */
    .service-card {
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .service-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        max-width: 100%;
    }

    /* Process Section */
    .process-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .process-index {
        font-size: 2rem;
    }

    .process-card h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .process-card p {
        font-size: 0.8rem;
    }

    .glass-panel {
        padding: 1rem !important;
    }

    .glass-panel p {
        font-size: 0.85rem;
    }

    /* Pest Cards */
    .pest-card {
        gap: 0.6rem;
        padding: 0.8rem;
    }

    .pest-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .pest-card h6 {
        font-size: 0.95rem;
    }

    .pest-card p {
        font-size: 0.8rem;
    }

    .pest-checklist li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
        margin-bottom: 0.4rem;
    }

    /* Tech Cards */
    .tech-card {
        gap: 0.6rem;
        padding: 0.8rem;
    }

    .tech-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 0.9rem;
    }

    .tech-card h6 {
        font-size: 0.95rem;
    }

    .tech-card p {
        font-size: 0.8rem;
    }

    .tech-index {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .tech-duration {
        font-size: 0.7rem;
    }

    /* Testimonial Cards */
    .testimonial-card {
        padding: 1.2rem 1rem;
        margin-bottom: 1rem;
    }

    .quote-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-quote {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .testimonial-meta {
        padding-top: 0.8rem;
    }

    .testimonial-meta .fw-semibold {
        font-size: 0.9rem;
    }

    .testimonial-meta .small {
        font-size: 0.75rem;
    }

    /* Contact Section */
    .contact-info {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.3rem;
    }

    .contact-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .contact-card h5 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .contact-list li {
        margin-bottom: 0.8rem;
    }

    .contact-label {
        font-size: 0.7rem;
    }

    .contact-value {
        font-size: 0.9rem;
    }

    /* Work Cards */
    .work-card {
        margin-bottom: 1rem;
    }

    .work-body {
        padding: 1rem;
    }

    .work-tag {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .work-card h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .work-card p {
        font-size: 0.8rem;
    }

    .work-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    /* Buttons */
    .btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.85rem;
        gap: 0.3rem;
    }

    .btn-sm {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* About Section */
    .about-hero {
        text-align: center;
        padding: 2rem 0;
    }

    .about-hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .about-hero-text {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-stats li {
        min-width: 100px;
        margin-bottom: 1rem;
    }

    .about-stat-value {
        font-size: 1.8rem;
    }

    .about-stat-label {
        font-size: 0.75rem;
    }

    .about-hero-card {
        margin-top: 1.5rem;
        padding: 1.2rem;
    }

    .about-content-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-content-text p {
        font-size: 0.9rem;
    }

    .about-mini-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .values-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .values-index {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }

    /* Timeline */
    .about-timeline {
        border-left: 2px solid rgba(148, 163, 184, 0.25);
        padding-left: 1rem;
    }

    .timeline-item {
        gap: 0.8rem;
    }

    .timeline-year {
        font-size: 0.8rem;
        min-width: 70px;
    }

    .about-timeline h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .about-timeline p {
        font-size: 0.85rem;
    }

    /* Cert Card */
    .cert-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .cert-card ul li {
        font-size: 0.85rem;
        gap: 0.5rem;
        padding: 0.25rem 0;
    }

    /* Team Cards */
    .team-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .team-avatar span {
        font-size: 1.5rem;
    }

    .team-card h5 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .team-card p {
        font-size: 0.8rem;
    }

    .team-bio {
        font-size: 0.8rem;
    }

    /* Badges */
    .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }

    .badge.rounded-pill {
        padding: 0.35rem 0.8rem;
    }

    /* Pill Accent */
    .pill-accent {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 1rem;
    }

    /* Floating Shapes */
    .floating-shape.shape-1 {
        width: 150px;
        height: 150px;
        top: 5%;
        right: -50px;
    }

    .floating-shape.shape-2 {
        width: 180px;
        height: 180px;
        bottom: -60px;
        left: -30px;
    }

    /* About Hero Shapes */
    .about-hero-shape.shape-1 {
        width: 250px;
        height: 250px;
        top: -100px;
        left: -80px;
    }

    .about-hero-shape.shape-2 {
        width: 220px;
        height: 220px;
        bottom: -120px;
        right: -100px;
    }

    /* Contact Shapes */
    .contact-shape.shape-1 {
        width: 250px;
        height: 250px;
        top: -80px;
        left: -60px;
    }

    .contact-shape.shape-2 {
        width: 220px;
        height: 220px;
        bottom: -70px;
        right: -40px;
    }

    /* Works Shapes */
    .works-shape.shape-1 {
        width: 180px;
        height: 180px;
        top: -20px;
        left: -20px;
    }

    .works-shape.shape-2 {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: -30px;
    }

    /* Container Padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Row Gap */
    .row.g-4 {
        gap: 1rem;
    }

    .row.g-3 {
        gap: 0.8rem;
    }

    /* Sections Padding */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    /* Text Utilities */
    .fs-6 {
        font-size: 0.95rem !important;
    }

    .small {
        font-size: 0.8rem;
    }

    /* Modal */
    .modal-dialog {
        margin: 1rem;
    }

    .modal-content {
        border-radius: 1rem;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    /* Tables */
    .table {
        font-size: 0.85rem;
    }

    .table th {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .table td {
        padding: 0.5rem;
    }
}

/* Small Devices (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    body {
        padding-top: 75px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }

    .section-title {
        font-size: 1.4rem;
    }

    .hero-meta {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-contact-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 1.2rem;
    }

    .process-card {
        padding: 1.3rem;
    }

    .pest-card {
        gap: 0.7rem;
        padding: 0.9rem;
    }

    .tech-card {
        gap: 0.7rem;
        padding: 0.9rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 1.3rem;
    }

    .work-card {
        margin-bottom: 1.2rem;
    }

    .about-hero-card {
        padding: 1.3rem;
    }

    .about-content-card {
        padding: 1.8rem;
    }

    .values-card {
        padding: 1.4rem;
    }

    .team-card {
        padding: 1.2rem;
    }

    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* Medium Devices (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title {
        font-size: clamp(2rem, 3.5vw, 2.5rem);
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-hero-title {
        font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    }

    .hero-meta {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-contact-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 1.3rem;
    }

    .process-section .row.g-4 {
        gap: 1.5rem;
    }

    .pest-card {
        gap: 0.75rem;
        padding: 0.95rem;
    }

    .tech-card {
        gap: 0.75rem;
        padding: 0.95rem;
    }

    .testimonial-card {
        padding: 1.6rem;
    }

    .contact-card {
        padding: 1.4rem;
    }

    .about-content-card {
        padding: 2rem;
    }

    .values-card {
        padding: 1.5rem;
    }

    .team-card {
        padding: 1.3rem;
    }
}

/* Large Devices (992px and up) */
@media (min-width: 992px) {
    .hero-title {
        font-size: clamp(2.1rem, 3vw + 1.2rem, 3.1rem);
    }

    .about-hero-title {
        font-size: clamp(2rem, 2.5vw + 1.2rem, 3.2rem);
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-card {
        padding: 1.25rem;
        min-height: 150px;
    }

    .process-section .row.g-4 {
        gap: 2rem;
    }

    .pest-card {
        gap: 0.85rem;
        padding: 1rem;
    }

    .tech-card {
        gap: 0.85rem;
        padding: 1rem;
    }

    .testimonial-card {
        padding: 2rem 1.75rem;
    }

    .contact-card {
        padding: 1.75rem;
    }

    .about-content-card {
        padding: 2.5rem;
    }

    .values-card {
        padding: 1.8rem;
    }

    .team-card {
        padding: 1.5rem 1rem;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-stats {
        display: none;
    }

    .d-flex.flex-wrap.gap-2 {
        gap: 0.5rem !important;
    }

    .btn-light.btn-lg,
    .btn-outline-light.btn-lg {
        padding: 0.5rem 0.9rem;
        font-size: 0.85rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        padding: 0.7rem 1.2rem;
        min-height: 44px;
        min-width: 44px;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }

    .form-control,
    .form-select {
        padding: 0.75rem;
        font-size: 16px;
    }

    .service-card:hover {
        transform: none;
    }

    .pest-card:hover {
        transform: none;
    }

    .tech-card:hover {
        transform: none;
    }

    .work-card:hover {
        transform: none;
    }

    .testimonial-card {
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    }
}

/* Print Styles */
@media print {
    .main-navbar,
    .site-footer,
    .btn,
    .contact-highlight {
        display: none;
    }

    body {
        padding-top: 0;
        background: #ffffff;
    }

    .hero-section {
        min-height: auto;
        background: #ffffff;
        color: #000;
    }

    .hero-title,
    .section-title {
        color: #000;
        page-break-inside: avoid;
    }
}
