/*
 * Mersin Havalandırma Sistemleri - Premium Corporate Design System
 * 100% Hand-crafted elite corporate layout designed for industrial engineering trust.
 * Employs Outfit for luxury corporate titles and Plus Jakarta Sans for pristine body reading.
 * Replaces all cyber/sci-fi elements with top-tier corporate agency aesthetics.
 */


:root {
    /* Refined Luxury Corporate Palette */
    --color-primary: #0f172a;           /* Deep Luxury Midnight Navy */
    --color-primary-dark: #020617;      /* Deepest Space Navy */
    --color-brand: #ea580c;             /* High-End Industrial Fire Orange */
    --color-brand-hover: #c2410c;       /* Polished Amber Bronze */
    --color-brand-light: #fff7ed;       /* Warm background soft amber tint */
    --color-accent-blue: #1e40af;       /* Corporate Trust Blue */
    --color-accent-blue-light: #eff6ff; /* Soft sky blue backdrop */
    --color-success: #25d366;           /* Premium WhatsApp Green */
    --color-success-hover: #20ba5a;     /* Darker WhatsApp green */
    
    /* Neutral Architectural Shades */
    --color-bg-light: #ffffff;
    --color-bg-alt: #f8fafc;            /* Pristine architectural slate grey */
    --color-bg-slate: #f1f5f9;          /* Soft component backdrop */
    --color-text: #1e293b;              /* Premium text Slate 800 */
    --color-text-light: #475569;        /* Body text Slate 600 */
    --color-text-muted: #64748b;        /* Subtext Slate 500 */
    --color-text-white-muted: #cbd5e1;  /* High contrast light text */
    
    /* Fine Structural Lines */
    --color-border: #e2e8f0;            /* Ultra-fine Slate 200 gridline */
    --color-border-light: #f1f5f9;      /* Light separator border */
    --color-border-dark: rgba(255, 255, 255, 0.08);
    
    /* Elegant Typography Weights */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Micro-Transitions */
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    
    /* Custom High-Fidelity Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 30px -10px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 40px -12px rgba(15, 23, 42, 0.08);
    --shadow-accent: 0 8px 24px -6px rgba(234, 88, 12, 0.15);
}

/* Global Reset & Core Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Premium Architectural Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.25rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 800; }
h3 { font-size: 1.75rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Layout Containers & Sectioning */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--color-border-light);
}

.section-alt {
    background-color: var(--color-bg-alt);
}

/* Corporate Section Header Alignment */
.section-header {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand);
    background-color: var(--color-brand-light);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 14px;
    max-width: 800px;
    color: var(--color-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 650px;
    line-height: 1.5;
}

/* Premium Micro-Interactive Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-brand);
    color: #ffffff;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background-color: var(--color-brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -4px rgba(234, 88, 12, 0.25);
}

.btn-secondary {
    background-color: var(--color-accent-blue);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1d3557;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -4px rgba(30, 64, 175, 0.25);
}

.btn-wa {
    background-color: var(--color-success);
    color: #ffffff;
}

.btn-wa:hover {
    background-color: var(--color-success-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -4px rgba(37, 211, 102, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-bg-alt);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Floating Widgets & Action Panel */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    color: var(--color-brand);
    border-color: var(--color-brand);
    transform: translateY(-3px);
}

.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}

.floating-wa {
    background-color: var(--color-success);
}

.floating-wa:hover {
    transform: scale(1.08) translateY(-2px);
    background-color: var(--color-success-hover);
}

.floating-phone {
    background-color: var(--color-accent-blue);
}

.floating-phone:hover {
    transform: scale(1.08) translateY(-2px);
    background-color: #1d3557;
}

.floating-tooltip {
    position: absolute;
    right: 66px;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* 1. Header & Fixed Glassmorphic Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Polished Corporate Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.logo-icon svg.fan {
    width: 22px;
    height: 22px;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    background-color: var(--color-brand);
}

.logo:hover .logo-icon svg.fan {
    transform: rotate(90deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 0.95;
    color: var(--color-primary);
    letter-spacing: -0.03em;
}

.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brand);
    margin-top: 2px;
}

/* Elegant Navbar Link Group */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-text-light);
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-brand);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-status-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-status-cta .btn {
    white-space: nowrap;
}

.header-phone-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 14px;
    border-right: 1px solid var(--color-border);
}

.header-phone-box svg {
    width: 16px;
    height: 16px;
    color: var(--color-brand);
}

.header-phone-box span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: block;
    line-height: 1.1;
    white-space: nowrap;
}

.header-phone-box a {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

.header-phone-box a:hover {
    color: var(--color-brand);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
    z-index: 1010;
    position: relative;
}

.mobile-nav-cta {
    display: none;
}

/* 2. Hero Section (Elite Architectural Presentation) */
.hero {
    min-height: 78vh;
    padding-top: 140px;
    padding-bottom: 70px;
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Luxury Warm Orange & Blue Lighting Background Gradient */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 85% 20%, rgba(234, 88, 12, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 45%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-tagline::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-brand);
}

.hero-title {
    color: #ffffff;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--color-brand);
}

.hero-desc {
    color: var(--color-text-white-muted);
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 580px;
}

.hero-trust-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #f1f5f9;
}

.hero-bullet-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-brand);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Elegant Hero Framed Image Container */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-card {
    border-radius: 12px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-img-box {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Corporate Badge */
.hero-floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 260px;
    border: 1px solid var(--color-border-light);
}

.hero-floating-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-brand-light);
    color: var(--color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-floating-badge-icon svg {
    width: 16px;
    height: 16px;
}

.hero-floating-badge-text h6 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hero-floating-badge-text p {
    font-size: 0.68rem;
    color: var(--color-text-muted);
}

/* 3. Corporate Statistics Bar */
.stats-bar {
    background-color: #ffffff;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    padding: 0;
}

.stats-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.stats-item:last-child {
    border-right: none;
}

.stats-item:hover {
    background-color: var(--color-bg-alt);
}

.stats-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-accent-blue-light);
    color: var(--color-accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.stats-icon svg {
    width: 18px;
    height: 18px;
}

.stats-item.accent-orange .stats-icon {
    background-color: var(--color-brand-light);
    color: var(--color-brand);
}

.stats-item h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 2px;
}

.stats-item p {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* 4. Corporate About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}

/* Staggered Modern Overlapping Images */
.about-image-showcase {
    position: relative;
    padding-bottom: 45px;
}

.about-img-main {
    width: 82%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 5px solid #ffffff;
}

.about-quality-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-quality-badge span.percent {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-brand);
}

.about-quality-badge span.txt {
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.25;
}

.about-content p.lead {
    font-size: 1.05rem;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 16px;
}

.about-content p.body {
    color: var(--color-text-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

/* Refined Feature Check Cards */
.about-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-feature-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: var(--transition-smooth);
}

.about-feature-card:hover {
    border-color: var(--color-accent-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.about-feature-card-icon {
    color: var(--color-accent-blue);
    margin-top: 1px;
    flex-shrink: 0;
}

.about-feature-card.accent-orange .about-feature-card-icon {
    color: var(--color-brand);
}

.about-feature-card-text h5 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.about-feature-card-text p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* 5. Professional Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 36px 28px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    background-color: var(--color-brand);
}

.service-card-top {
    margin-bottom: 20px;
}

.service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background-color: var(--color-accent-blue-light);
    color: var(--color-accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.service-icon-box svg {
    width: 26px;
    height: 26px;
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon-box {
    background-color: var(--color-brand-light);
    color: var(--color-brand);
}

.service-card:hover .service-icon-box svg {
    transform: scale(1.05);
}

.service-card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    display: block;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.service-card-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Service Technical Specs (Corporate Grid Layout) */
.service-specs-box {
    background-color: var(--color-bg-alt);
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 24px;
}

.service-spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    padding: 5px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.service-spec-row:last-child {
    border-bottom: none;
}

.service-spec-row:first-child {
    padding-top: 0;
}

.service-spec-label {
    font-weight: 600;
    color: var(--color-text-muted);
}

.service-spec-value {
    font-weight: 700;
    color: var(--color-primary);
}

.service-card-btn {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card-btn svg {
    width: 14px;
    height: 14px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-btn {
    color: var(--color-brand);
}

.service-card:hover .service-card-btn svg {
    transform: translateX(4px);
}

/* 6. Corporate Feasibility Calculator */
.calculator-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
}

/* Calculator Tab Controls */
.calc-tabs {
    grid-column: 1 / span 2;
    display: flex;
    background-color: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border-light);
    padding: 8px;
    gap: 8px;
}

.calc-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.calc-tab-btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

.calc-tab-btn:hover {
    color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.5);
}

.calc-tab-btn.active {
    background-color: #ffffff;
    color: var(--color-brand);
    box-shadow: var(--shadow-sm);
}

.calc-tab-btn.active svg {
    color: var(--color-brand);
}

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

.calc-form-group-wrapper {
    display: none;
    opacity: 0;
}

.calc-form-group-wrapper.active {
    display: block;
    animation: calcFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.calc-results-wrapper {
    display: none;
    opacity: 0;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.calc-results-wrapper.active {
    display: flex;
    animation: calcFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.calc-sheet-form {
    padding: 48px;
    background-color: #ffffff;
    border-right: 1px solid var(--color-border-light);
}

.calc-sheet-header {
    margin-bottom: 28px;
}

.calc-sheet-header h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.calc-sheet-header p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.form-group-full {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-group-full label, .form-field-mono label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.calc-form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.form-field-mono {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Polished Form Inputs */
.input-blueprint {
    background-color: var(--color-bg-alt);
    border: 1.5px solid var(--color-border);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    outline: none;
    transition: var(--transition-smooth);
}

textarea.input-blueprint {
    resize: vertical;
}

.input-blueprint:focus {
    border-color: var(--color-brand);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.08);
}

select.input-blueprint {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
}

/* Calculator Result Panel */
.calc-sheet-results {
    padding: 48px;
    background-color: var(--color-bg-alt);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calc-specs-table {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.calc-specs-table-header {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 12px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
}

.calc-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--color-border-light);
}

.calc-table-row:last-child {
    border-bottom: none;
}

.calc-table-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.calc-table-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary);
}

.calc-table-value.highlight {
    color: var(--color-brand);
    font-size: 0.95rem;
}

.calc-output-block {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    margin-bottom: 20px;
}

.calc-output-block h5 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.calc-grand-total {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-brand);
    line-height: 1;
}

.calc-grand-total span {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.calc-disclaimer {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    text-align: center;
}

/* 7. Corporate Projects Portfolio Showcase */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.portfolio-card-img-box {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background-color: var(--color-primary);
}

.portfolio-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-card-img-box img {
    transform: scale(1.04);
    opacity: 0.9;
}

.portfolio-card-body {
    padding: 20px;
}

.portfolio-card-meta {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    display: block;
}

.portfolio-card h4 {
    font-size: 1.05rem;
    color: var(--color-primary);
    line-height: 1.35;
    margin-bottom: 10px;
}

.portfolio-card-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.portfolio-card:hover .portfolio-card-link {
    color: var(--color-brand);
}

/* 8. Regional SEO Operations Matrix */
.regions-search-wrapper {
    max-width: 480px;
    margin: -15px auto 44px;
    position: relative;
    z-index: 5;
}

.regions-search-input {
    width: 100%;
    background-color: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: 100px;
    padding: 12px 24px 12px 48px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    outline: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.regions-search-input:focus {
    border-color: var(--color-accent-blue);
    box-shadow: 0 8px 20px -8px rgba(30, 64, 175, 0.15);
}

.regions-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
}

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

.region-matrix-card {
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    padding: 24px 20px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.region-matrix-card:hover {
    border-color: var(--color-brand);
    background-color: var(--color-brand-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.region-matrix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.region-matrix-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.region-matrix-header span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    background-color: var(--color-bg-slate);
    padding: 3px 8px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.region-matrix-card:hover .region-matrix-header span {
    background-color: var(--color-brand);
    color: #ffffff;
}

.region-matrix-card p {
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--color-text-light);
    margin-bottom: 14px;
}

.region-matrix-link {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.region-matrix-card:hover .region-matrix-link {
    color: var(--color-brand);
}

.region-no-results {
    grid-column: span 4;
    text-align: center;
    padding: 40px 0;
    display: none;
}

.region-no-results h5 {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

/* 9. Premium Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.testimonial-quote-box {
    background-color: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: var(--transition-smooth);
}

.testimonial-quote-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial-top-row {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    color: var(--color-brand);
}

.testimonial-rating svg {
    width: 14px;
    height: 14px;
}

.testimonial-quote-icon {
    color: var(--color-bg-slate);
    opacity: 0.8;
}

.testimonial-text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-user {
    display: flex;
    gap: 10px;
    align-items: center;
    border-top: 1px solid var(--color-border-light);
    padding-top: 16px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-accent-blue-light);
    color: var(--color-accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.testimonial-details h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-details p {
    font-size: 0.68rem;
    color: var(--color-text-muted);
}

/* 10. Contact Inquiry Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-technical-badge {
    background-color: var(--color-accent-blue-light);
    border-radius: 10px;
    border: 1px dashed rgba(30, 64, 175, 0.2);
    padding: 28px;
}

.contact-technical-badge h4 {
    font-size: 1.05rem;
    color: var(--color-accent-blue);
    margin-bottom: 6px;
}

.contact-technical-badge p {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.45;
}

.contact-row-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-row-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-row-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-blue);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-row-item:hover .contact-row-icon {
    background-color: var(--color-brand-light);
    border-color: var(--color-brand);
    color: var(--color-brand);
}

.contact-row-icon svg {
    width: 18px;
    height: 18px;
}

.contact-row-text h5 {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-row-text a, .contact-row-text p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}

.contact-row-text a:hover {
    color: var(--color-brand);
}

/* Polished Contact Form Panel */
.contact-form-panel {
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 44px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.contact-form-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.contact-form-panel p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-2col .full-width {
    grid-column: span 2;
}

.form-group-mono {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-mono label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.contact-btn-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 14px;
    margin-top: 14px;
}

/* 11. High-Contrast Corporate Footer */
footer {
    background-color: var(--color-primary-dark);
    color: var(--color-text-white-muted);
    padding: 70px 0 28px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
    gap: 36px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-about p {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-top: 16px;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--color-brand);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--color-text-white-muted);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 2px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-info-item {
    display: flex;
    gap: 10px;
    font-size: 0.82rem;
    align-items: flex-start;
}

.footer-info-item svg {
    color: var(--color-brand);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-info-item a {
    color: #ffffff;
}

.footer-info-item a:hover {
    color: var(--color-brand);
}

.footer-divider {
    border-top: 1px solid var(--color-border-dark);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-links a {
    margin-left: 16px;
    color: var(--color-text-white-muted);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Glassmorphic Backdrop overlay when mobile navigation drawer is active */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Elite Responsive Framework Adaptations */
/* 1. Medium screen optimization to avoid desktop nav squeezing */
@media (min-width: 1201px) and (max-width: 1320px) {
    .header-container {
        padding: 12px 16px;
    }
    .nav-menu {
        gap: 16px;
    }
    .nav-link {
        font-size: 0.75rem;
    }
    .header-status-cta {
        gap: 10px;
    }
    .header-phone-box {
        padding-right: 10px;
        gap: 6px;
    }
    .header-phone-box a {
        font-size: 0.8rem;
    }
}

/* 2. Mobile navigation drawer activation & layout adjustments (1200px and below) */
@media (max-width: 1200px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
    .hero-grid, .about-grid, .calculator-container, .contact-grid { gap: 36px; }
    .services-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .regions-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    /* Sliding Mobile Navigation Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -8px 0 30px rgba(15, 23, 42, 0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 60px 30px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1005;
        visibility: hidden;
    }
    
    .nav-menu.open {
        right: 0;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 8px 0;
        width: auto;
        display: inline-block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-phone-box, .header-status-cta .btn {
        display: none;
    }
    
    .mobile-nav-cta {
        display: block;
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    section { padding: 70px 0; }
    .hero { padding-top: 110px; min-height: auto; }
    .hero-grid, .about-grid, .calculator-container, .contact-grid { grid-template-columns: 1fr; }
    .hero-content { text-align: center; align-items: center; }
    .hero-tagline, .hero-bullet-item { justify-content: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-image-wrapper { margin-bottom: 40px; }
    .hero-floating-badge { left: 50%; transform: translateX(-50%); bottom: -15px; }
    .stats-bar { margin-top: 0; padding-top: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-item { border-bottom: 1px solid var(--color-border-light); }
    .stats-item:nth-child(2n) { border-right: none; }
    .stats-item:nth-child(3), .stats-item:nth-child(4) { border-bottom: none; }
    .about-image-showcase { max-width: 480px; margin: 0 auto; margin-bottom: 40px; }
    .calc-sheet-form { border-right: none; border-bottom: 1px solid var(--color-border-light); }
    .calc-sheet-form, .calc-sheet-results, .contact-form-panel { padding: 36px 20px; }
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
    .regions-search-wrapper { margin-bottom: 28px; }
    .region-no-results { grid-column: span 2; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.65rem; }
    h3 { font-size: 1.35rem; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.65rem; }
    .about-content h3 { font-size: 1.35rem; }
    .calc-sheet-header h3, .contact-form-panel h3 { font-size: 1.25rem; }
    .stats-grid, .services-grid, .portfolio-grid, .regions-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .stats-item { border-right: none !important; border-bottom: 1px solid var(--color-border-light) !important; }
    .stats-item:last-child { border-bottom: none !important; }
    .about-features-list { grid-template-columns: 1fr; }
    .service-card { padding: 24px 20px; }
    .calc-form-row, .form-2col { grid-template-columns: 1fr; gap: 14px; }
    .form-2col .full-width { grid-column: span 1; }
    .testimonial-quote-box { padding: 24px 20px; }
    .contact-form-panel { padding: 24px 20px; }
    .contact-btn-row { grid-template-columns: 1fr; }
    .region-no-results { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-divider { flex-direction: column; gap: 14px; text-align: center; }
    .footer-bottom-links a { margin: 0 8px; }
    .floating-widgets { bottom: 20px; right: 20px; gap: 8px; }
    .floating-btn { width: 44px; height: 44px; }
    .scroll-top-btn { bottom: 20px; left: 20px; width: 38px; height: 38px; }
    .about-quality-badge { left: 10px; top: 10px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.75rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .calc-grand-total { font-size: 2.1rem; }
}

@media (max-width: 400px) {
    .logo-text { font-size: 1.15rem; }
    .logo-icon { width: 34px; height: 34px; }
    .logo-icon svg.fan { width: 18px; height: 18px; }
}

/* --- Added Focus Visible, WhatsApp Pulse, Reduced Motion & Print Styles --- */

/* Focus Visible for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-brand);
    outline-offset: 4px;
}

/* WhatsApp Pulse Animation */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 8px 24px rgba(0,0,0,0.1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 8px 24px rgba(0,0,0,0.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(0,0,0,0.1);
    }
}
.floating-wa {
    animation: wa-pulse 2.2s infinite;
}

/* Prefers Reduced Motion Query */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Clean Media Print Styles */
@media print {
    header,
    footer,
    .scroll-top-btn,
    .floating-widgets,
    .hero-actions,
    .calc-tabs,
    .calc-share-btn,
    #contact,
    .nav-backdrop {
        display: none !important;
    }
    body {
        background: #ffffff;
        color: #000000;
        font-size: 11pt;
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: #000000 !important;
    }
    .portfolio-grid, .services-grid {
        display: block !important;
    }
    .portfolio-card, .service-card {
        page-break-inside: avoid;
        margin-bottom: 20px !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
    }
}
