:root {
    --color-aleyne-green: #4CAF50;
    --color-dark-bg: #050505;
    --color-light-bg: #ffffff;
    --color-panel-bg: rgba(255, 255, 255, 0.03);
    --color-panel-border: rgba(255, 255, 255, 0.08);
    --color-text-main: #ffffff;
    --color-text-muted: #94a3b8;
    --font-outfit: "Outfit", sans-serif;
    --page-width: 297mm;
    --page-height: 210mm;
    --page-padding: 15mm;

    --shadow-glow: 0 0 40px rgba(76, 175, 80, 0.15);
    --shadow-glass: 0 4px 30px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-outfit);
    background-color: #111;
    color: var(--color-text-main);
    line-height: 1.5;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}



#content-to-print {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

/* Base Page Style */
.page {
    width: var(--page-width);
    height: var(--page-height);
    margin: 0 auto 20px auto;
    position: relative;
    overflow: hidden;
    background-color: var(--color-dark-bg);
    color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

/* THEME VARIANTS */
.page-dark {
    background-color: var(--color-dark-bg);
    color: white;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(76, 175, 80, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(76, 175, 80, 0.04) 0%, transparent 40%);
}

.page-dark h3,
.page-dark h4 {
    color: white;
}

.page-dark p {
    color: #94a3b8;
}

.page-light {
    background-color: #f8fafc;
    color: #0f172a;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(76, 175, 80, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
}

.page-light h3 {
    color: #0f172a;
}

.page-light h4 {
    color: #334155;
}

.page-light p {
    color: #475569;
}

/* Light Theme Components */
.page-light .glass-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 10px 15px -3px rgba(0, 0, 0, 0.03),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
}

.page-light .glass-pill {
    background: rgba(76, 175, 80, 0.1);
    color: #15803d;
    border: 1px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

/* DECORATIVE ORBS */
.orb-float {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.orb-green {
    background: #bbf7d0;
}

.orb-blue {
    background: #bfdbfe;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.text-gradient {
    background: linear-gradient(to right, #4CAF50, #86efac);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-light .text-gradient {
    background: linear-gradient(to right, #166534, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-green {
    color: var(--color-aleyne-green);
}

/* Glassmorphism Components */
.glass-card {
    background: var(--color-panel-bg);
    border: 1px solid var(--color-panel-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-glass);
    transition: all 0.3s ease;
}

.glass-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 99px;
    color: var(--color-aleyne-green);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* VISUALIZATIONS & IMAGES */
.visual-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    mix-blend-mode: multiply;
    /* Blends white bg into transparent */
    display: block;
}

.page-dark .visual-img {
    mix-blend-mode: normal;
}

/* Chart CSS (Donut/Bar) continues... */
.chart-donut {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(var(--color-aleyne-green) 0% 35%,
            #22c55e 35% 60%,
            #86efac 60% 85%,
            #dcfce7 85% 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-donut::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--color-dark-bg);
    border-radius: 50%;
}

.page-light .chart-donut::after {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.chart-bar-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    width: 100%;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.bar {
    width: 40px;
    background: var(--color-aleyne-green);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s ease;
}

.bar span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.map-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--color-aleyne-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.3);
}

.map-marker::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: var(--color-aleyne-green);
}

/* Layout Utilities */
.page-padding {
    padding: var(--page-padding);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.h-full {
    height: 100%;
}

/* --- PAGE SPECIFIC --- */
.cover-page {
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.cover-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.cover-content {
    z-index: 2;
    position: relative;
    max-width: 70%;
}

.cover-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem var(--page-padding);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: inherit;
    opacity: 0.6;
    background: transparent;
}

.page-light .cover-footer {
    border-top-color: rgba(0, 0, 0, 0.1);
    color: var(--color-text-muted);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-aleyne-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-map-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}

.header-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- DOWNLOAD BUTTON --- */
#download-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--color-aleyne-green);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
    font-family: var(--font-outfit);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

#download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
    background: #43a047;
}

#download-btn::before {
    content: '\f019';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

@media print {
    body {
        background: none;
    }

    #download-btn {
        display: none;
    }

    .page {
        margin: 0;
        box-shadow: none;
        page-break-after: always;
    }
}
/* Service Card Specifics */
.service-card-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    justify-content: flex-start;
}

.service-card-center .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--color-aleyne-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-aleyne-green);
}

.service-card-center h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service-card-center p {
    font-size: 0.85rem;
    margin: 0;
    color: #cbd5e1;
    line-height: 1.5;
}
