/* ============================================
   QUICKSOLVE GLOBAL SOLUTIONS
   Main Stylesheet - Corporate Premium Design
   ============================================ */

/* Premium Corporate Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lora:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Brand Colors Extracted from Logo */
:root {
    /* Primary Brand Colors from Logo */
    --primary-blue: #3B9DD6;        /* Light Blue from logo */
    --primary-green: #8DC63F;       /* Bright Green from logo */
    --deep-blue: #1C4B6B;           /* Dark Blue for depth */
    --medium-blue: #2B7CB5;         /* Medium Blue from logo */
    --medium-green: #6BAE3B;        /* Medium Green from logo */
    
    /* Refined Neutrals */
    --navy-dark: #0A2540;           /* Deep Navy for headers */
    --charcoal: #2D3748;            /* Charcoal for text */
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-grey: #F7FAFC;
    --medium-grey: #E2E8F0;
    --text-grey: #64748B;
    --dark-grey: #334155;
    --border-color: #E2E8F0;
    
    /* Accent Colors */
    --accent-primary: #3B9DD6;      /* Primary Blue */
    --accent-secondary: #8DC63F;    /* Primary Green */
    --accent-gold: #10b981;         /* Premium Gold accent */
    
    /* Premium Fonts */
    --font-display: 'Playfair Display', serif;     /* Elegant serif for headings */
    --font-serif: 'Lora', serif;                   /* Body serif for sophistication */
    --font-sans: 'Inter', sans-serif;              /* Modern sans-serif */
    --font-secondary: 'Poppins', sans-serif;       /* Alternative sans-serif */
    
    /* Animation Variables */
    --animation-speed-fast: 0.3s;
    --animation-speed-normal: 0.5s;
    --animation-speed-slow: 0.8s;
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Load Animation */
body {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal);
    background: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy-dark);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--deep-blue), var(--medium-blue));
    color: #fff;
    padding: 12px 0;
    font-size: 13px;
    transform: translateY(0);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 30px;
}

.top-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--animation-speed-fast) var(--ease-smooth);
}

.top-contact span:hover {
    transform: translateX(3px);
}

.top-contact i {
    color: var(--primary-green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out 0.2s both;
    transition: all var(--animation-speed-normal) var(--ease-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInLeft 0.8s ease-out 0.3s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    border-radius: 3px;
    transition: all var(--animation-speed-normal) var(--ease-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(59, 157, 214, 0.3);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.logo:hover .logo-icon::before {
    left: 100%;
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 157, 214, 0.4);
}

.logo-text h1 {
    font-size: 22px;
    color: var(--navy-dark);
    margin: 0;
    transition: color var(--animation-speed-fast);
    font-family: var(--font-display);
    font-weight: 700;
}

.logo-text-f h1 {
    font-size: 22px;
    color: white;
    margin: 0;
    transition: color var(--animation-speed-fast);
    font-family: var(--font-display);
    font-weight: 700;
}

.logo:hover .logo-text h1 {
    color: var(--primary-blue);
}

.logo-text p {
    font-size: 11px;
    color: var(--primary-green);
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 700;
}

.main-menu {
    display: flex;
    gap: 0;
    align-items: center;
}

.main-menu > li {
    position: relative;
    animation: fadeInDown 0.5s ease-out both;
}

.main-menu > li:nth-child(1) { animation-delay: 0.4s; }
.main-menu > li:nth-child(2) { animation-delay: 0.5s; }
.main-menu > li:nth-child(3) { animation-delay: 0.6s; }
.main-menu > li:nth-child(4) { animation-delay: 0.7s; }
.main-menu > li:nth-child(5) { animation-delay: 0.8s; }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-menu > li > a {
    padding: 10px 20px;
    display: block;
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color var(--animation-speed-fast) var(--ease-smooth);
}

.main-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    transition: all var(--animation-speed-normal) var(--ease-smooth);
    transform: translateX(-50%);
}

.main-menu > li > a:hover::after,
.main-menu > li.active > a::after {
    width: 80%;
}

.main-menu > li > a:hover,
.main-menu > li.active > a {
    color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--navy-dark);
    transition: transform var(--animation-speed-fast);
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.92), rgba(28, 75, 107, 0.92)),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100L0 0Z M50 0L100 50L50 100L50 0Z" fill="rgba(201,162,39,0.03)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

.page-banner-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-banner h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.breadcrumb a {
    color: var(--accent-primary);
    position: relative;
    transition: all var(--animation-speed-fast);
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width var(--animation-speed-fast);
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* ============================================
   HERO SLIDER (Homepage)
   ============================================ */
.hero-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    animation: kenBurns 10s ease-out;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15,27,45,0.9), rgba(14,90,90,0.8));
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.slide.active .slide-content h2 {
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.slide.active .slide-content p {
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

.slide.active .slide-buttons {
    animation: slideInLeft 0.8s ease-out 0.7s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-content h2 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all var(--animation-speed-normal) var(--ease-smooth);
    border: 2px solid;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 157, 214, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--medium-green));
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(141, 198, 63, 0.4);
}

.btn-secondary {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 157, 214, 0.3);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-grey {
    background: var(--light-grey);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--navy-dark);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
    animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.section-title p {
    font-size: 16px;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto;
}

.section-title .view-all {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    transition: all var(--animation-speed-fast);
}

.section-title .view-all::after {
    content: '→';
    margin-left: 5px;
    display: inline-block;
    transition: transform var(--animation-speed-fast);
}

.section-title .view-all:hover::after {
    transform: translateX(5px);
}

.section-title .view-all:hover {
    color: var(--primary-blue);
}

/* ============================================
   CHOICE / WHY CHOOSE US
   ============================================ */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.choice-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.choice-item:nth-child(1) { animation-delay: 0.2s; }
.choice-item:nth-child(2) { animation-delay: 0.4s; }
.choice-item:nth-child(3) { animation-delay: 0.6s; }

.choice-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.choice-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity var(--animation-speed-normal);
}

.choice-item:hover .choice-image::after {
    opacity: 1;
}

.choice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.choice-item:hover .choice-image img {
    transform: scale(1.1) rotate(2deg);
}

.choice-icon {
    position: absolute;
    bottom: -30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: var(--accent-primary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all var(--animation-speed-normal) var(--ease-bounce);
}

.choice-item:hover .choice-icon {
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(201,162,39,0.4);
}

.choice-icon img {
    width: 40px;
    height: 40px;
}

.choice-content {
    background: #fff;
    padding: 40px 30px 30px;
    transition: all var(--animation-speed-normal);
}

.choice-item:hover .choice-content {
    background: var(--light-grey);
}

.choice-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--navy-dark);
    transition: color var(--animation-speed-fast);
}

.choice-item:hover .choice-content h4 {
    color: var(--accent-primary);
}

.choice-content p {
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.7;
}

.choice-content a {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 14px;
    position: relative;
    display: inline-block;
}

.choice-content a::after {
    content: '→';
    margin-left: 5px;
    display: inline-block;
    transition: transform var(--animation-speed-fast);
}

.choice-content a:hover::after {
    transform: translateX(5px);
}

/* ============================================
   COUNTER SECTION
   ============================================ */
.counter-section {
    background: linear-gradient(135deg, var(--primary-blue), #0a4545);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.counter-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(20px);
    }
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.counter-item:nth-child(1) { animation-delay: 0.2s; }
.counter-item:nth-child(2) { animation-delay: 0.4s; }
.counter-item:nth-child(3) { animation-delay: 0.6s; }
.counter-item:nth-child(4) { animation-delay: 0.8s; }

.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--animation-speed-normal) var(--ease-bounce);
    position: relative;
}

.counter-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--animation-speed-normal);
}

.counter-item:hover .counter-icon {
    background: rgba(201,162,39,0.2);
    transform: scale(1.1) rotate(360deg);
}

.counter-item:hover .counter-icon::before {
    opacity: 1;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.counter-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: var(--font-display);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.counter-label {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    transition: color var(--animation-speed-fast);
}

.counter-item:hover .counter-label {
    color: var(--accent-primary);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all var(--animation-speed-normal) var(--ease-smooth);
    border-top: 3px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.05), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-top-color: var(--accent-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--animation-speed-normal) var(--ease-bounce);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--animation-speed-normal);
}

.service-card:hover .service-icon {
    background: var(--accent-primary);
    transform: rotateY(360deg);
}

.service-card:hover .service-icon::after {
    opacity: 1;
    transform: scale(1.2);
}

.service-icon img {
    width: 45px;
    height: 45px;
    transition: filter var(--animation-speed-normal);
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy-dark);
    transition: color var(--animation-speed-fast);
}

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

.service-card h4 a {
    color: var(--navy-dark);
    transition: color var(--animation-speed-fast);
}

.service-card h4 a:hover {
    color: var(--accent-primary);
}

.service-card p {
    color: var(--charcoal);
    line-height: 1.7;
}

/* ============================================
   ABOUT CONTENT
   ============================================ */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--charcoal);
    line-height: 1.8;
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon img {
    width: 35px;
    height: 35px;
}

.about-feature-text p {
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
}

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-form-section {
    background: var(--light-grey);
    padding: 50px;
    border-radius: 5px;
}

.quote-form-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--navy-dark);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 14px;
    font-family: var(--font-sans);
    transition: all var(--animation-speed-fast) var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
    transform: translateY(-2px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-dark);
    font-weight: 700;
    transition: color var(--animation-speed-fast);
}

.form-group:focus-within label {
    color: var(--accent-primary);
}

.btn-submit {
    background: var(--accent-primary);
    color: var(--navy-dark);
    border: 2px solid var(--accent-primary);
    padding: 14px 40px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all var(--animation-speed-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

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

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: transparent;
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201,162,39,0.3);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ============================================
   SERVICE PAGE LAYOUT
   ============================================ */
.service-page-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu li a {
    display: block;
    padding: 12px 20px;
    background: #fff;
    border-left: 3px solid transparent;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    border-left-color: var(--accent-primary);
    background: #fff;
    color: var(--navy-dark);
    padding-left: 25px;
}

.contact-widget {
    background: var(--navy-dark);
    color: #fff;
    padding: 30px;
    border-radius: 5px;
}

.contact-widget h4 {
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.contact-widget p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.brochure-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.brochure-box h5 {
    color: #fff;
    margin-bottom: 15px;
}

.brochure-box p {
    font-size: 13px;
    margin-bottom: 15px;
}

.btn-download {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-primary);
    color: var(--navy-dark);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-download:hover {
    background: #D4AF37;
}

/* ============================================
   SERVICE ITEMS
   ============================================ */
.service-items-grid {
    display: grid;
    gap: 30px;
}

.service-item-large {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.service-item-image {
    height: 300px;
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item-large:hover .service-item-image img {
    transform: scale(1.1);
}

.service-item-content {
    padding: 35px;
}

.service-item-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--navy-dark);
}

.service-item-content p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-item-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-item-content ul li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.service-item-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.outcome-box {
    background: var(--light-grey);
    padding: 20px;
    border-left: 4px solid var(--primary-blue);
    margin-top: 20px;
}

.outcome-box strong {
    color: var(--navy-dark);
}

/* ============================================
   GOVERNANCE / PARTNER PAGE
   ============================================ */
.governance-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.governance-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.framework-item {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.framework-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.framework-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--navy-dark);
}

.framework-text p {
    color: var(--charcoal);
    margin-bottom: 0;
    font-size: 14px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 700px;
    gap: 50px;
}

.contact-info-boxes {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-box {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 5px;
    border-left: 4px solid var(--accent-primary);
}

.contact-info-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy-dark);
}

.contact-info-box p {
    color: var(--charcoal);
    margin-bottom: 0;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--navy-dark);
}

.contact-form-wrapper p {
    color: var(--charcoal);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue), #0a4545);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201,162,39,0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.newsletter-text h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
    animation: fadeInLeft 0.8s ease-out;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    animation: fadeInRight 0.8s ease-out;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    transition: all var(--animation-speed-fast);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.newsletter-form button {
    padding: 14px 30px;
    background: var(--accent-primary);
    color: var(--navy-dark);
    border: none;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    transition: all var(--animation-speed-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.newsletter-form button:hover::before {
    width: 300px;
    height: 300px;
}

.newsletter-form button:hover {
    background: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.newsletter-image {
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.newsletter-image img {
    max-width: 200px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    transition: all var(--animation-speed-normal);
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-grey);
    transition: all var(--animation-speed-fast);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-primary);
    transform: scaleY(0);
    transition: transform var(--animation-speed-normal);
}

.faq-item:hover .faq-question::before,
.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: #fff;
}

.faq-question h4 {
    font-size: 18px;
    margin: 0;
    color: var(--navy-dark);
    transition: color var(--animation-speed-fast);
}

.faq-item:hover .faq-question h4,
.faq-item.active .faq-question h4 {
    color: var(--accent-primary);
}

.faq-question i {
    transition: transform var(--animation-speed-fast);
    color: var(--accent-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-smooth), padding 0.5s var(--ease-smooth);
    padding: 0 25px;
    color: var(--charcoal);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    padding: 60px 0;
    background: var(--light-grey);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.client-logo img {
    max-width: 120px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-links li a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    color: var(--accent-primary);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .choice-grid,
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-section,
    .service-page-layout,
    .contact-page-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .framework-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .main-menu.active {
        display: flex;
    }
    
    .main-menu > li > a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .choice-grid,
    .counter-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-contact {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .page-banner h2 {
        font-size: 32px;
    }
}

/* ============================================
   ADDITIONAL ELEGANT ANIMATIONS
   ============================================ */

/* Scroll Reveal Animation Class */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-smooth);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Shimmer Effect for Loading States */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Bounce In Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Slide In From Left */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Right */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Rotate In */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Zoom In */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Elegant Underline Animation */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.4s var(--ease-smooth);
}

.animated-underline:hover::after {
    width: 100%;
}

/* Ripple Effect on Click */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--accent-primary), 0 0 10px var(--accent-primary);
    }
    50% {
        box-shadow: 0 0 20px var(--accent-primary), 0 0 30px var(--accent-primary);
    }
}

/* Text Typing Effect */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(0.9);
    }
    20%, 40% {
        transform: scale(1.1);
    }
}

/* Swing Animation */
@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Wobble Animation */
@keyframes wobble {
    0%, 100% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-25px) rotate(-5deg);
    }
    30% {
        transform: translateX(20px) rotate(3deg);
    }
    45% {
        transform: translateX(-15px) rotate(-3deg);
    }
    60% {
        transform: translateX(10px) rotate(2deg);
    }
    75% {
        transform: translateX(-5px) rotate(-1deg);
    }
}

/* Smooth Scroll Behavior */
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Selection Color */
::selection {
    background: var(--accent-primary);
    color: var(--navy-dark);
}

::-moz-selection {
    background: var(--accent-primary);
    color: var(--navy-dark);
}

/* Smooth Page Transitions */
.page-transition {
    animation: fadeIn 0.5s ease-in;
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    border: 3px solid var(--light-grey);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all var(--animation-speed-normal) var(--ease-smooth);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Image Hover Effects */
.image-zoom-effect {
    overflow: hidden;
}

.image-zoom-effect img {
    transition: transform 0.8s var(--ease-smooth);
}

.image-zoom-effect:hover img {
    transform: scale(1.1);
}

/* Text Gradient Animation */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-primary), var(--primary-blue));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

/* Border Draw Animation */
@keyframes drawBorder {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Subtle Background Movement */
@keyframes subtleMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, 5px);
    }
    50% {
        transform: translate(5px, 10px);
    }
    75% {
        transform: translate(-5px, 5px);
    }
}

/* ============================================
   UTILITY CLASSES FOR ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-smooth);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-fast {
    animation: fadeIn 0.3s ease-out;
}

.fade-in-normal {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-slow {
    animation: fadeIn 1s ease-out;
}

.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

.rotate-in {
    animation: rotateIn 0.8s ease-out;
}

/* Prevent Animation on Page Load */
.preload * {
    animation-duration: 0s !important;
    transition: none !important;
}

/* ============================================
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.90), rgba(59, 157, 214, 0.85)),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80') center/cover no-repeat;
}

/* ============================================
   TRANSPARENT LOGO WITH ANIMATION
   ============================================ */
.logo-icon {
    background: transparent !important;
    box-shadow: none !important;
    animation: logoFloat 3s ease-in-out infinite !important;
}

.logo-icon img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 8px rgba(59, 157, 214, 0.3));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon img {
    filter: drop-shadow(0 4px 12px rgba(141, 198, 63, 0.5));
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Top contact right alignment */
.top-contact {
    justify-content: flex-end;
}

/* ============================================
   PAGE-SPECIFIC BANNER BACKGROUNDS - PRIORITY
   ============================================ */
body.about-page .page-banner {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.90), rgba(59, 157, 214, 0.85)),
                url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1920&q=80') center/cover no-repeat !important;
}

body.services-page .page-banner {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.90), rgba(59, 157, 214, 0.85)),
                url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920&q=80') center/cover no-repeat !important;
}

body.governance-page .page-banner {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.90), rgba(59, 157, 214, 0.85)),
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&q=80') center/cover no-repeat !important;
}

body.contact-page .page-banner {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.90), rgba(59, 157, 214, 0.85)),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80') center/cover no-repeat !important;
}

/* ============================================
   FAQ FIX - ENSURE PROPER FUNCTIONALITY
   ============================================ */
.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    padding: 0 25px;
    color: var(--charcoal);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 20px 25px;
}

.faq-question {
    position: relative;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question:hover {
    background: var(--light-grey);
}
