/* Modern Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1px) translateZ(0);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.btn:hover::before { transform: scaleX(1); }

.btn-primary {
    background-color: #3b82f6;
    color: var(--white);
    border: none;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.btn-secondary:hover {
    background-color: #3b82f6;
    color: var(--white);
}

/* ========================================
   INNER PAGE HERO BANNER
   ======================================== */

.page-hero {
    position: relative;
    min-height: 380px;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=60') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,15,40,0.88) 0%, rgba(15,30,80,0.7) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.page-breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.page-breadcrumb a:hover { color: #93c5fd; }

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59,130,246,0.25);
    border: 1px solid rgba(59,130,246,0.4);
    color: #93c5fd;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.page-hero-title span {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 580px;
    margin: 0;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* Story Section */
.about-story-section {
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-story-grid { grid-template-columns: 1fr 1fr; }
}

.about-story-image {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.about-story-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.about-story-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.about-story-badge-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #3b82f6;
    line-height: 1;
    font-family: var(--font-heading);
}

.about-story-badge-txt {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    line-height: 1.4;
}

.about-story-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.about-stats-card {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.about-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.about-stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: #3b82f6;
    line-height: 1;
    font-family: var(--font-heading);
}

.about-stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* Values Section */
.about-values-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #e8efff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(59,130,246,0.1);
    border-color: #bfdbfe;
}

.value-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.value-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Timeline Section */
.about-timeline-section {
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
}

/* ─── OUR JOURNEY — Zigzag Vertical Timeline ─── */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 3rem auto 0;
}

/* Center vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #93c5fd);
    transform: translateX(-50%);
}

/* Left-side card (even items) */
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 2.5rem);
    padding-left: 0;
    margin-bottom: 2.5rem;
    position: relative;
}

/* Right-side card (odd items) */
.timeline-item.right {
    justify-content: flex-start;
    padding-left: calc(50% + 2.5rem);
    padding-right: 0;
}

/* Dot on the center line */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1.25rem;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #3b82f6;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.3);
    z-index: 2;
}

.timeline-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 320px;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    box-shadow: 0 12px 35px rgba(59,130,246,0.12);
    border-color: #bfdbfe;
}

.timeline-year {
    font-size: 0.78rem;
    font-weight: 800;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.4rem;
}

.timeline-event {
    font-size: 0.92rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* Mobile — collapse to left-side single column */
@media (max-width: 767px) {
    .timeline::before {
        left: 1rem;
        transform: none;
    }
    .timeline-item,
    .timeline-item.right {
        justify-content: flex-start;
        padding-left: 3rem;
        padding-right: 0;
    }
    .timeline-dot {
        left: 1rem;
        transform: translateX(-50%);
    }
    .timeline-card { max-width: 100%; }
}

/* About team section */
.about-team-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

/* ========================================
   SERVICES PAGE
   ======================================== */

.services-detail-section {
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
}

.services-detail-section .container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.svc-detail-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 5rem;
    border-bottom: 1px solid #f1f5f9;
}

.svc-detail-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (min-width: 1024px) {
    .svc-detail-card {
        grid-template-columns: 1fr 1fr;
    }
    .svc-detail-img-col.order-swap {
        order: 2;
    }
}

.svc-detail-img-wrap {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

.svc-detail-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.svc-detail-img-wrap:hover img {
    transform: scale(1.05);
}

.svc-detail-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.svc-detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.svc-detail-tagline {
    font-size: 0.82rem;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.625rem;
}

.svc-detail-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.svc-detail-desc {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.svc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.svc-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.svc-detail-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.svc-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.svc-price-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.svc-price-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
    font-family: var(--font-heading);
}

.svc-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Trust Strip */
.services-trust-strip {
    background: #0f172a;
    padding: 2rem 0;
}

.services-trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 700;
}

.trust-strip-icon {
    font-size: 1.25rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-main-section {
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
}

/* Info Cards Row */
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 560px) {
    .contact-info-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .contact-info-cards { grid-template-columns: repeat(4, 1fr); }
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 30px rgba(59,130,246,0.08);
    transform: translateY(-3px);
}

.contact-info-icon {
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.4rem;
}

.contact-info-link {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}
.contact-info-link:hover { color: #3b82f6; }

.contact-info-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem;
}

.contact-info-sub {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
}

/* Main Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* Form Wrap */
.contact-form-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    overflow: hidden;
}

.contact-form-header {
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    padding: 2rem 1rem;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.contact-form-subtitle {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.contact-form {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59,130,246,0.35);
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59,130,246,0.45);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-success {
    display: none;
    align-items: center;
    gap: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-top: 0.5rem;
}

.contact-success-icon { font-size: 2rem; }
.contact-success strong { display: block; font-weight: 800; color: #166534; margin-bottom: 0.2rem; }
.contact-success p { margin: 0; font-size: 0.85rem; color: #4ade80; color: #15803d; }

/* Side Panel */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-map-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Emergency Card */
.contact-emergency-card {
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-emergency-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(59,130,246,0.15);
    border-radius: 50%;
    pointer-events: none;
}

.emergency-pulse-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    position: relative;
}

.emergency-pulse-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(239,68,68,0.35);
    animation: pulse-ring 1.4s ease-out infinite;
}

.emergency-card-body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.emergency-card-body p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.emergency-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #ef4444;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(239,68,68,0.4);
    width: 100%;
    justify-content: center;
}

.emergency-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(239,68,68,0.5);
}

/* FAQ Grid */
.contact-faq-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .contact-faq-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-faq-item {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-faq-item:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 30px rgba(59,130,246,0.08);
}

.contact-faq-q {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.contact-faq-a {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   404 NOT FOUND PAGE
   ======================================== */

.not-found-main {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at top, #eff6ff 0%, #f8fafc 60%);
    padding: 5rem 0;
}

.not-found-inner {
    text-align: center;
}

.not-found-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.not-found-num {
    font-size: clamp(6rem, 18vw, 12rem);
    font-weight: 900;
    color: #3b82f6;
    line-height: 1;
    font-family: var(--font-heading);
}

.not-found-bug {
    font-size: clamp(4rem, 12vw, 8rem);
    animation: bugWiggle 2s ease-in-out infinite;
}

@keyframes bugWiggle {
    0%, 100% { transform: rotate(-10deg); }
    50%       { transform: rotate(10deg); }
}

.not-found-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
}

.not-found-text {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.not-found-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 600;
}

.not-found-links a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.2s;
}
.not-found-links a:hover { opacity: 0.7; }

/* ========================================
   SHARED: INNER CTA STRIP
   ======================================== */

.inner-cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    padding: 3.5rem 0;
}

.inner-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.inner-cta-text h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.inner-cta-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.inner-cta-section .btn-primary {
    background: #ffffff;
    color: #1e3a5f;
    border-color: #ffffff;
    white-space: nowrap;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.inner-cta-section .btn-primary:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

/* ========================================
   PROJECTS PAGE
   ======================================== */

.projects-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

/* Filter Bar */
.projects-filter-bar,
.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 3rem;
}

.proj-filter-btn,
.blog-filter-btn {
    padding: 0.55rem 1.25rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 99px;
    background: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
}

.proj-filter-btn:hover,
.blog-filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.proj-filter-btn.active,
.blog-filter-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
    background: #ffffff;
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(59,130,246,0.12);
    border-color: #dbeafe;
}

.project-card-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.project-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card-img-wrap img {
    transform: scale(1.06);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,50,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.project-card:hover .project-card-overlay { opacity: 1; }

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.project-tag {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.project-year-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(59,130,246,0.85);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    backdrop-filter: blur(4px);
}

.project-card-body {
    padding: 1.5rem;
}

.project-location {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.project-detail {
    margin-bottom: 0.875rem;
}

.project-detail-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.project-detail-text {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.project-result {
    color: #15803d;
    font-weight: 600;
}

/* ========================================
   BLOG PAGE
   ======================================== */

.blog-listing-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

/* Featured Post */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 4rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

@media (min-width: 1024px) {
    .blog-featured { grid-template-columns: 1.1fr 0.9fr; }
}

.blog-featured-img {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }

.blog-featured-cat {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.875rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-meta-sm { font-size: 0.72rem; margin-bottom: 0.625rem; }

.blog-featured-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.blog-featured-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: #3b82f6;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-read-btn:hover { gap: 0.75rem; }

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(59,130,246,0.1);
    border-color: #dbeafe;
}

.blog-card-img-link {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-cat {
    position: absolute;
    bottom: 0.875rem;
    left: 0.875rem;
    background: rgba(59,130,246,0.9);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.625rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.625rem;
    line-height: 1.35;
}

.blog-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.blog-card-title a:hover { color: #3b82f6; }

.blog-card-excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: auto;
}

.blog-card-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: #3b82f6;
    text-decoration: none;
    transition: letter-spacing 0.2s ease;
}
.blog-card-link:hover { letter-spacing: 0.02em; }

/* Newsletter Strip */
.blog-newsletter-section {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    padding: 4rem 0;
}

.blog-newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.blog-newsletter-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.blog-newsletter-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

.blog-newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-newsletter-input {
    padding: 0.875rem 1.25rem;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 0.9rem;
    font-family: inherit;
    min-width: 240px;
    outline: none;
    transition: border-color 0.2s ease;
}

.blog-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.blog-newsletter-input:focus { border-color: rgba(255,255,255,0.4); }

.blog-newsletter-btn {
    padding: 0.875rem 1.75rem;
    background: #3b82f6;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(59,130,246,0.4);
}
.blog-newsletter-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* ========================================
   BLOG POST PAGE
   ======================================== */

/* Post Hero */
.post-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.post-hero-img {
    position: absolute;
    inset: 0;
}

.post-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,15,40,0.9) 0%, rgba(5,15,40,0.5) 60%, rgba(5,15,40,0.2) 100%);
}

.post-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.post-hero-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 720px;
}

.post-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.post-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.post-author-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.post-author-role {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
}

.post-meta-sep { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

.post-meta-info {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* Post Content Layout */
.post-content-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

.post-content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .post-content-layout { grid-template-columns: 1fr 340px; }
}

/* Article Body */
.post-article {
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 3rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.post-lead {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid #f1f5f9;
    font-style: italic;
}

.post-body { color: #334155; line-height: 1.85; font-size: 1rem; }
.post-body h2 { font-size: 1.6rem; font-weight: 900; color: #0f172a; margin: 2.5rem 0 1rem; }
.post-body h3 { font-size: 1.2rem; font-weight: 800; color: #1e293b; margin: 2rem 0 0.75rem; }
.post-body p { margin-bottom: 1.25rem; }
.post-body ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body strong { font-weight: 800; color: #0f172a; }
.post-body em { font-style: italic; color: #475569; }
.post-body code { background: #f1f5f9; color: #0f172a; padding: 0.15em 0.4em; border-radius: 5px; font-size: 0.875em; font-family: monospace; }
.post-body a { color: #3b82f6; font-weight: 700; text-decoration: none; }
.post-body a:hover { text-decoration: underline; }
.post-body hr { border: none; border-top: 1px solid #e2e8f0; margin: 2rem 0; }
.post-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #3b82f6;
    background: #eff6ff;
    border-radius: 0 1rem 1rem 0;
    color: #1e3a5f;
    font-style: italic;
    font-size: 1.05rem;
}
.post-body blockquote p { margin: 0; }

.post-tags-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.post-tags-label { font-size: 0.78rem; font-weight: 700; color: #94a3b8; }

.post-tag-pill {
    background: #eff6ff;
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
}

.post-share-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 600;
}

.post-share-btn {
    padding: 0.4rem 0.875rem;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}
.post-share-btn:hover { background: #dbeafe; color: #2563eb; }

.post-back-btn {
    display: inline-block;
    margin-top: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #3b82f6;
    text-decoration: none;
}
.post-back-btn:hover { text-decoration: underline; }

/* Sidebar */
.post-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.post-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.post-sidebar-heading {
    font-size: 0.82rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.post-sidebar-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.post-sidebar-author {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.post-sidebar-role {
    font-size: 0.78rem;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.post-sidebar-bio {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0.5rem 0 0;
    text-align: center;
}

.post-sidebar-cta {
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    border-radius: 1.5rem;
    padding: 1.75rem;
    text-align: center;
}

.post-sidebar-cta h3 { font-size: 1rem; font-weight: 800; color: #ffffff; margin-bottom: 0.5rem; }
.post-sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1.25rem; }

.post-related-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    text-decoration: none;
    padding: 0.75rem 0;
    border-top: 1px solid #f1f5f9;
    transition: opacity 0.2s;
    width: 100%;
}
.post-related-item:hover { opacity: 0.75; }

.post-related-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.post-related-cat {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.post-related-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

/* ========================================
   SERVICE SUB-PAGES
   ======================================== */

.sub-overview-section {
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
}

.sub-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .sub-overview-grid { grid-template-columns: 1fr 1fr; }
}

.sub-overview-img {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.sub-overview-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sub-overview-img:hover img { transform: scale(1.04); }

.sub-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sub-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sub-feature-icon {
    width: 28px;
    height: 28px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.sub-feature-item strong {
    display: block;
    font-weight: 800;
    color: #0f172a;
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.sub-feature-item p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.sub-price-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.sub-price-box {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sub-price-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sub-price-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    font-family: var(--font-heading);
}

.sub-price-note {
    font-size: 0.72rem;
    color: #94a3b8;
}

/* Process Steps */
.sub-process-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

.sub-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .sub-process-steps { grid-template-columns: repeat(4, 1fr); }
}

.sub-process-step {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
}

.sub-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(59,130,246,0.1);
    border-color: #bfdbfe;
}

.sub-step-num {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
}

.sub-step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.sub-step-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.sub-step-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Sub FAQ */
.sub-faq-section {
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
}

.sub-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    .sub-faq-grid { grid-template-columns: repeat(2, 1fr); }
}

/* section-title-left utility */
.section-title-left {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

/* ========================================
   HERO SLIDER — PREMIUM REDESIGN
   ======================================== */

/* Root Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    max-height: 920px;
    overflow: hidden;
    padding: 0;
}

/* Background Slides */
.hero-slides-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    animation: heroZoom 14s linear forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

/* Multi-layer overlay: dark left, subtle vignette */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(5, 15, 35, 0.88) 0%,
            rgba(5, 15, 35, 0.55) 55%,
            rgba(5, 15, 35, 0.3) 100%),
        linear-gradient(to top,
            rgba(5, 15, 35, 0.6) 0%,
            transparent 40%);
}

/* ---- Main Content Layer ---- */
.hero-main-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 2rem;
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 6rem;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 340px;
        gap: 3rem;
        padding-bottom: 7rem;
    }
}

/* ---- Left: Text Block ---- */
.hero-text-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Trust Badges Row */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 2rem;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Content panels — only active panel visible */
.hero-content-panels {
    position: relative;
}

.hero-panel {
    display: none;
    flex-direction: column;
    gap: 0;
}

.hero-panel.active {
    display: flex;
    animation: panelFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes panelFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: #ffffff;
    padding: 0.45rem 1.2rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    width: fit-content;
    letter-spacing: 0.02em;
}

.hero-headline {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    max-width: 720px;
}

.hero-subline {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 2.75rem;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-cta-group .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.hero-cta-group .btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

/* ---- Right: Side Panel ---- */
.hero-side-panel {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    height: 100%;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-side-panel { display: flex; }
}

/* Counter */
.hero-slide-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.hero-counter-current {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    font-family: var(--font-heading);
}

.hero-counter-sep {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-counter-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-heading);
}

/* Thumbnail Navigation */
.hero-thumb-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.hero-thumb-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.35s ease;
    overflow: hidden;
    text-align: left;
    width: 100%;
}

.hero-thumb-item:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(59, 130, 246, 0.5);
}

.hero-thumb-item.active {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.hero-thumb-img {
    width: 56px;
    height: 42px;
    border-radius: 0.5rem;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.hero-thumb-label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
}

.hero-thumb-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: #93c5fd;
    letter-spacing: 0.08em;
}

.hero-thumb-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Progress bar at bottom of active thumb */
.hero-thumb-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #3b82f6;
    width: 0%;
    border-radius: 0 0 1rem 1rem;
    transition: none;
}

.hero-thumb-item.active .hero-thumb-progress {
    animation: thumbProgress 5s linear forwards;
}

@keyframes thumbProgress {
    from { width: 0%; }
    to   { width: 100%; }
}

/* Arrow Controls */
.hero-arrow-group {
    display: flex;
    gap: 0.75rem;
    align-self: flex-end;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.45);
}

/* ---- Bottom Stats Strip ---- */
.hero-stats-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1.1rem 0;
    flex-wrap: wrap;
    gap: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 1rem;
    flex: 1;
    min-width: 100px;
}

.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    font-family: var(--font-heading);
}

.hero-stat-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Mobile dots fallback (only shown < 1024) */
@media (max-width: 1023px) {
    .hero-stats-strip { display: none; }
    .hero-section { max-height: unset; }
}

/* ---- Shared gradient-text still valid ---- */
.hero-headline .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 60%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badge shared class used by other sections */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: #ffffff;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
}

/* General Section Styles */
.section-title-left {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary);
}

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

.animate-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ========================================
   WHO WE ARE (About) — PREMIUM REDESIGN
   ======================================== */
.about-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    background-color: #f8fafc;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(59,130,246,0.06), transparent 500px),
        radial-gradient(rgba(203,213,225,0.25) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 36px 36px;
    overflow: hidden;
}

.about-section::before {
    content: 'About';
    position: absolute;
    top: -3rem;
    right: -2rem;
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 900;
    color: rgba(59,130,246,0.025);
    font-family: var(--font-heading);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1.15fr; }
}

/* --- Image Block --- */
.about-image-block {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 2.5rem;
    overflow: visible;
}

.about-main-img {
    width: 100%;
    border-radius: 2.5rem;
    box-shadow: 0 40px 80px rgba(15,23,42,0.14);
    border: 10px solid #ffffff;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 1.4rem 1.75rem;
    border-radius: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(59,130,246,0.4);
    z-index: 5;
    animation: bounceBadge 3.5s ease-in-out infinite;
}

.exp-years {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-heading);
}

.exp-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    opacity: 0.9;
}

@keyframes bounceBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Floating Stats Card */
.about-stats-card {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 1.5rem 2rem;
    margin-top: 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.07);
    border: 1px solid #f1f5f9;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #3b82f6;
    line-height: 1;
    font-family: var(--font-heading);
}

.about-stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

.about-stat-divider {
    width: 1px;
    height: 50px;
    background: #e2e8f0;
}

/* --- Content Block --- */
.about-content-block {
    position: relative;
    z-index: 2;
}

.about-desc-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

/* Feature Rows */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
}

.about-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-row:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(59,130,246,0.1);
    border-color: #dbeafe;
}

.about-feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.about-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-feature-text strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.about-feature-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Row */
.about-cta-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-call-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.about-call-link:hover { transform: translateY(-3px); }

.about-call-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-call-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-call-number {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
}

/* ========================================
   TESTIMONIALS SECTION — PREMIUM REDESIGN
   ======================================== */
.reviews-section {
    background: #f0f4ff;
    overflow: hidden;
}

/* --- Header --- */
.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #3b82f6;
    background: #eff6ff;
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

.reviews-heading {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 1rem;
}

.reviews-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --- Trust Stats Bar --- */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 5rem;
    background: white;
    border-radius: 2rem;
    padding: 2.5rem 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    text-align: center;
    padding: 1rem;
}

.trust-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.trust-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

.trust-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 60px;
    background: #e2e8f0;
}

/* --- Layout: featured + grid --- */
.reviews-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .reviews-layout {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
    }
}

/* --- Featured Card --- */
.review-featured-card {
    background: #1e3a5f;
    border-radius: 2rem;
    padding: 3.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    box-shadow: 0 40px 80px rgba(30, 58, 95, 0.25);
}

.review-featured-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
}

.review-quote-icon {
    font-size: 8rem;
    color: rgba(255,255,255,0.08);
    font-family: 'Georgia', serif;
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    left: 3rem;
    pointer-events: none;
}

.review-featured-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 2;
    flex: 1;
    margin-bottom: 2.5rem;
    padding-top: 2rem;
}

.review-featured-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3b82f6;
    flex-shrink: 0;
}

.review-meta .review-name {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    color: white;
}

.review-meta .review-role {
    font-size: 0.8rem;
    color: #93c5fd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.review-stars-gold {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

/* --- Smaller Cards Grid --- */
.review-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    border: 1px solid #e8efff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.1);
    border-color: #bfdbfe;
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-avatar-sm {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dbeafe;
    flex-shrink: 0;
}

.review-name-sm {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.review-role-sm {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

.review-stars-sm {
    margin-left: auto;
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    flex-shrink: 0;
}

.review-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* Services Section Redesign */
.services-section {
    padding: var(--spacing-2xl) 0;
    background-color: #f8fafc;
}

.section-title-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-title-main {
    font-size: clamp(2.25rem, 6vw, 3.25rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
}

@media (min-width: 768px) {
    .services-modern-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-modern-grid { grid-template-columns: repeat(3, 1fr); }
}

.modern-service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.modern-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.12);
    border-color: #3b82f6;
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.1);
    transition: all 0.5s ease;
}

.service-icon-wrapper {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #3b82f6;
    font-weight: 700;
    text-decoration: none;
}

/* CTA Banner */
.cta-banner {
    padding: var(--spacing-2xl) 0;
    position: relative;
    background-color: #1e293b;
    color: white;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.cta-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: white;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
}

/* CTA Modern Redesign */
.cta-modern-section {
    position: relative;
    background-image: url('../assets/images/h-about-bg.jpg'); /* Reusing high-quality asset */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.cta-modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.cta-modern-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .cta-modern-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.cta-modern-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-modern-desc {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #3b82f6;
}

.cta-checklist li span {
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Action Card */
.cta-action-card {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.card-label {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    display: block;
}

.cta-main-btn {
    width: 100%;
    padding: 1.25rem;
}

.cta-divider {
    margin: 2rem 0;
    position: relative;
}

.cta-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.cta-divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 800;
}

.cta-phone-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.phone-ico { font-size: 2rem; margin-bottom: 0.5rem; }
.phone-num { font-size: 1.5rem; font-weight: 800; color: #3b82f6; }

/* Team Section */
.team-section {
    padding: var(--spacing-2xl) 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
    background: white;
    border-radius: 1.75rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.12);
    border-color: #dbeafe;
}

/* Image Wrapper */
.team-img-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Image zooms on card hover */
.team-card:hover .team-img {
    transform: scale(1.08);
}

/* Overlay — slides up from bottom */
.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(
        to top,
        rgba(10, 20, 50, 0.92) 0%,
        rgba(15, 30, 70, 0.7) 55%,
        transparent 100%
    );
    padding: 2.5rem 1.25rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.team-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
}

.team-overlay-role {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

/* Social Icons — staggered entrance */
.team-socials {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.team-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* Each icon animates in with its own delay set via inline style --delay */
    opacity: 0;
    transform: translateY(12px) scale(0.8);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        opacity 0.3s ease var(--delay, 0s);
}

/* When overlay is visible (card hover), animate icons in */
.team-card:hover .team-social-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    /* Staggered via var(--delay) on each element */
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) var(--delay, 0s),
        opacity 0.25s ease var(--delay, 0s);
}

.team-social-btn:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-3px) scale(1.1) !important;
}

/* Info */
.team-info {
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 0.8rem;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* FAQ Section Redesign */
.faq-modern-section {
    padding: var(--spacing-2xl) 0;
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 600px),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.05), transparent 600px),
        radial-gradient(rgba(203, 213, 225, 0.3) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 100% 100%, 40px 40px;
    position: relative;
    overflow: hidden;
}

.faq-modern-section::before {
    content: 'FAQ';
    position: absolute;
    top: -2rem;
    left: -2rem;
    font-size: clamp(10rem, 20vw, 20rem);
    font-weight: 900;
    color: rgba(59, 130, 246, 0.02);
    pointer-events: none;
    z-index: 0;
    font-family: var(--font-heading);
}

.faq-modern-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}


.faq-modern-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .faq-modern-grid { grid-template-columns: 0.8fr 1.2fr; }
}

.image-frame {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.image-frame img {
    width: 100%;
    object-fit: cover;
}

.seal-badge {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    background: white;
    padding: 1rem 1.75rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.faq-modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-modern-item {
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.1rem 0;
    transition: all 0.3s ease;
}

.faq-q-icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.faq-plus {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-plus::before, .faq-plus::after {
    content: '';
    position: absolute;
    background: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-plus::before {
    width: 2px;
    height: 100%;
    left: 11px;
}

.faq-plus::after {
    width: 100%;
    height: 2px;
    top: 11px;
}

.faq-modern-item.active .faq-plus::before { transform: rotate(90deg); opacity: 0; }
.faq-modern-item.active .faq-plus::after { transform: rotate(180deg); }
.faq-modern-item.active .faq-q-text { color: #3b82f6; }

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-modern-item.active .faq-body {
    max-height: 300px;
    padding-bottom: 1.5rem;
    padding-left: 4.5rem;
}

.faq-footer {
    margin-top: 3.5rem;
    padding: 1.75rem 2.5rem;
    background: #f8fafc;
    border-radius: 1.5rem;
    display: inline-block;
}

.link-blue {
    color: #3b82f6;
    font-weight: 700;
    text-decoration: none;
}

/* ========================================
   GET FREE QUOTE — POPUP MODAL
   ======================================== */

/* Overlay */
.quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 40, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.quote-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Card */
.quote-modal-card {
    background: #ffffff;
    border-radius: 2rem;
    width: 100%;
    max-width: 520px;
    max-height: 92dvh;
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.35s ease;
    opacity: 0;
    position: relative;
}

.quote-modal-overlay.open .quote-modal-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Gradient Header */
.quote-modal-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    padding: 2.25rem 2.5rem 2rem;
    border-radius: 2rem 2rem 0 0;
    position: relative;
    overflow: hidden;
}

.quote-modal-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}

.quote-modal-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.quote-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 99px;
    padding: 0.3rem 0.875rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.quote-modal-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.quote-modal-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

/* Close button */
.quote-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.quote-modal-close:hover {
    background: rgba(255,255,255,0.28);
    transform: rotate(90deg);
}

/* Form Body */
.quote-modal-body {
    padding: 2rem 2.5rem 2.5rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .quote-form-row { grid-template-columns: 1fr; }
}

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.quote-field label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: #0f172a;
    background: #f8fafc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    outline: none;
    appearance: none;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.quote-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.quote-field textarea {
    resize: vertical;
    min-height: 90px;
}

/* Submit Button */
.quote-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59,130,246,0.35);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.quote-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.3s ease;
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59,130,246,0.45);
}

.quote-submit-btn:hover::before {
    background: rgba(255,255,255,0.08);
}

.quote-submit-btn:active {
    transform: translateY(0);
}

/* Privacy note */
.quote-privacy {
    text-align: center;
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Success state */
.quote-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    text-align: center;
    gap: 1rem;
}

.quote-success.show {
    display: flex;
}

.quote-success-icon {
    width: 72px;
    height: 72px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.quote-success h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.quote-success p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    max-width: 300px;
}

.quote-success-btn {
    margin-top: 0.5rem;
    padding: 0.75rem 2rem;
    background: #0f172a;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

.quote-success-btn:hover { background: #1e293b; }

