/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #7C3AED;
    
    /* Accent Colors */
    --coral: #E07B54;
    --coral-light: #E8967A;
    --orange: #F5A340;
    --teal: #2F9E8F;
    --teal-light: #3DB8A6;
    --green: #4CAD8F;
    --navy: #1E3A5F;
    --navy-dark: #152A46;
    
    /* Base Colors */
    --background: #F8FAFC;
    --foreground: #1E293B;
    --card: #FFFFFF;
    --card-foreground: #1E293B;
    --muted: #F1F5F9;
    --muted-foreground: #64748B;
    --border: #E2E8F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B5CF6, #A855F7);
    --gradient-coral: linear-gradient(135deg, #E07B54, #F5A340);
    --gradient-teal: linear-gradient(135deg, #2F9E8F, #4CAD8F);
    --gradient-navy: linear-gradient(135deg, #1E3A5F, #2D4A6F);
    --gradient-hero: linear-gradient(135deg, #152A46 0%, #3B1F6B 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--foreground);
    background: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ===== Utility Classes ===== */
.z-index-10 { z-index: 10; }

.text-coral { color: var(--coral) !important; }
.text-teal { color: var(--teal) !important; }
.text-primary-custom { color: var(--primary) !important; }

.bg-teal-subtle { background-color: rgba(47, 158, 143, 0.1) !important; }

.gradient-primary { background: var(--gradient-primary); }
.gradient-coral { background: var(--gradient-coral); }
.gradient-teal { background: var(--gradient-teal); }
.gradient-navy { background: var(--gradient-navy); }
.gradient-hero { background: var(--gradient-hero); }

.gradient-text-coral {
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Navbar ===== */
.navbar {
    background: rgba(21, 42, 70, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(21, 42, 70, 0.95);
}
/*
.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}*/

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);

    display: flex;
    align-items: center;
    /*background-color: white;*/
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

.navbar .dropdown-menu {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem 0;
}

.navbar .dropdown-item {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
}

/* ===== Buttons ===== */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: var(--radius);
    padding: 0.625rem 1.25rem;
    transition: all 0.3s ease;
}

.btn-coral {
    background: var(--gradient-coral);
    border: none;
    color: white;
}

.btn-coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(224, 123, 84, 0.3);
    color: white;
}

.btn-teal {
    background: var(--gradient-teal);
    border: none;
    color: white;
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(47, 158, 143, 0.3);
    color: white;
}

.btn-hero {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(8px);
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-hero-solid {
    background: white;
    color: var(--navy-dark);
    border: none;
}

.btn-hero-solid:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(21, 42, 70, 0.5), transparent, rgba(21, 42, 70, 1));
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.hero-blob.blob-1 {
    width: 256px;
    height: 256px;
    background: rgba(139, 92, 246, 0.1);
    top: 25%;
    left: 25%;
}

.hero-blob.blob-2 {
    width: 384px;
    height: 384px;
    background: rgba(224, 123, 84, 0.1);
    bottom: 25%;
    right: 25%;
    animation-delay: -3s;
}

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

.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Stats */
.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* ===== Trusted By Section ===== */
.trust-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--foreground);
}

/* ===== Sections ===== */
.section-padding {
    padding: 5rem 0;
}

@media (min-width: 992px) {
    .section-padding {
        padding: 7rem 0;
    }
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-badge-light {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Feature Cards ===== */
.feature-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ===== Steps ===== */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.25rem;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--card);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* ===== Solution Cards ===== */
.solution-card {
    display: block;
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(139, 92, 246, 0.3);
    color: inherit;
}

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.solution-description {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    transition: gap 0.3s ease;
}

.solution-card:hover .solution-link {
    gap: 0.75rem;
}

/* ===== Metrics Section ===== */
.rotating-circle {
    position: absolute;
    top: -50%;
    right: -25%;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: rotate 50s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.metric-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.metric-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.tag-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-dark);
    padding: 4rem 0 2rem;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--coral);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
}

/* ===== Page Hero Sections ===== */
.page-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--navy-dark);
    overflow: hidden;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(21, 42, 70, 1), rgba(21, 42, 70, 0.9), transparent);
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}

.page-badge.primary { background: rgba(139, 92, 246, 0.2); color: var(--primary-light); }
.page-badge.teal { background: rgba(47, 158, 143, 0.2); color: var(--teal-light); }
.page-badge.coral { background: rgba(224, 123, 84, 0.2); color: var(--coral-light); }

.page-hero-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-hero-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ===== Workflow Steps ===== */
.workflow-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    height: 100%;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.workflow-step {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.workflow-step.bg-primary-custom { background: var(--primary); }
.workflow-step.bg-coral { background: var(--coral); }
.workflow-step.bg-teal { background: var(--teal); }
.workflow-step.bg-navy { background: var(--navy); }

.workflow-connector {
    display: none;
}

@media (min-width: 992px) {
    .workflow-connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: var(--border);
    }
}

/* ===== Capability Items ===== */
.capability-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: var(--muted);
    transition: background 0.3s ease;
}

.capability-item:hover {
    background: rgba(139, 92, 246, 0.1);
}

.capability-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.capability-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.capability-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ===== Reporting Box ===== */
.reporting-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(224, 123, 84, 0.1));
    border-radius: var(--radius-xl);
    padding: 2rem;
}

@media (min-width: 992px) {
    .reporting-box {
        padding: 3rem;
    }
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list i {
    color: var(--teal);
    flex-shrink: 0;
}

/* ===== Stats Grid ===== */
.stat-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 0.75rem;
}

.stat-card-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.stat-card-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Benefit Cards ===== */
.benefit-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(47, 158, 143, 0.3);
}

.benefit-card.coral:hover {
    border-color: rgba(224, 123, 84, 0.3);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ===== CTA Sections ===== */
.cta-section {
    padding: 5rem 0;
}

@media (min-width: 992px) {
    .cta-section {
        padding: 7rem 0;
    }
}

/* ===== Campaign Report Card ===== */
.campaign-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 992px) {
    .campaign-card {
        padding: 2rem;
    }
}

.sample-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(224, 123, 84, 0.1);
    color: var(--coral);
    font-size: 0.875rem;
    font-weight: 500;
}

.metric-box {
    background: var(--muted);
    border-radius: var(--radius);
    padding: 1rem;
}

.metric-box-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.metric-box-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.metric-box-change {
    font-size: 0.75rem;
    color: var(--teal);
    margin-top: 0.25rem;
}

.progress-bar-custom {
    height: 8px;
    background: var(--muted);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-coral);
    border-radius: 4px;
    transition: width 1s ease;
}

/* ===== Insights Card ===== */
.insights-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.demographics-card {
    background: linear-gradient(135deg, rgba(224, 123, 84, 0.1), rgba(245, 163, 64, 0.1));
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

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

.age-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--coral);
}

.age-stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ===== Teal Feature Card ===== */
.feature-card-teal {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card-teal:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(47, 158, 143, 0.3);
}

.feature-card-teal .feature-icon {
    background: var(--gradient-teal);
}

/* ===== Coral Feature Card ===== */
.feature-card-coral {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card-coral:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(224, 123, 84, 0.3);
}

.feature-card-coral .feature-icon {
    background: var(--gradient-coral);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 991.98px) {
    .navbar .nav-link {
        padding: 0.75rem 0;
    }
    
    .navbar .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1.5rem;
        display: inline-flex;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(100, 116, 139, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 116, 139, 0.5);
}

/* ===== Team Cards ===== */
.team-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

/* New Team Card Design */
.team-card-new {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-lg);
}

.team-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

.team-card-new .team-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.team-card-new .team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-new:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 40%, transparent);
    pointer-events: none;
}

.team-name-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 3.5rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Team buttons container */
.team-buttons {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-card-new:hover .team-buttons {
    opacity: 1;
    transform: translateY(0);
}

.team-info-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-info-btn:hover {
    background: var(--primary-dark);
}

.team-info-btn svg {
    width: 20px;
    height: 20px;
}

.team-linkedin-btn {
    width: 40px;
    height: 40px;
    background: #0077B5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-linkedin-btn:hover {
    background: #006097;
    color: white;
}

.team-linkedin-btn svg {
    width: 20px;
    height: 20px;
}

/* Team info popover */
.team-info-popover {
    position: absolute;
    bottom: calc(100% - 20rem);
    right: 1rem;
    width: 280px;
    background: var(--card);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.team-info-popover.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team-info-popover h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.team-info-popover p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}


.team-position-wrapper {
    padding: 1rem 1.5rem;
    text-align: center;
    background: var(--card);
}

.team-position-text {
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

/* Legacy team card styles */
.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-linkedin {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-card:hover .team-linkedin {
    opacity: 1;
    transform: translateY(0);
}

.team-linkedin:hover {
    background: var(--gradient-teal);
    color: white;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.team-position {
    color: var(--coral);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ===== Accordion Styles ===== */
.accordion-button {
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 107, 53, 0.1);
    color: var(--coral);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--coral);
}

.accordion-button::after {
    filter: none;
}

/* ===== About & Pricing Page Styles ===== */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(21, 42, 70, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}







.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem; color: white; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links .nav-link { color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; font-weight: 500; padding: 0.5rem 1rem; text-decoration: none; transition: color 0.3s; border: none; background: none; cursor: pointer; }
.nav-links .nav-link:hover, .nav-links .nav-link.active { color: var(--coral); }

.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 0.25rem; }
.nav-dropdown .dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 200px; background: white; border-radius: 0.75rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); padding: 0.5rem 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: block; padding: 0.75rem 1rem; color: var(--foreground); text-decoration: none; font-size: 0.875rem; transition: all 0.3s; }
.dropdown-item:hover { background: rgba(139, 92, 246, 0.1); color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.btn-hero-outline { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: white; padding: 0.5rem 1rem; border-radius: 0.5rem; font-weight: 500; transition: all 0.3s; }
.btn-hero-outline:hover { background: rgba(255, 255, 255, 0.2); color: white; }

.mobile-menu-btn { background: none; border: none; color: white; padding: 0.5rem; cursor: pointer; }
.mobile-menu { display: none; padding: 1rem 0; }
.mobile-menu.active { display: block; }
.mobile-nav-link { display: block; padding: 0.75rem 0; color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 0.875rem; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--coral); }
.mobile-nav-label { display: block; padding: 0.75rem 0; color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }
.mobile-cta { padding-top: 1rem; }

.icon-sm { width: 16px; height: 16px; }

.hero-about, .hero-pricing { min-height: 70vh; padding-top: 120px; }
.hero-bg-elements { position: absolute; inset: 0; overflow: hidden; }
.bg-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.bg-blob-1 { width: 400px; height: 400px; background: rgba(139, 92, 246, 0.1); top: 20%; left: 20%; animation: float 10s ease-in-out infinite; }
.bg-blob-2 { width: 350px; height: 350px; background: rgba(224, 123, 84, 0.1); bottom: 20%; right: 20%; animation: float 12s ease-in-out infinite reverse; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 50px; background: rgba(255, 255, 255, 0.1); color: white; font-size: 0.875rem; font-weight: 500; backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.2); margin-bottom: 1.5rem; }

.section { padding: 5rem 0; }
.section-badge { display: inline-block; padding: 0.375rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(139, 92, 246, 0.1); color: var(--primary); margin-bottom: 1rem; }
.section-badge-center { display: inline-block; padding: 0.375rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(139, 92, 246, 0.1); color: var(--primary); margin-bottom: 1rem; }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.section-title-left { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; }
.section-desc { color: var(--muted-foreground); font-size: 1.125rem; max-width: 600px; margin: 0 auto 3rem; }
.section-header { margin-bottom: 3rem; }

.story-content p { color: var(--muted-foreground); margin-bottom: 1rem; line-height: 1.8; }

.stat-card-about { background: white; border-radius: 1rem; padding: 1.5rem; text-align: center; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.stat-card-about .stat-icon { width: 48px; height: 48px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: white; margin: 0 auto 0.75rem; }
.stat-card-about .stat-value { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.stat-card-about .stat-label { font-size: 0.875rem; color: var(--muted-foreground); }

.team-card { background: white; border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border: 1px solid var(--border); transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: rgba(139, 92, 246, 0.3); }
.team-image { position: relative; height: 250px; overflow: hidden; }
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-image img { transform: scale(1.05); }
.team-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, white, transparent); }
.team-info { padding: 1.5rem; margin-top: -3rem; position: relative; }
.team-name { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem; }
.team-position { color: var(--muted-foreground); margin-bottom: 1rem; }
.team-linkedin { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.3s; }
.team-linkedin:hover { color: var(--primary-dark); }

.value-card { background: white; border-radius: 1rem; padding: 1.5rem; text-align: center; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border: 1px solid var(--border); height: 100%; transition: all 0.3s; }
.value-card:hover { border-color: rgba(139, 92, 246, 0.3); }
.value-icon { width: 64px; height: 64px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; color: white; margin: 0 auto 1rem; }
.value-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.value-desc { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; margin: 0; }

.cta-section { padding: 5rem 0; }
.cta-title { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.cta-desc { color: rgba(255, 255, 255, 0.8); font-size: 1.125rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-white { background: white; color: var(--navy-dark); border: none; }
.btn-white:hover { background: rgba(255, 255, 255, 0.9); color: var(--navy-dark); transform: translateY(-2px); }

/* Pricing Page Specific */
.plan-card { background: white; border-radius: 1rem; padding: 2rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border: 2px solid var(--border); height: 100%; transition: all 0.3s; position: relative; }
.plan-card.plan-popular { border-color: var(--primary); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 1rem; border-radius: 50px; background: var(--primary); color: white; font-size: 0.875rem; font-weight: 500; }
.plan-icon { width: 56px; height: 56px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; color: white; margin-bottom: 1rem; }
.plan-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.plan-desc { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; }

.pricing-table-wrapper { background: white; border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td { padding: 1rem; border-bottom: 1px solid var(--border); }
.pricing-table thead { background: var(--muted); }
.pricing-table th { font-weight: 600; }

.volume-card { background: white; border-radius: 0.75rem; padding: 1.5rem; text-align: center; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); border: 1px solid var(--border); transition: all 0.3s; }
.volume-card:hover { border-color: rgba(139, 92, 246, 0.3); }
.volume-range { font-weight: 600; margin-bottom: 0.5rem; }
.volume-discount { font-weight: 500; }

.calculator-card { background: white; border-radius: 1rem; padding: 2rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.calc-section { margin-bottom: 1.5rem; }
.calc-label { font-weight: 500; margin-bottom: 0.75rem; display: block; }
.calc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.calc-value { font-size: 0.875rem; color: var(--muted-foreground); }
.calc-slider-wrapper { display: flex; align-items: center; gap: 1rem; }
.calc-slider { flex: 1; height: 8px; border-radius: 4px; background: var(--muted); appearance: none; cursor: pointer; }
.calc-slider::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--primary); cursor: pointer; }
.calc-btn { width: 40px; height: 40px; border-radius: 0.5rem; border: 1px solid var(--border); background: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s; }
.calc-btn:hover { background: var(--muted); }
.plan-toggle { display: flex; gap: 1rem; }
.plan-toggle-btn { flex: 1; padding: 0.75rem; border-radius: 0.5rem; border: 2px solid var(--border); background: white; cursor: pointer; font-weight: 500; transition: all 0.3s; }
.plan-toggle-btn.active { border-color: var(--primary); background: rgba(139, 92, 246, 0.1); color: var(--primary); }
.calc-result { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: 1.5rem; }
.calc-result-label { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.25rem; }
.calc-result-value { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 700; }
.calc-result-icon { width: 64px; height: 64px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; color: white; }
.calc-note { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 1rem; }

.accordion-item { background: white; border: 1px solid var(--border) !important; border-radius: 0.75rem !important; margin-bottom: 1rem; overflow: hidden; }
.accordion-button { font-weight: 600; padding: 1rem 1.5rem; }
.accordion-button:not(.collapsed) { background: rgba(139, 92, 246, 0.05); color: var(--primary); }
.accordion-button:focus { box-shadow: none; }
.accordion-body { padding: 0 1.5rem 1rem 3.5rem; color: var(--muted-foreground); }


/* ===== Contact Page Styles ===== */
.hero-contact {
    padding-top: 140px;
    padding-bottom: 80px;
}

.office-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.office-map {
    height: 250px;
    width: 100%;
}

.office-map iframe {
    width: 100%;
    height: 100%;
}

.office-details {
    padding: 1.5rem;
}

.office-city {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.office-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.office-info-item i {
    margin-top: 2px;
    flex-shrink: 0;
}

.office-info-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.office-info-item a:hover {
    color: var(--coral);
}

.general-inquiries-card {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inquiries-icon {
    width: 48px;
    height: 48px;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.inquiries-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.inquiries-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.inquiries-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.inquiry-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.inquiry-link:hover {
    opacity: 0.8;
}

.inquiry-link.coral {
    color: var(--coral);
}

.inquiry-link.teal {
    color: var(--teal);
}

.hero-section-contact {
    min-height: 59vh;
    display: flex
;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}




/* ===== Under Construction Page ===== */
.under-construction-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.under-construction-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.construction-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.under-construction-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.construction-message {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.construction-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.detail-item svg {
    color: var(--primary);
}

@media (max-width: 768px) {
    .under-construction-content {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .under-construction-content h1 {
        font-size: 2rem;
    }
    
    .construction-details {
        flex-direction: column;
        gap: 1rem;
    }
}