/* Define CSS Variables */
:root {
    --gma-accent: #F1A706; /* Accent color */
    --gma-text: #333333; /* Text color */
    --gma-muted: #777777; /* Muted text color */
    --gma-card: #222222; /* Card background */
}

/* General Button Styling */
.corporate .corp-btn {
    display: inline-block;
    padding: 0.7rem 1.1rem;
    border-radius: 0.6rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, filter 0.3s ease;
}

/* Primary Button Styling */
.corporate .corp-btn--primary {
    background-color: var(--gma-accent); /* Primary button background */
    color: #111827; /* Text color */
    border: none;
}

.corporate .corp-btn--primary:hover {
    filter: brightness(0.95); /* Slight darken effect on hover */
}

/* Ghost Button Styling */
.corporate .corp-btn--ghost {
    background-color: transparent; /* Transparent background */
    color: #e5e7eb; /* Light text */
    border: 1px solid rgba(229, 231, 235, 0.25); /* Light border */
}

.corporate .corp-btn--ghost:hover {
    background-color: var(--gma-accent); /* Change background on hover */
    color: white; /* Change text color on hover */
    border-color: var(--gma-accent); /* Change border color on hover */
}

/* Hero Section Styling */
.corporate .corp-hero {
    position: relative;
    color: var(--gma-text);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.75), rgba(11, 18, 32, 0.85)), var(--corp-hero) center/cover no-repeat;
    padding: 80px 0;
}

.corporate .corp-hero__content {
    max-width: 820px;
}

.corporate .corp-hero__title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff; /* Hero title in white */
}

.corporate .corp-hero__lead {
    font-size: 1.1rem;
    color: #ffffff; /* Hero lead paragraph in white */
    margin-bottom: 1rem;
}

/* Trust Bar Styling */
.corporate .corp-trust {
    background: #0b1220;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.corporate .corp-trust__wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 16px 0;
    flex-wrap: wrap;
}

.corporate .corp-trust__label {
    color: var(--gma-muted);
    font-size: 0.95rem;
}

.corporate .corp-trust__logos {
    display: flex;
    gap: 24px;
    align-items: center;
    opacity: 0.9;
}

.corporate .corp-trust__logos img {
    height: 28px;
    filter: grayscale(100%) contrast(1.1) brightness(0.95);
}

/* Section Headers Styling */
.corporate .corp-section-head h2 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.corporate .corp-section-head p {
    color: var(--gma-muted);
    margin-bottom: 1.5rem;
}

/* Grid Layout */
.corporate .corp-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.corporate .corp-grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.corporate .corp-grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* Service & Card Styling */
.corporate .corp-service, .corporate .corp-card {
    background: var(--gma-card);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.corporate .corp-service__media img, .corporate .corp-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.corporate .corp-service__body, .corporate .corp-card__body {
    padding: 16px;
}

.corporate .corp-service__body h3, .corporate .corp-card__body h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.corporate .corp-service__body p, .corporate .corp-card__body p {
    color: var(--gma-muted);
    margin-bottom: 0.75rem;
}

.corporate .corp-link {
    color: var(--gma-accent);
    text-decoration: none;
    font-weight: 600;
}

.corporate .corp-link:hover {
    text-decoration: underline;
}

/* Metrics Section */
.corporate .corp-metrics {
    padding: 24px 0 10px;
}

.corporate .corp-metric {
    background: #0b1220;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
}

.corporate .corp-metric .n {
    display: block;
    font-weight: 800;
    color: #fff;
    font-size: clamp(18px, 3vw, 26px);
}

.corporate .corp-metric label {
    display: block;
    color: var(--gma-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.corporate .cta-area-two {
    position: relative;
    padding: 36px 0 60px;
}

.corporate .cta__bg {
    background: var(--gma-accent);
    opacity: 0.2;
}

.corporate .cta__content {
    text-align: center;
}

.corporate .cta__content .title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 1rem;
}

.corporate .cta__content .sub-title {
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.corporate .cta__shapes img {
    position: absolute;
}

.corporate .cta__shapes img[data-aos="fade-down-right"] {
    top: 20px;
    right: 20px;
}

.corporate .cta__shapes img[data-aos="fade-up-left"] {
    bottom: 20px;
    left: 20px;
}
