/*
Theme Name: HiSky Aerospace V3 Ultimate
Theme URI: https://hiskyeg.com/
Author: Antigravity AI
Author URI: https://hiskyeg.com
Description: Custom WordPress theme for HiSky Aerospace featuring modern design, slider, and video integration. Fully dynamic.
Version: 3.0.0
Text Domain: hisky
*/
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Reset & Variables */
:root {
    --primary-color: #1e4686;
    --primary-dark: #001959;
    --primary-light: #86acd1;
    --accent-color: #0284c7;
    --accent-glow: rgba(30, 70, 134, 0.15);
    
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0b1329;
    --bg-dark-card: #1c2541;
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #f8fafc;
    --text-light-muted: #cbd5e1;
    
    --border-color: #e2e8f0;
    --border-dark: #334155;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(30, 70, 134, 0.25);
    
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--text-muted);
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--text-light);
}

.section-dark p {
    color: var(--text-light-muted);
}

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

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 968px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
}

/* Header & Navigation */
header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

header.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container img {
    height: 50px;
    object-fit: contain;
    transition: var(--transition-normal);
}

header.scrolled .logo-container img {
    height: 42px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
}

nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition-normal);
}

@media (max-width: 868px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        transition: var(--transition-slow);
        z-index: 1005;
    }
    
    nav.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.btn-secondary:hover {
    background-color: rgba(30, 70, 134, 0.05);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-card);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 70, 134, 0.04) 0%, rgba(2, 132, 199, 0.02) 100%), var(--bg-main);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 30%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-backdrop {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(30, 70, 134, 0.1);
    border-radius: 50%;
    animation: rotateRadar 15s linear infinite;
}

.radar-backdrop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(30, 70, 134, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radar-backdrop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(2, 132, 199, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero-image {
    position: relative;
    z-index: 5;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg), 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.hero-visual:hover .hero-image {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    z-index: 5;
    box-shadow: var(--shadow-lg), 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.hero-visual:hover .hero-slider {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Navigation Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: var(--transition-normal);
}

.hero-slider:hover .slide-arrow {
    opacity: 1;
}

.slide-arrow:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

/* Slider Dots */
.slide-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.slide-dot:hover, .slide-dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

@keyframes rotateRadar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 968px) {
    .hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .radar-backdrop {
        width: 300px;
        height: 300px;
    }
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header.center h2 {
    background: linear-gradient(135deg, var(--primary-dark) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 1.1rem;
}

@media (max-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Feature/Stats Cards */
.intro-stats {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 0;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1.5rem;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Welcome Block */
.welcome-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-video-wrapper {
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow-lg), 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    background-color: var(--primary-dark);
    line-height: 0;
    overflow: visible;
}

.welcome-video {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.unmute-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 25, 89, 0.8);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.unmute-btn:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.05);
    border-color: white;
}

.unmute-btn.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.welcome-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    max-width: 220px;
    border-left: 4px solid var(--primary-light);
}

.welcome-badge-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.welcome-badge-subtitle {
    font-size: 0.8rem;
    color: var(--text-light-muted);
}

.welcome-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.welcome-text p {
    margin-bottom: 1.5rem;
}

@media (max-width: 868px) {
    .welcome-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .welcome-badge {
        bottom: 10px;
        right: 10px;
    }
}

/* Services Grid & Cards */
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition-normal);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background-color: rgba(30, 70, 134, 0.05);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link i {
    transition: var(--transition-fast);
}

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

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 10px rgba(30, 70, 134, 0.2);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    padding: 4rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
}

.cta-content {
    max-width: 600px;
    z-index: 5;
}

.cta-content h2 {
    color: var(--text-light);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light-muted);
    font-size: 1.1rem;
}

.cta-action {
    z-index: 5;
    flex-shrink: 0;
}

@media (max-width: 868px) {
    .cta-banner {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .cta-action {
        width: 100%;
    }
}

/* Partners Slider/Ticker */
.partners-ticker {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.partners-ticker::before, .partners-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.partners-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
}

.partners-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
}

.ticker-wrap {
    display: flex;
    width: max-content;
}

.ticker-track {
    display: flex;
    gap: 4rem;
    animation: tickerScroll 30s linear infinite;
    padding-right: 4rem;
}

.partner-logo {
    height: 60px;
    width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes tickerScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Footer styling */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
    border-top: 4px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-info img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-links h4, .footer-contact h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-light-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light-muted);
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
    color: var(--text-light-muted);
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light-muted);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(0, 25, 89, 0.9) 0%, rgba(30, 70, 134, 0.9) 100%), url('assets/images/banner.jpg') no-repeat center center/cover;
    padding: 8rem 0 5rem;
    color: var(--text-light);
    text-align: center;
}

.page-banner h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.breadcrumbs a:hover {
    color: var(--text-light);
}

/* About Us Section Styling */
.about-beliefs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.belief-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.belief-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 6rem;
    color: rgba(30, 70, 134, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.belief-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.belief-card h3 i {
    color: var(--primary-color);
}

.belief-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.mission-mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text ul {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-text li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
}

.mission-text li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

@media (max-width: 968px) {
    .about-beliefs-grid, .mission-mission-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Leadership Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.team-image-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-slow);
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
    text-align: center;
    position: relative;
    background-color: var(--bg-card);
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    .team-image-wrapper {
        height: 340px;
    }
}

/* Services Detailed page */
.services-detailed-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.services-detailed-item {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.services-detailed-item:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.services-detailed-item:nth-child(even) .services-detailed-content {
    order: 2;
}

.services-detailed-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.services-detailed-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.services-detailed-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.services-detailed-content li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.services-detailed-content li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.services-detailed-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 350px;
}

.services-detailed-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-detailed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 25, 89, 0.4) 0%, transparent 100%);
}

@media (max-width: 868px) {
    .services-detailed-item, .services-detailed-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .services-detailed-item:nth-child(even) .services-detailed-content {
        order: unset;
    }
    
    .services-detailed-content ul {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-color: rgba(30, 70, 134, 0.05);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-card-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-card-text a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-container h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.form-control {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
    background-color: var(--bg-main);
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(30, 70, 134, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

@media (max-width: 868px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Modal Feedback */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 3rem 2rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #d1fae5;
    color: #059669;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

