/* Global Styles - PASTEL & GOLD THEME */
:root {
    /* Palette: Soft, Muted, Expensive */
    --primary-color: #37474f;
    /* Warm Charcoal/Blue-Grey */
    --primary-light: #546e7a;

    --accent-color: #c5a028;
    /* Muted Gold */
    --accent-light: #e6c86e;
    --accent-gradient: linear-gradient(135deg, #c5a028 0%, #e6c86e 50%, #b08d26 100%);
    --accent-glow: rgba(197, 160, 40, 0.3);

    --text-color: #5d6d7e;
    /* Warm Slate Grey */
    --text-light: #7f8c8d;

    --white: #ffffff;
    --pastel-base: #fdfcf8;
    /* Soft Ivory/Cream */
    --pastel-subtle: #f0f4f8;
    /* Soft Pastel Blue-Grey */
    --pastel-warm: #fcf6f0;
    /* Soft Peach/Rose */

    --border-color: rgba(55, 71, 79, 0.08);
    --gold-border: rgba(197, 160, 40, 0.25);

    --shadow-soft: 0 10px 30px rgba(55, 71, 79, 0.03);
    --shadow-hover: 0 20px 40px rgba(55, 71, 79, 0.08);
    --shadow-gold: 0 10px 25px rgba(197, 160, 40, 0.15);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--pastel-base);

    /* REFINED: Richer, Visible Mesh Gradient */
    background-image:
        radial-gradient(at 10% 10%, hsla(33, 80%, 90%, 1) 0px, transparent 50%),
        radial-gradient(at 90% 10%, hsla(210, 40%, 90%, 1) 0px, transparent 50%),
        radial-gradient(at 50% 50%, hsla(45, 90%, 88%, 0.4) 0px, transparent 50%),
        radial-gradient(at 10% 90%, hsla(210, 40%, 90%, 1) 0px, transparent 50%),
        radial-gradient(at 90% 90%, hsla(33, 80%, 90%, 1) 0px, transparent 50%);
    background-attachment: fixed;
    background-size: 150% 150%;
    animation: gradientMove 20s ease infinite;
    overflow-x: hidden;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced Texture Overlay (Premium Paper) */
/* Enhanced Texture Overlay (Global Paper Feel) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Denser, richer noise pattern */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: multiply;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 500;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 20px auto 0;
    border-radius: 50px;
    opacity: 0.7;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Utilities */
.text-center {
    text-align: center;
}

/* REFINED: Solid/Gradient Backgrounds (No Patterns) */
.bg-subtle {
    background-color: rgba(240, 244, 248, 0.3);
    /* More transparent to let texture show */
    background-image: none;
    backdrop-filter: blur(5px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

/* Navigation */
.navbar {
    background: rgba(253, 252, 248, 0.7);
    /* increased transparency */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 40, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-color);
}

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

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    transition: var(--transition);
    opacity: 0.6;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: transparent;
    /* Changed from gradient to transparent */
    overflow: hidden;
}

/* Animated floating blobs */
.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.08) 0%, transparent 70%);
    /* increased opacity slightly */
    top: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
    animation: float 10s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(84, 110, 122, 0.1) 0%, transparent 70%);
    /* increased opacity slightly */
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
    animation: float 15s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, 40px) scale(1.05);
    }
}

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

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Animations & Transitions */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* About Section */
.quote-container {
    margin-top: 60px;
    position: relative;
    padding: 60px;
    background: rgba(255, 255, 255, 0.65);
    /* Semi-transparent */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.quote-container::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: var(--accent-light);
    opacity: 0.4;
    background: transparent;
    padding: 0 20px;
}

.highlight-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.65);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid transparent;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-light);
}

.feature-icon {
    font-size: 3rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: var(--pastel-warm);
    color: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent-gradient);
    color: var(--white);
    transform: scale(1.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.65);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-border);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--primary-light);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--accent-color);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 1rem;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Leadership */
.leader-card {
    background: rgba(255, 255, 255, 0.65);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(197, 160, 40, 0.1);
}

.leader-image-placeholder {
    width: 100%;
    height: 320px;
    background: var(--pastel-subtle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 4rem;
    position: relative;
}

.leader-image-placeholder i {
    opacity: 0.1;
    color: var(--primary-color);
    transform: scale(2);
}

.leader-info {
    padding: 30px;
}

.leader-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.team-member:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Sectors */
.sectors-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.sectors-list li {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.sectors-list li:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-gold);
    color: var(--primary-color);
}

.sectors-list li i {
    color: var(--accent-color);
    opacity: 0.8;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-info {
    padding: 60px 40px;
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1h2v2H1V1zm4 4h2v2H5V5zm4 4h2v2H9V9zm4 4h2v2h-2v-2zm4 4h2v2h-2v-2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.contact-info h3,
.contact-info h4 {
    color: var(--white);
}

.contact-info p,
.contact-info a {
    color: rgba(255, 255, 255, 0.75);
}

.contact-info a:hover {
    color: var(--accent-light);
}

.info-item i {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
}

.contact-form-container {
    padding: 60px;
    background: var(--white);
}

.form-group input,
.form-group textarea {
    background-color: var(--pastel-base);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    border-radius: 12px;
    padding: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(197, 160, 40, 0.1);
    outline: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        background: rgba(255, 255, 255, 0.98);
        height: 100vh;
        width: 100%;
        padding-top: 100px;
        flex-direction: column;
        justify-content: flex-start;
        transition: 0.4s ease;
    }

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

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle .bar {
        background-color: var(--primary-color);
    }
}