/* ========================================
   Eccentric Consulting - Main Stylesheet
   Design: Light theme, cyan/teal accents
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* --- CSS Variables --- */
:root {
    --primary-cyan: #00b4d8;
    --primary-dark-blue: #1a2a3a;
    --primary-teal: #0096c7;
    --accent-yellow: #f0c040;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light-gray: #f0f4f8;
    --bg-light-blue: #e8f4f8;
    --bg-footer-dark: #1a2d3d;
    --bg-footer-bottom: #152535;
    --gradient-purple: linear-gradient(135deg, #7b2ff7, #c471ed, #00b4d8);
    --font-primary: 'Open Sans', sans-serif;
    --font-heading: 'Roboto', sans-serif;
    --shadow-card: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 4px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    max-width: 1400px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin: -12px 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
    padding: 8px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-cyan);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 70%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-dark-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 40, 60, 0.35) 0%, rgba(20, 40, 60, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 300;
}

.btn-outline-white {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* ========================================
   THREE ICON CARDS SECTION
   ======================================== */
.icon-cards-section {
    padding: 80px 0 60px;
    background: var(--bg-light-blue);
}

.icon-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.icon-card {
    text-align: center;
    padding: 30px 20px;
}

.icon-card .icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.icon-card:hover .icon-circle {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.icon-card .icon-circle svg {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.icon-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark-blue);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.icon-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   OUR SOLUTIONS SECTION
   ======================================== */
.solutions-section {
    padding: 80px 0;
    background: var(--bg-light-blue);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-dark-blue);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.solution-item h3 {
    font-size: 1.3rem;
    color: var(--primary-dark-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.solution-item p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.solution-item a {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-block;
    margin-top: 10px;
}

.solution-item a:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

/* ========================================
   APPLY / JOIN BANNER
   ======================================== */
.join-banner {
    padding: 60px 0;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.join-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.join-banner h2 {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 300;
}

.btn-apply {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-cyan);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    border: none;
    transition: var(--transition);
}

.btn-apply:hover {
    background: #fff;
    color: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   WHAT WE DO SECTION
   ======================================== */
.whatwedo-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.whatwedo-section .section-description {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.9;
}

.whatwedo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.whatwedo-card {
    background: var(--bg-white);
    border: 1px solid #e0e8f0;
    border-radius: 6px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.whatwedo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-cyan);
}

.whatwedo-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.whatwedo-card .card-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-cyan);
}

.whatwedo-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   JOIN US SECTION
   ======================================== */
.joinus-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.joinus-section .section-title {
    margin-bottom: 20px;
}

.joinus-section .subtitle {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.joinus-section .section-description {
    max-width: 950px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.joinus-section .locations-link {
    text-align: center;
}

.joinus-section .locations-link a {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.joinus-section .locations-link a:hover {
    text-decoration: underline;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    position: relative;
    padding: 120px 0 80px;
    min-height: 700px;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/contact-bg.png') center/cover no-repeat;
    z-index: 0;
}

.contact-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 40, 60, 0.35);
}

.contact-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-info-panel {
    background: var(--primary-cyan);
    color: #fff;
    padding: 50px 35px;
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-info-panel h3 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact-info-panel .binoculars-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-info-panel .binoculars-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.contact-info-panel .social-text {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-social-icons {
    display: flex;
    gap: 10px;
}

.contact-social-icons a {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social-icons a:hover {
    background: #fff;
}

.contact-social-icons a:hover svg {
    fill: var(--primary-cyan);
}

.contact-social-icons a svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.contact-form-panel {
    background: var(--bg-white);
    padding: 50px 40px;
    width: 65%;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: transparent;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary-cyan);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 5px;
}

.btn-send {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-cyan);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    float: right;
}

.btn-send:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-footer-dark);
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.footer-col .company-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-col .home-icon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.footer-col .home-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-cyan);
}

.footer-col .address,
.footer-col .phone,
.footer-col .email {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-col .address svg,
.footer-col .phone svg,
.footer-col .email svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-cyan);
    flex-shrink: 0;
    margin-top: 3px;
}

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

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.85;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-cyan);
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-cyan);
}

.footer-partner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer-partner img {
    max-width: 120px;
    border-radius: 4px;
}

.footer-bottom {
    background: var(--bg-footer-bottom);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--primary-cyan);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        gap: 5px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 12px 0;
        width: 100%;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .icon-cards-grid {
        grid-template-columns: 1fr;
        margin-top: -60px;
        gap: 20px;
    }

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

    .whatwedo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .join-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-panel,
    .contact-form-panel {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .whatwedo-grid {
        grid-template-columns: 1fr;
    }

    .join-banner h2 {
        font-size: 1.6rem;
    }

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

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content h3 {
        font-size: 1.2rem;
    }

    .contact-form-panel {
        padding: 30px 20px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fadeInUp {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* ========================================
   SUBPAGE STYLES
   ======================================== */

/* Page Banner */
.page-banner {
    position: relative;
    height: 280px;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    margin-top: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 50, 80, 0.6), rgba(80, 40, 120, 0.5));
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: var(--bg-light-blue);
}

.page-content h2 {
    font-size: 2rem;
    color: var(--primary-dark-blue);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 400;
}

.page-content .page-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.6rem;
    color: var(--primary-dark-blue);
    font-weight: 300;
    line-height: 1.5;
}

/* ---- Locations Page ---- */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.location-card {
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.location-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.location-card .card-body {
    padding: 25px;
}

.location-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark-blue);
    margin-bottom: 15px;
}

.location-card p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

.location-card .email-label {
    font-weight: 700;
    color: var(--primary-dark-blue);
}

/* ---- About Us Page ---- */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto 60px;
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.about-block .text-side {
    padding: 50px 40px;
}

.about-block .image-side {
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.about-block h3 {
    font-size: 1.8rem;
    color: var(--primary-dark-blue);
    margin-bottom: 25px;
    font-weight: 400;
}

.about-block p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-block .year {
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 1rem;
}

/* ---- Customer Page ---- */
.customer-table {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
}

.customer-table thead th {
    background: var(--bg-white);
    color: var(--primary-dark-blue);
    font-size: 1.5rem;
    font-weight: 400;
    padding: 20px 25px;
    text-align: left;
    border-bottom: 2px solid var(--primary-cyan);
}

.customer-table tbody tr {
    background: #fff;
    transition: var(--transition);
}

.customer-table tbody tr:hover {
    background: #f0f8ff;
}

.customer-table td {
    padding: 30px 25px;
    vertical-align: top;
    border-bottom: 1px solid #e8eef4;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.customer-table td:first-child {
    width: 28%;
}

.customer-table .company-logo {
    max-width: 220px;
    max-height: 100px;
    object-fit: contain;
    display: block;
}

.customer-table ul {
    padding-left: 5px;
}

.customer-table ul li {
    margin-bottom: 5px;
}

.customer-table ul li::before {
    content: '• ';
    color: var(--primary-dark-blue);
    font-weight: 700;
}

/* ---- Calculator Page ---- */
.calc-intro {
    background: var(--primary-dark-blue);
    color: #fff;
    padding: 50px 40px;
    margin-top: 0;
}

.calc-intro h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    text-align: left;
    margin-bottom: 10px;
}

.calc-intro .accent-line {
    width: 120px;
    height: 4px;
    background: var(--primary-cyan);
    margin: 15px 0 25px;
}

.calc-intro p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
}

.calc-section {
    padding: 60px 0;
    background: var(--bg-light-blue);
}

.calc-section .section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark-blue);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.calc-section h3 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-dark-blue);
    margin-bottom: 10px;
}

.calc-section .accent-line {
    width: 120px;
    height: 4px;
    background: var(--primary-cyan);
    margin: 0 0 30px;
}

.calc-section .calc-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 1000px;
}

.calc-section .calc-text em {
    color: var(--primary-teal);
    font-style: normal;
}

/* Calculator Interactive */
.calculator-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    max-width: 1000px;
}

.slider-group {
    margin-bottom: 30px;
}

.slider-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 12px;
}

.slider-group label .info-icon {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--primary-cyan);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--primary-cyan);
    font-weight: 700;
    cursor: help;
}

.slider-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-row input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    height: 6px;
    background: #d0d8e0;
    border-radius: 3px;
    outline: none;
}

.slider-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-cyan);
    border-radius: 50%;
    cursor: pointer;
}

.slider-row .slider-value {
    background: var(--primary-cyan);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 70px;
    text-align: center;
}

/* Donut Chart */
.donut-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donut-chart {
    position: relative;
    width: 250px;
    height: 250px;
}

.donut-chart canvas {
    width: 100%;
    height: 100%;
}

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

.donut-center .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
}

.donut-center .label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.donut-center .sublabel {
    font-size: 0.8rem;
    color: var(--text-light);
}

.donut-legend {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.donut-legend .legend-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 8px;
    align-items: center;
}

.donut-legend .legend-row .info-icon {
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--primary-cyan);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--primary-cyan);
    font-weight: 700;
}

.donut-legend .value {
    font-weight: 700;
    color: var(--primary-dark-blue);
}

/* ---- Responsive Subpages ---- */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .about-block {
        grid-template-columns: 1fr;
    }

    .about-block .image-side {
        min-height: 250px;
    }

    .calculator-area {
        grid-template-columns: 1fr;
    }

    .customer-table {
        display: block;
        overflow-x: auto;
    }

    .page-content .page-subtitle {
        font-size: 1.2rem;
    }

    .charts-area {
        grid-template-columns: 1fr;
    }
}

/* ---- Charts Area ---- */
.charts-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}
.chart-box {
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 8px;
    padding: 20px;
}
.chart-box canvas {
    width: 100%;
    height: auto;
}
.chart-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #666;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    display: inline-block;
}

/* ---- CTA Banner ---- */
.calc-cta {
    background: #0ea5e9;
    padding: 60px 0;
}
.calc-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.calc-cta p {
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
}
.calc-cta a {
    color: #fff;
    text-decoration: underline;
}
.calc-cta a:hover {
    opacity: 0.8;
}

/* Donut sizing override */
.donut-chart {
    width: 280px;
    height: 280px;
}