:root {
    --navy: #0A192F;
    --navy-light: #112240;
    --navy-deep: #020c1b;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --dark: #020c1b;
    --gray: #8892b0;
    --light: #f8faff;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-premium: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--navy);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

.text-white {
    color: var(--white) !important;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.15rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 70px 0;
}

.section-narrow {
    padding: 40px 0;
}

.bg-navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
}

.bg-navy .section-title h2 {
    color: var(--white);
}

.bg-navy .section-subtitle {
    color: var(--gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.underline {
    height: 4px;
    width: 60px;
    background-color: var(--navy);
    margin: 0 auto;
    border-radius: 2px;
}

.underline.gold {
    background-color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.btn-gold.outline {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold.outline:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-wa {
    background-color: #25D366;
    /* WhatsApp Green */
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-weight: 600;
}

.btn-wa:hover {
    background-color: #1ebd5c;
    /* Darker WhatsApp Green */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg,
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--light);
}

/* About Section */
.lead {
    text-align: center;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--navy-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.1);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Why Choose Us Section */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Center odd item on bottom row */
.choose-grid>div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 350px;
    margin: 0 auto;
}

.choose-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.choose-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.08);
}

.choose-card:hover::after {
    transform: scaleY(1);
}

.choose-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.choose-icon {
    font-size: 1.5rem;
}

.choose-card:hover .choose-icon-wrapper {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: rotate(10deg);
}

.choose-content h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.choose-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
}

/* Ecosystem Section */
.eco-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    align-items: stretch;
}

.eco-card {
    width: calc(25% - 18.75px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.eco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.eco-card-logo {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border-bottom: 3px solid var(--gold);
}

.eco-card-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.eco-card-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.eco-card-content h3 {
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
    color: var(--gold) !important;
    font-weight: 700 !important;
}

.eco-subtitle {
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    color: var(--white) !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.eco-card-content p {
    font-size: 0.95rem !important;
    margin-bottom: 15px !important;
    color: var(--gray) !important;
    line-height: 1.6 !important;
}

.eco-card-content p:last-child {
    margin-bottom: 0;
}

/* Highlights Section - Premium Redesign */
.highlights {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.highlights .section-title h2 {
    color: var(--white);
}

.highlights .underline {
    background-color: var(--gold);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.highlight-item {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.highlight-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.highlight-item:hover::after {
    transform: scaleX(1);
}

.stat-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.highlight-item:hover .stat-circle {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.plus {
    color: inherit;
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--gold);
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.highlight-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Corporate Solutions */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
}

/* Center the last card if an odd row */
.solutions-grid>div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.solution-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--gold);
}

.solution-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    color: var(--navy);
}

.solution-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.solution-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Partner Success Metrics */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.metric-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.metric-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-family: 'Outfit', sans-serif;
}

.metric-number .plus {
    font-size: 2.5rem;
    margin-left: 5px;
    color: var(--white);
}

.metric-item p {
    font-size: 1.1rem;
    color: var(--light);
    font-weight: 500;
}

/* Malls Section */
.malls-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(10, 25, 47, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.emirates-banner {
    text-align: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 40px;
    position: relative;
}

.emirates-banner h4 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.emirates-banner p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    word-spacing: 5px;
}

.malls-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.mall-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mall-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mall-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--gold);
}

.mall-name {
    font-weight: 500;
    color: var(--white);
    font-size: 1.05rem;
    flex-grow: 1;
    letter-spacing: 0.5px;
}

.malls-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.malls-note {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials-wrapper {
    position: relative;
    width: 100%;
}

.scroll-hint {
    text-align: right;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 10px;
    padding-right: 15px;
    animation: pulseHint 2s infinite;
}

.hint-icon {
    font-size: 1.1rem;
    color: var(--gold);
    vertical-align: middle;
}

@keyframes pulseHint {
    0% {
        opacity: 0.6;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-5px);
    }

    100% {
        opacity: 0.6;
        transform: translateX(0);
    }
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 10px 15px 40px;
    /* space for padding + box shadow */
    margin: 0 -15px;
    /* Offset the container padding for full-bleed scroll */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 380px;
    /* Fixed width for horizontal scrolling */
    scroll-snap-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, #15294e 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.15);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 25, 47, 0.25);
    border-color: var(--gold);
}

.quote-icon {
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.1);
    /* Subtle glowing gold */
    font-family: serif;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 25px;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--light);
    /* Light text for dark bg */
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 50%;
    /* Circle looks more premium here */
    background: var(--white);
    padding: 6px;
    border: 2px solid var(--gold);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin: 0;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    max-width: 200px;
    object-fit: contain;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 20px;
    color: var(--gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: var(--gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

/* Partner CTA Banner */
.partner-cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), url('webbanner_desktop.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.partner-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partner-cta-content h2 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.partner-cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
}

/* Our Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* Center odd item on bottom rows if needed */
.values-grid>div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.value-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Animations & Utilities */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .partner-cta-content h2 {
        font-size: 2.4rem;
    }

    .eco-grid {
        flex-direction: column;
    }

    .eco-card {
        width: 100%;
        margin-bottom: 20px;
    }
}