/* ===== NPC - Najla Pest Control ===== */
/* Design System: Najla Company pattern with NPC Blue/Green palette */

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #0A1628;
    min-height: 100vh;
    transition: all 0.4s ease;
    overflow-x: hidden;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
    .fade-in, .slide-left, .slide-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== SKIP NAVIGATION ===== */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: #1B44C8;
    color: #fff;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-nav:focus {
    top: 0;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}
.whatsapp-float i {
    color: #fff;
    font-size: 28px;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.header .container {
    padding: 0;
    max-width: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* ===== HEADER ===== */
.header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 0;
}

.header.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 8px 0;
}

/* Logo */
.logo-section {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo {
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.logo-white {
    filter: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Contact Quick */
.contact-quick {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(27, 68, 200, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #0A1628;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.contact-quick:hover {
    background: rgba(27, 68, 200, 0.15);
    color: #1B44C8;
}

.contact-quick i {
    color: #1B44C8;
    font-size: 12px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    color: #0A1628;
    border: 2px solid #1B44C8;
    box-shadow: none;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-quote-btn:hover {
    background: #1B44C8;
    color: #FFFFFF;
    border-color: #1B44C8;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(27, 68, 200, 0.3);
}

/* ===== NAVBAR ===== */
.navbar {
    background: transparent;
    padding: 0;
    transition: none;
}

.header.scrolled .navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 60px;
    padding: 8px 12px 8px 20px;
    margin: 0 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-wrapper {
    margin: 0 30px;
    padding: 6px 12px 6px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-menu a {
    color: #0A1628;
    font-weight: 500;
}

.header.scrolled .nav-menu a:hover {
    color: #1B44C8;
    background: transparent;
}

.header.scrolled .nav-menu a.active {
    color: #0A1628;
    background: transparent;
}

.header.scrolled .header-quote-btn {
    color: #0A1628;
    border-color: #1B44C8;
}

.header.scrolled .header-quote-btn:hover {
    background: #1B44C8;
    color: #FFFFFF;
    border-color: #1B44C8;
}

.header.scrolled .logo-white {
    filter: none;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    font-weight: 500;
    color: #0A1628;
    padding: 8px 16px;
    position: relative;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    border: none;
}

.nav-menu a:hover {
    color: #1B44C8;
    background: transparent;
    transform: none;
    box-shadow: none;
    border: none;
}

.nav-menu a.active {
    color: #1B44C8;
    background: rgba(27, 68, 200, 0.08);
    border: none;
    font-weight: 700;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    display: block;
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: #1B44C8;
}

.nav-menu a.active:hover {
    background: rgba(27, 68, 200, 0.12);
    color: #1B44C8;
    border: none;
    transform: none;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a i {
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 16px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    border: 2px solid #1B44C8;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #0A1628;
    border-radius: 10px;
    margin: 2px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: #1B44C8;
    color: white;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(27, 68, 200, 0.2);
}

/* Mobile Menu Btn */
.mobile-menu-btn {
    display: none;
    background: rgba(27, 68, 200, 0.1);
    border: 1px solid rgba(27, 68, 200, 0.2);
    border-radius: 10px;
    padding: 10px;
    font-size: 18px;
    color: #1B44C8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(27, 68, 200, 0.15);
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #0A1628 0%, #0f2040 50%, #0A1628 100%);
    color: white;
    padding: 120px 0 20px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(27, 68, 200, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left h1 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.hero-left .highlight {
    color: #1B44C8;
    display: block;
}

.hero-left p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 520px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 0;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.03em;
    position: relative;
}

.hero-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1B44C8 0%, #1B44C8 33%, #FFFFFF 33%, #FFFFFF 66%, #28A745 66%, #28A745 100%);
    border-radius: 2px;
}

.hero-badge i {
    color: #1B44C8;
    font-size: 13px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Hero Trust Row */
.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    border: none;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    padding: 0 20px;
}

.hero-trust-number {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.hero-trust-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.25);
}

/* ===== HERO RIGHT - Services Showcase ===== */
.hero-right {
    position: relative;
}

.services-showcase-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Services Tower */
.services-tower {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card-hero {
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 50px;
}

.service-card-hero:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card-hero i {
    font-size: 16px;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #1B44C8;
    color: #1B44C8;
}

.service-card-hero span {
    font-size: 12px;
    font-weight: 600;
    color: #0A1628;
}

.service-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #28A745;
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

/* Unified Card */
.unified-card {
    width: 200px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    flex-shrink: 0;
}

/* Performance Section */
.performance-section {
    background: #ffffff;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.performance-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.performance-header i {
    color: #1B44C8;
    font-size: 14px;
}

.stats-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.chart-container.center {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.chart-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

.chart-number {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #1B44C8;
    margin-bottom: 1px;
    line-height: 1;
}

.chart-label {
    font-size: 7px;
    color: #999;
    font-weight: 400;
    line-height: 1.1;
    display: block;
    opacity: 0.8;
}

.stat-col {
    text-align: center;
    flex: 1;
}

.stat-col.left {
    text-align: left;
}

.stat-col.right {
    text-align: right;
}

.stat-big {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 2px;
    line-height: 1;
}

.stat-small {
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

/* Contact Section (Bottom of unified card) */
.contact-section {
    background: #ffffff;
    padding: 18px;
    color: #0A1628;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-header-hero {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact-header-hero i {
    color: #1B44C8;
    font-size: 14px;
}

.contact-main {
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.phone-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.phone-icon {
    width: 35px;
    height: 35px;
    background: #1B44C8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon i {
    color: white;
    font-size: 14px;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-size: 14px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 2px;
}

.phone-label {
    font-size: 10px;
    color: #666;
}

.quick-actions {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.action-btn {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #1B44C8;
    border-radius: 8px;
    background: transparent;
    color: #1B44C8;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    white-space: nowrap;
}

.action-btn:hover {
    background: #1B44C8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 68, 200, 0.2);
}

.action-btn i {
    font-size: 9px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: rgba(27, 68, 200, 0.35);
    color: #FFFFFF;
    border: 2px solid #1B44C8;
    box-shadow: none;
}

.btn-primary i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: #1B44C8;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 68, 200, 0.4);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-primary span {
    white-space: nowrap;
}

/* ===== ABOUT SECTION ===== */
.about-modern {
    padding: 80px 0;
    background: #FFFFFF;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.about-header-section {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.about-header-section .story-label {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-header-section h2 {
    font-size: 36px;
    color: #0A1628;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.about-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.about-modern.animated .about-header-section .story-label,
.about-modern.animated .about-header-section h2,
.about-modern.animated .about-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.story-label {
    display: inline-block;
    background: rgba(27, 68, 200, 0.1);
    border: 1px solid rgba(27, 68, 200, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: #1B44C8;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Stats Bar */
.about-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.7s ease 0.4s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.about-modern.animated .about-stats-bar {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-stat {
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-stat:hover {
    transform: scale(1.08);
}

.about-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #0A1628;
    line-height: 1;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.about-stat:hover .about-stat-number {
    color: #1B44C8;
}

.about-stat-label {
    font-size: 12px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

/* Timeline */
.timeline-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: #eee;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}

.about-modern.animated .timeline-modern::before,
.process-section.animated .timeline-modern::before {
    transform: scaleX(1);
}

.timeline-modern-item {
    text-align: center;
    position: relative;
    padding-top: 32px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
    border-radius: 12px;
    padding-bottom: 16px;
    cursor: default;
}

.timeline-modern-item:nth-child(1) { transition-delay: 0.7s; }
.timeline-modern-item:nth-child(2) { transition-delay: 0.85s; }
.timeline-modern-item:nth-child(3) { transition-delay: 1.0s; }
.timeline-modern-item:nth-child(4) { transition-delay: 1.15s; }

.about-modern.animated .timeline-modern-item,
.process-section.animated .timeline-modern-item {
    opacity: 1;
    transform: translateY(0);
}

.timeline-modern-item:hover {
    background: #f8f9fa;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(27, 68, 200, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(27, 68, 200, 0.1); }
}

.timeline-modern-dot {
    width: 12px;
    height: 12px;
    background: #1B44C8;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    box-shadow: 0 0 0 4px rgba(27, 68, 200, 0.2);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-modern-item:nth-child(1) .timeline-modern-dot { transition-delay: 0.8s; }
.timeline-modern-item:nth-child(2) .timeline-modern-dot { transition-delay: 0.95s; }
.timeline-modern-item:nth-child(3) .timeline-modern-dot { transition-delay: 1.1s; }
.timeline-modern-item:nth-child(4) .timeline-modern-dot { transition-delay: 1.25s; }

.about-modern.animated .timeline-modern-dot,
.process-section.animated .timeline-modern-dot {
    transform: translateX(-50%) scale(1);
}

.timeline-modern-item:hover .timeline-modern-dot {
    animation: dotPulse 1.5s ease infinite;
}

.timeline-modern-year {
    font-size: 28px;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 8px;
}

.timeline-modern-item h4 {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0 0 6px;
}

.timeline-modern-item p {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* ===== PESTS PORTFOLIO ===== */
.pests-portfolio {
    padding: 80px 40px;
    background: #ffffff;
    margin: 40px auto;
    max-width: 1200px;
    width: calc(100% - 80px);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pests-grid-5 {
    grid-template-columns: repeat(5, 1fr) !important;
}

.pest-card {
    cursor: pointer;
}

.badge-danger {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: white;
}
.badge-danger.high {
    background: #dc3545;
}
.badge-danger.medium {
    background: #fd7e14;
}
.badge-danger.low {
    background: #28A745;
}

/* ===== PEST MODAL ===== */
.pest-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.pest-modal-overlay.active {
    display: flex;
}
.pest-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}
.pest-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.pest-modal-close:hover {
    background: #dc3545;
}
.pest-modal-img-wrap {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.pest-modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pest-modal-body {
    padding: 32px;
}
.pest-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.pest-modal-header h2 {
    font-size: 26px;
    color: #0A1628;
    margin: 0;
}
.pest-modal-scientific {
    color: #888;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 14px;
}
.pest-modal-section {
    margin-bottom: 18px;
}
.pest-modal-section h4 {
    color: #1B44C8;
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pest-modal-section h4 i {
    font-size: 14px;
}
.pest-modal-section p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}
.pest-modal-cta {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
}

/* ===== SERVICES PORTFOLIO ===== */
.services-portfolio {
    padding: 80px 40px;
    background: #ffffff;
    margin: 40px auto;
    max-width: 1200px;
    width: calc(100% - 80px);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.services-modern-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-label {
    display: inline-block;
    background: rgba(27, 68, 200, 0.1);
    border: 1px solid rgba(27, 68, 200, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: #1B44C8;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.services-modern-header h2 {
    font-size: 36px;
    color: #0A1628;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.services-modern-header p {
    font-size: 15px;
    color: #999;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.service-modern-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    text-align: left;
    border: 1px solid #ddd;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-modern-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #1B44C8;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.service-modern-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-modern-card:hover::before {
    transform: scaleX(1);
}

/* Service Card Image */
.service-card-img {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #e8e8e8;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-modern-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-number {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 6px;
    line-height: 1;
    pointer-events: none;
    letter-spacing: 0.03em;
}

/* Service Card Body */
.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h3 {
    font-size: 18px;
    color: #0A1628;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-card-body p {
    color: #999;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-modern-btn {
    background: transparent;
    color: #0A1628;
    border: none;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-modern-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.service-modern-btn:hover {
    color: #1B44C8;
    gap: 12px;
}

.service-modern-btn:hover i {
    transform: translateX(3px);
}

/* Scroll Animations for services-portfolio */
.services-portfolio .services-modern-header .services-label,
.services-portfolio .services-modern-header h2,
.services-portfolio .services-modern-header p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.services-portfolio .services-modern-header h2 { transition-delay: 0.1s; }
.services-portfolio .services-modern-header p { transition-delay: 0.2s; }

.services-portfolio.visible .services-modern-header .services-label,
.services-portfolio.visible .services-modern-header h2,
.services-portfolio.visible .services-modern-header p {
    opacity: 1;
    transform: translateY(0);
}

.service-modern-card {
    opacity: 0;
    transform: translateY(30px);
}

.services-portfolio.visible .service-modern-card,
.pests-portfolio.visible .service-modern-card,
.certs-section.visible .service-modern-card,
.why-section.visible .service-modern-card {
    opacity: 1;
    transform: translateY(0);
}

.services-portfolio.visible .service-modern-card:nth-child(1),
.pests-portfolio.visible .service-modern-card:nth-child(1),
.certs-section.visible .service-modern-card:nth-child(1),
.why-section.visible .service-modern-card:nth-child(1) { transition-delay: 0.15s; }
.services-portfolio.visible .service-modern-card:nth-child(2),
.pests-portfolio.visible .service-modern-card:nth-child(2),
.certs-section.visible .service-modern-card:nth-child(2),
.why-section.visible .service-modern-card:nth-child(2) { transition-delay: 0.25s; }
.services-portfolio.visible .service-modern-card:nth-child(3),
.pests-portfolio.visible .service-modern-card:nth-child(3),
.certs-section.visible .service-modern-card:nth-child(3),
.why-section.visible .service-modern-card:nth-child(3) { transition-delay: 0.35s; }
.services-portfolio.visible .service-modern-card:nth-child(4),
.pests-portfolio.visible .service-modern-card:nth-child(4),
.certs-section.visible .service-modern-card:nth-child(4),
.why-section.visible .service-modern-card:nth-child(4) { transition-delay: 0.45s; }
.services-portfolio.visible .service-modern-card:nth-child(5),
.pests-portfolio.visible .service-modern-card:nth-child(5),
.certs-section.visible .service-modern-card:nth-child(5),
.why-section.visible .service-modern-card:nth-child(5) { transition-delay: 0.55s; }
.services-portfolio.visible .service-modern-card:nth-child(6),
.pests-portfolio.visible .service-modern-card:nth-child(6),
.certs-section.visible .service-modern-card:nth-child(6),
.why-section.visible .service-modern-card:nth-child(6) { transition-delay: 0.65s; }
.pests-portfolio.visible .service-modern-card:nth-child(7) { transition-delay: 0.3s; }
.pests-portfolio.visible .service-modern-card:nth-child(8) { transition-delay: 0.4s; }
.pests-portfolio.visible .service-modern-card:nth-child(9) { transition-delay: 0.5s; }
.pests-portfolio.visible .service-modern-card:nth-child(10) { transition-delay: 0.6s; }

/* Services CTA */
.services-cta {
    text-align: center;
    padding-top: 0;
    border-top: none;
}

.services-cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 16px;
    background: white;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(20px);
}

.services-portfolio.visible .services-cta-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.services-cta-btn:hover {
    border-color: #1B44C8;
    box-shadow: 0 10px 30px rgba(27, 68, 200, 0.08);
    transform: translateY(-3px);
}

.services-cta-btn span:first-child {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.services-cta-arrow {
    font-size: 15px;
    color: #1B44C8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.services-cta-arrow i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.services-cta-btn:hover .services-cta-arrow i {
    transform: translateX(4px);
}

/* ===== CERTIFICATIONS ===== */
.certs-section {
    padding: 80px 40px;
    background: #ffffff;
    margin: 40px auto;
    max-width: 1200px;
    width: calc(100% - 80px);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cert-card-item {
    border: 1px solid #eee !important;
}

.cert-body {
    text-align: center;
    padding: 32px 24px !important;
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: rgba(27, 68, 200, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.cert-icon i {
    font-size: 24px;
    color: #1B44C8;
}

.cert-body h3 {
    text-align: center;
}

.cert-body p {
    text-align: center;
    margin-bottom: 0 !important;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 80px 0;
    background: #FFFFFF;
    margin: 0;
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 80px 40px;
    background: #ffffff;
    margin: 40px auto;
    max-width: 1200px;
    width: calc(100% - 80px);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.why-body {
    text-align: center;
    padding: 32px 24px !important;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.why-icon i {
    font-size: 20px;
    color: #28A745;
}

.why-body h3 {
    text-align: center;
}

.why-body p {
    text-align: center;
    margin-bottom: 0 !important;
}

/* ===== REVIEWS ===== */
.reviews-section {
    padding: 80px 0;
    background: #FFFFFF;
}

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

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    background: rgba(27, 68, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B44C8;
    font-size: 16px;
}

.reviewer h5 {
    font-size: 14px;
    color: #0A1628;
    margin: 0 0 2px;
    font-weight: 600;
}

.reviewer span {
    font-size: 12px;
    color: #999;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 13px;
}

.review-quote {
    position: relative;
    padding-left: 24px;
}

.review-quote .fa-quote-left {
    position: absolute;
    left: 0;
    top: 2px;
    color: rgba(27, 68, 200, 0.2);
    font-size: 16px;
}

.review-quote p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.review-tag {
    margin-top: 16px;
    font-size: 12px;
    color: #999;
}

.review-tag span {
    color: #1B44C8;
    font-weight: 700;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(27, 68, 200, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question h4 {
    font-size: 15px;
    color: #0A1628;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #1B44C8;
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== CTA MODERN ===== */
.cta-modern {
    background: #0A1628;
    color: white;
    padding: 60px 0;
    margin: 40px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(27, 68, 200, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-main {
    text-align: left;
}

.cta-badge {
    display: inline-block;
    background: rgba(27, 68, 200, 0.2);
    border: 1px solid rgba(27, 68, 200, 0.3);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    color: #6d9ff6;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-main h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-main p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: #1B44C8;
    color: white;
    border: 2px solid #1B44C8;
}

.btn-cta.primary:hover {
    background: transparent;
    color: #6d9ff6;
    transform: translateY(-2px);
}

.btn-cta.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta.secondary:hover {
    background: white;
    color: #0A1628;
    border-color: white;
}

/* CTA Contact Card */
.contact-card-cta {
    background: white;
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #0A1628;
}

.card-header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #0A1628;
}

.card-header-cta i {
    color: #1B44C8;
    font-size: 16px;
}

.contact-methods {
    margin-bottom: 16px;
}

.contact-method-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method-cta:hover {
    background: #f8f9fa;
}

.contact-method-cta i {
    color: #1B44C8;
    font-size: 14px;
    width: 20px;
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 10px;
    color: #666;
    margin-bottom: 1px;
}

.method-value {
    font-size: 13px;
    color: #0A1628;
    font-weight: 600;
}

.response-time {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.response-badge {
    display: block;
    font-size: 12px;
    color: #1B44C8;
    font-weight: 600;
    margin-bottom: 4px;
}

.response-text {
    font-size: 10px;
    color: #666;
}

/* ===== FOOTER ===== */
.footer-modern {
    background: #0A1628;
    color: white;
    padding: 50px 0 0;
    margin-top: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

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

.brand-section img {
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.brand-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

.links-column {
    flex: 1;
}

.links-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #1B44C8;
    padding-bottom: 8px;
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column ul li {
    margin-bottom: 8px;
}

.links-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.links-column ul li a:hover {
    color: #1B44C8;
    transform: translateX(5px);
}

.links-column ul li a i {
    font-size: 12px;
    width: 16px;
    opacity: 0.7;
}

.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: white;
    font-weight: 600;
}

.contact-info-footer {
    margin-bottom: 20px;
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item-footer i {
    color: #1B44C8;
    font-size: 14px;
    margin-top: 2px;
    width: 16px;
}

.business-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.hours-title {
    display: block;
    font-size: 12px;
    color: #1B44C8;
    font-weight: 600;
    margin-bottom: 4px;
}

.hours-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #1B44C8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 68, 200, 0.3);
}

.footer-social a.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-bottom-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, #0A1628 0%, #0f2040 100%);
    padding: 160px 0 60px;
    color: white;
    text-align: center;
    position: relative;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(27, 68, 200, 0.15) 0%, transparent 60%);
}
.contact-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.contact-hero p {
    font-size: 16px;
    opacity: 0.85;
    position: relative;
    z-index: 2;
}

.contact-form-section {
    padding: 60px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #eee;
}

.contact-form-card h3 {
    font-size: 20px;
    color: #0A1628;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0A1628;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1B44C8;
    box-shadow: 0 0 0 3px rgba(27, 68, 200, 0.1);
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: #1B44C8;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #153aab;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 68, 200, 0.3);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.info-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(27, 68, 200, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-icon i {
    color: #1B44C8;
    font-size: 18px;
}

.info-item h4 {
    font-size: 14px;
    color: #0A1628;
    margin: 0 0 4px;
}

.info-item p,
.info-item a {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.info-item a:hover {
    color: #1B44C8;
}

/* Form notification */
.form-notification {
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
