﻿/* Base Styles & Variables */
:root {
    --primary-blue: #1a3e6a;
    --secondary-blue: #2f61a1;
    --accent-orange: #ff6b00;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray-text: #343a40;
    --white: #ffffff;
    --border-light: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --gradient-blue-dark: linear-gradient(#2A417E, #2A6D91 0%, #0d2a4a 100%);
    --hero-bg-gradient: linear-gradient(135deg, hsl(215 85% 25%) 0%, hsl(190 75% 35%) 100%); /* Mimics the lobby image feel */
    --highlight-bg-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8c40 100%);
    --background: 0 0% 100%;
    --foreground: 220 20% 15%;
    --card: 0 0% 100%;
    --card-foreground: 220 20% 15%;
    --popover: 0 0% 100%;
    --popover-foreground: 220 20% 15%;
    --primary: 215 85% 25%;
    --primary-foreground: 0 0% 100%;
    --primary-light: 215 75% 45%;
    --primary-dark: 215 90% 18%;
    --accent: 25 95% 55%;
    --accent-foreground: 0 0% 100%;
    --accent-light: 25 90% 65%;
    --accent-dark: 25 100% 45%;
    --secondary: 190 75% 45%;
    --secondary-foreground: 0 0% 100%;
    --secondary-light: 190 65% 65%;
    --muted: 220 15% 96%;
    --muted-foreground: 220 15% 45%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 15% 88%;
    --input: 220 15% 88%;
    --ring: 215 85% 25%;
    --radius: .75rem;
    --gradient-primary: linear-gradient(135deg, hsl(215 85% 25%) 0%, hsl(215 90% 18%) 100%);
    --gradient-hero: linear-gradient(135deg, hsl(215 85% 25%) 0%, hsl(190 75% 35%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(25 95% 55%) 0%, hsl(25 100% 45%) 100%);
    --gradient-subtle: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(220 15% 98%) 100%);
    --shadow-soft: 0 4px 20px -2px hsl(215 85% 25% / .1);
    --shadow-medium: 0 8px 30px -4px hsl(215 85% 25% / .15);
    --shadow-strong: 0 20px 60px -10px hsl(215 85% 25% / .25);
    --shadow-glow: 0 0 40px hsl(25 95% 55% / .3);
    --transition-base: all .3s cubic-bezier(.4, 0, .2, 1);
    --transition-smooth: all .5s cubic-bezier(.4, 0, .2, 1);
    --dark-text-blue: #001133;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray-text);
    background-color: var(--light-gray);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--secondary-blue);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-gray-text);
    line-height: 1.2;
}



.container {
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border: 1px solid var(--accent-orange);
    font-size:small;
}

    .btn-primary:hover {
        background-color: #e65a00;
        border-color: #e65a00;
    }

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-blue);
    border: 1px solid var(--secondary-blue);
}

    .btn-secondary:hover {
        background-color: var(--secondary-blue);
        color: var(--white);
    }

.btn-white {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--white);
}

    .btn-white:hover {
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--primary-blue);
    }

.btn-ghost {
    background-color: white;
    color: #001133;
    border: none;
    padding: 0px 15px;
    font-size: small
}

    .btn-ghost:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

/* Header */
.main-header {
    background-color: #d3dae6;
    padding: 10px 0;
    box-shadow: 0 2px 10px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    background-color: var(--accent-orange);
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    padding-top: 2px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #001133;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

    .main-nav a:hover {
        color: var(--accent-orange);
    }

.nav-products {
    position: relative;
    cursor: pointer;
}

    .nav-products .product-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--white);
        border-radius: 8px;
        box-shadow: 0 8px 30px var(--shadow-medium);
        padding: 20px;
        margin-top:5px;
        min-width: 600px;
        z-index: 100;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform-origin: top center;
        transform: translateX(-50%) translateY(-10px);
        pointer-events: none;
    }

    .nav-products:hover .product-dropdown {
        display: grid;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

.product-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background-color: var(--white);
    box-shadow: -2px -2px 5px var(--shadow-light);
    z-index: -1;
}

.product-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    color: var(--dark-gray-text);
}


    .product-item:hover {
        box-shadow: 0 0 1rem hsl(215 85% 25% / .40); /* Bootstrap shadow-lg equivalent */
        transition: box-shadow 0.3s ease;
    }

    .product-item .icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-right: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background-color: var(--light-gray);
    }

        .product-item .icon svg {
            width: 24px;
            height: 24px;
            color: var(--secondary-blue); /* Default icon color */
        }
/* Specific icon colors */
.icon-pms svg {
    color: #e74c3c;
}
/* Example red */
.icon-revenue svg {
    color: #2ecc71;
}
/* Example green */
.icon-sites svg {
    color: #3498db;
}
/* Example blue */
.icon-channel svg {
    color: #9b59b6;
}
/* Example purple */
.icon-reputation svg {
    color: #f1c40f;
}
/* Example yellow */
.icon-voice svg {
    color: #e67e22;
}
/* Example orange */


.product-item .details {
    display: flex;
    flex-direction: column;
}

.product-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--primary-blue);
}

.product-item p {
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.4;
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero-section {
    background: var(--hero-bg-gradient);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

    .hero-section .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        position: relative;
        z-index: 1;
    }

.hero-content {
    max-width: 100%;
    text-align: left;
}

    .hero-content .subtitle {
        font-size: 16px;
        font-weight: 500;
        opacity: 0.8;
        --tw-backdrop-blur: blur(4px);
        margin-bottom: 15px;
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.15);
        padding: 5px 15px;
        border-radius: 20px;
    }

    .hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--white);
        text-align: left;
    }

        .hero-content h1 strong {
            color: var(--accent-orange);
        }

    .hero-content p {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 30px;
        opacity: 0.9;
    }

.hero-features {
    list-style: none;
    margin-bottom: 30px;
    display: grid;
    gap: 10px;
}

    .hero-features li {
        font-size: 17px;
        display: flex;
        align-items: center;
        opacity: 0.9;
    }

        .hero-features li .icon-checkmark {
            width: 20px;
            height: 20px;
            min-width: 20px;
            margin-right: 10px;
            color: #28a745; /* Green checkmark */
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .hero-features li .icon-checkmark svg {
                width: 14px;
                height: 14px;
                stroke-width: 3;
            }

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.hero-stat {
    text-align: left;
}

    .hero-stat h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--accent-orange);
        margin-bottom: 5px;
    }

    .hero-stat p {
        font-size: 14px;
        opacity: 0.7;
        margin-bottom: 0;
        line-height: 1.3;
    }

.hero-image-placeholder {
    width: 100%;
    max-width: 600px; /* Adjust based on image in screenshot */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .hero-image-placeholder::before {
        content: "Hotel Lobby Visual (CSS/SVG)";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: rgba(255, 255, 255, 0.6);
        font-size: 20px;
        text-align: center;
    }

/* Section Titles */
.section-intro {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 80px;
}

    .section-intro .subtitle {
        font-size: 14px;
        font-weight: 600;
        color: var(--secondary-blue);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .section-intro h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .section-intro p {
        font-size: 18px;
        color: var(--medium-gray);
        max-width: 800px;
        margin: 0 auto;
    }

/* Problem/Solution Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.problem-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .problem-card:hover {
        box-shadow: 0 0 1rem hsl(24 100% 50% / .25); /* Bootstrap shadow-lg equivalent */
        transition: box-shadow 0.3s ease;
    }

    .problem-card .icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(var(--accent-orange-rgb, 255, 107, 0), 0.1); /* Default orange tint */
        margin-bottom: 20px;
    }

        .problem-card .icon svg {
            width: 24px;
            height: 24px;
            color: var(--accent-orange);
        }

    /* Specific problem icons */
    .problem-card:nth-child(1) .icon {
        background-color: rgba(255, 107, 0, 0.1);
    }

        .problem-card:nth-child(1) .icon svg {
            color: var(--accent-orange);
        }

    .problem-card:nth-child(2) .icon {
        background-color: rgba(255, 107, 0, 0.1);
    }

        .problem-card:nth-child(2) .icon svg {
            color: var(--accent-orange);
        }

    .problem-card:nth-child(3) .icon {
        background-color: rgba(255, 107, 0, 0.1);
    }

        .problem-card:nth-child(3) .icon svg {
            color: var(--accent-orange);
        }

    .problem-card:nth-child(4) .icon {
        background-color: rgba(255, 107, 0, 0.1);
    }

        .problem-card:nth-child(4) .icon svg {
            color: var(--accent-orange);
        }

    .problem-card:nth-child(5) .icon {
        background-color: rgba(255, 107, 0, 0.1);
    }

        .problem-card:nth-child(5) .icon svg {
            color: var(--accent-orange);
        }

    .problem-card:nth-child(6) .icon {
        background-color: rgba(255, 107, 0, 0.1);
    }

        .problem-card:nth-child(6) .icon svg {
            color: var(--accent-orange);
        }


    .problem-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        margin-left:5px;
        color: var(--primary-blue);
    }

    .problem-card p {
        font-size: 14px;
        color: var(--medium-gray);
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .problem-card strong {
        color: var(--dark-gray-text);
    }

/* Product Detail Grid */
.product-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-detail-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .product-detail-card:hover {
        box-shadow: 0 0 1rem hsl(215 85% 25% / .40); /* Bootstrap shadow-lg equivalent */
        transition: box-shadow 0.3s ease;
    }

    .product-detail-card .new-tag {
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: #28a745; /* Green */
        color: var(--white);
        font-size: 12px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 20px;
    }

    .product-detail-card .icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background-color: var(--light-gray);
        margin-bottom: 20px;
    }

        .product-detail-card .icon svg {
            width: 30px;
            height: 30px;
            color: var(--secondary-blue);
        }
    /* Specific product card icons */
    .product-detail-card:nth-child(1) .icon svg {
        color: #e74c3c;
    }
    /* PMS */
    .product-detail-card:nth-child(2) .icon svg {
        color: #2ecc71;
    }
    /* Revenue */
    .product-detail-card:nth-child(3) .icon svg {
        color: #3498db;
    }
    /* Sites */
    .product-detail-card:nth-child(4) .icon svg {
        color: #9b59b6;
    }
    /* Channel */
    .product-detail-card:nth-child(5) .icon svg {
        color: #f1c40f;
    }
    /* Reputation */
    .product-detail-card:nth-child(6) .icon svg {
        color: #e67e22;
    }
    /* Voice */


    .product-detail-card h3 {
        font-size: 22px;
        font-weight: 600;
        color: var(--primary-blue);
        margin-bottom: 5px;
    }

    .product-detail-card .product-subtitle {
        font-size: 15px;
        color: var(--medium-gray);
        margin-bottom: 20px;
    }

    .product-detail-card ul {
        list-style: none;
        margin-bottom: 25px;
        flex-grow: 1; /* Make list fill available space */
    }


        .product-detail-card ul li {
            font-size: 15px;
            color: var(--dark-gray-text);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

            .product-detail-card ul li::before {
                content: '•';
                color: var(--secondary-blue);
                margin-right: 10px;
                font-size: 18px;
                line-height: 1;
            }

    .product-detail-card .btn-ghost {
        margin-top: auto; /* Push button to bottom */
        align-self: flex-start;
        font-weight: 600;
        color: var(--secondary-blue);
    }

        .product-detail-card .btn-ghost svg {
            margin-left: 8px;
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }

        .product-detail-card .btn-ghost:hover svg {
            transform: translateX(3px);
        }


/* CTA Block */
.call-to-action-block {
    background: var(--gradient-hero);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 80px auto;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

    .call-to-action-block h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--white);
    }

    .call-to-action-block p {
        font-size: 18px;
        opacity: 0.9;
        margin-bottom: 30px;
    }

    .call-to-action-block .cta-actions {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.why-choose-card {
    background-color: transparent;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

    .why-choose-card:hover {
        box-shadow: 0 0 1rem hsl(215 85% 25% / .40); /* Bootstrap shadow-lg equivalent */
        transition: box-shadow 0.3s ease;
    }

    .why-choose-card .icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--light-gray);
        margin: 0 auto 20px;
    }

        .why-choose-card .icon svg {
            width: 30px;
            height: 30px;
            color: var(--accent-orange);
        }
    /* Specific why choose icons */
    .why-choose-card:nth-child(1) .icon svg {
        color: #1a3e6a;
    }
    /* Clock */
    .why-choose-card:nth-child(2) .icon svg {
        color: #ff6b00;
    }
    /* Lightning */
    .why-choose-card:nth-child(3) .icon svg {
        color: #2f61a1;
    }
    /* Shield */
    .why-choose-card:nth-child(4) .icon svg {
        color: #e74c3c;
    }
    /* Heart */
    .why-choose-card:nth-child(5) .icon svg {
        color: #2ecc71;
    }
    /* Chart */
    .why-choose-card:nth-child(6) .icon svg {
        color: #9b59b6;
    }
    /* Checkmark */


    .why-choose-card h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--primary-blue);
    }

    .why-choose-card p {
        font-size: 15px;
        color: var(--medium-gray);
        line-height: 1.5;
    }

/* Footer */
.main-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
    font-size: 15px;
}

    .main-footer .footer-grid {
        display: grid;
        grid-template-columns: 2fr repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 40px;
    }

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p, .footer-col ul {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

    .footer-col a:hover {
        color: var(--accent-orange);
    }

.footer-contact-info {
    margin-top: 20px;
}

    .footer-contact-info div {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.8);
    }

    .footer-contact-info svg {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        color: rgba(255, 255, 255, 0.6);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 20px;
}

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.6);
    }

.social-links a {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

    .social-links a:hover {
        color: var(--white);
    }

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 40px;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 15px;
    }

    .nav-products .product-dropdown {
        min-width: 500px;
    }

    .product-dropdown-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image-placeholder {
        max-width: 100%;
    }

    .hero-actions, .hero-stats {
        justify-content: center;
    }

    .section-intro h2 {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Can implement a hamburger menu if needed */
    }

    .main-header .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .logo {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-features li {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat h3 {
        font-size: 28px;
    }

    .section-intro h2 {
        font-size: 28px;
    }

    .section-intro p {
        font-size: 16px;
    }

    .problems-grid, .product-details-grid, .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .call-to-action-block {
        padding: 40px 20px;
    }

        .call-to-action-block h2 {
            font-size: 26px;
        }

        .call-to-action-block .cta-actions {
            flex-direction: column;
        }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3 {
        margin-top: 30px;
    }

    .footer-contact-info div {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .social-links a {
        margin: 0 10px;
    }
}

.text-primary {
    color: hsl(var(--primary));
}

.text-primary-2 {
    color: hsl(var(--dark-text-blue));
}

.text-accent {
    color: hsl(var(--accent));
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.text-sm {
    font-size: .875rem;
}

.text-foreground {
    color: hsl(var(--primary-dark));
}

.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.w-full {
    width: 100%;
}

.h-auto {
    height: auto;
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.shadow-strong {
    --tw-shadow: var(--shadow-strong);
    --tw-shadow-colored: var(--shadow-strong);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-strong {
    --tw-shadow: var(--shadow-strong);
    --tw-shadow-colored: var(--shadow-strong);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.relative {
    position: relative;
}

.img-rounded{
       border-radius: 15px;
}

.backdrop-blur-lg {
    backdrop-filter: blur(16px); /* applies the blur */
    -webkit-backdrop-filter: blur(16px); /* Safari support */
    background-color: rgba(255, 255, 255, 0.75); /* semi-transparent background */
}



/* About Hero */
.about-hero {
    padding: 64px 0 28px;
    background: transparent
}

    .about-hero .container {
        text-align: center
    }

.about-title {
    font-size: 36px;
    color: var(--blue-deep);
    font-weight: 700;
    margin: 6px 0
}

.about-sub {
    max-width: 880px;
    margin: 12px auto;
    color: var(--muted);
    font-size: 15.5px
}

/* Mission + Stats */
.mission {
    padding: 42px 0 34px
}

    .mission .container {
        text-align: center
    }

    .mission h3 {
        font-size: 24px;
        color: var(--blue-deep);
        margin-bottom: 12px;
        font-weight: 700
    }

    .mission p {
        max-width: 880px;
        margin: 0 auto;
        color: var(--muted);
        font-size: 15px;
        margin-bottom: 24px
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    max-width: 960px;
    margin: 22px auto 0
}

.stat {
    background: var(--card);
    border: 1px solid var(--soft-border);
    padding: 18px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm)
}

    .stat .number {
        font-size: 26px;
        color: var(--blue-deep);
        font-weight: 800
    }

    .stat .label {
        margin-top: 6px;
        color: var(--muted);
        font-size: 13px
    }

/* Story section */
.story {
    padding: 40px 0 44px
}

    .story .inner {
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 36px;
        align-items: center;
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 20px
    }

    .story h4 {
        font-size: 20px;
        color: var(--blue-deep);
        margin-bottom: 12px;
        font-weight: 700
    }

    .story p {
        color: var(--muted);
        font-size: 14.5px;
        margin-bottom: 12px
    }

    .story .card {
        background: var(--card);
        border-radius: 16px;
        padding: 36px;
        text-align: center;
        border: 1px solid var(--soft-border);
        box-shadow: var(--shadow-md);
    }

        .story .card svg {
            width: 68px;
            height: 68px;
            color: var(--blue-deep);
            margin-bottom: 14px
        }

        .story .card h5 {
            font-size: 16px;
            color: var(--blue-deep);
            margin-bottom: 6px;
            font-weight: 700
        }

        .story .card p {
            color: var(--muted);
            font-size: 13px;
            margin: 0
        }

/* Values */
.values {
    padding: 20px 0 38px
}

    .values .heading {
        text-align: center;
        margin-bottom: 18px
    }

        .values .heading h3 {
            font-size: 22px;
            color: var(--blue-deep);
            margin-bottom: 8px;
            font-weight: 700
        }

        .values .heading p {
            max-width: 720px;
            margin: 0 auto;
            color: var(--muted);
            font-size: 14px
        }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 22px auto
}

.value-card {
    background: var(--card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--soft-border);
    text-align: center;
    box-shadow: 0 8px 18px rgba(12,34,60,0.04);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--orange);
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 12px;
    box-shadow: 0 10px 24px rgba(255,107,0,0.12);
}

.value-card h4 {
    font-size: 15px;
    color: var(--blue-deep);
    margin: 0 0 8px;
    font-weight: 700
}

.value-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

/* CTA Join */
.join-cta {
    padding: 34px 0;
    text-align: center
}

    .join-cta h3 {
        font-size: 22px;
        color: var(--blue-deep);
        margin-bottom: 8px;
        font-weight: 700
    }

    .join-cta p {
        color: var(--muted);
        margin-bottom: 18px
    }

    .join-cta .btn-large {
        background: var(--blue-deep);
        color: #fff;
        padding: 12px 22px;
        border-radius: 10px;
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(11,34,66,0.12)
    }

.medium-title {
    font-size: 10px;
}