/* Ugbene Connect Premium Custom Stylesheet - Light Theme with Blue Header/Footer */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --accent: #0ea5e9;
    --accent-glow: rgba(14, 165, 233, 0.15);
    --bg-dark: #090d16;
    --bg-light: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-border: #e2e8f0;
    --bg-card-hover-border: rgba(37, 99, 235, 0.2);
    --text-dark: #0f172a;
    --text-slate: #334155;
    --text-muted: #64748b;
    --text-white: #f8fafc;
    --text-light: #cbd5e1;
    --glass-bg: rgba(9, 13, 22, 0.95);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px -15px rgba(2, 6, 23, 0.08);
    --shadow-dark: 0 10px 30px -15px rgba(2, 6, 23, 0.7);
    --gradient-hero: linear-gradient(135deg, rgba(9, 13, 22, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
    --gradient-card: linear-gradient(145deg, #131a26 0%, #0d121c 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-light);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-slate);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Navigation Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(9, 13, 22, 0.98);
    box-shadow: var(--shadow-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-fallback {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--text-white) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

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

.nav-item {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    color: var(--text-light);
}

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

.nav-item:hover {
    color: var(--text-white);
}

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

.nav-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    font-size: 1.1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
}

.social-icon:hover {
    color: var(--text-white);
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

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

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    background: linear-gradient(to right, var(--text-white) 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

/* Section Common Styles */
.section {
    padding: 100px 20px;
    position: relative;
    background-color: var(--bg-light);
}

.section-alt {
    background-color: var(--bg-alt);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.section-description {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Grid & Cards System */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 35px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--bg-card-hover-border);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.1);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Constitution & Vision Details (Keep dark background for premium visual highlight) */
.constitution-card {
    background: linear-gradient(145deg, #131a26 0%, #090d16 100%);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-dark);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.constitution-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 12rem;
    color: rgba(14, 165, 233, 0.05);
    font-family: serif;
    line-height: 1;
}

.constitution-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--accent);
}

.constitution-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.constitution-meta {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Society Impact */
.impact-badge {
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    align-self: flex-start;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

/* Project Cards with Images (maintain high-contrast text overlay) */
.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
}

.project-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.4) contrast(1.1);
}

.project-card:hover .project-img {
    transform: scale(1.05);
    filter: brightness(0.3) contrast(1.1);
}

.project-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: linear-gradient(to top, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.4) 60%, transparent 100%);
    width: 100%;
}

.project-card-content .card-title {
    color: #ffffff;
}

.project-card-content .card-text {
    color: var(--text-light);
}

.project-status-badge {
    position: absolute;
    top: -200px;
    right: 20px;
    background: var(--primary);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.project-status-badge.ongoing {
    background: #eab308;
    color: #0f172a;
}

/* Real Estate Section */
.estate-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.estate-content {
    padding-right: 20px;
}

.estate-highlights {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.estate-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.estate-highlight-icon {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 3px;
}

.estate-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(37, 99, 235, 0.1);
    height: 480px;
    cursor: pointer;
}

.estate-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.estate-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.estate-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(9, 13, 22, 0.85) 100%);
    pointer-events: none;
    z-index: 2;
}

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

.estate-image-wrapper:hover .estate-img {
    transform: scale(1.04);
}

.estate-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.estate-status-badge.ongoing {
    background: rgba(234, 179, 8, 0.92);
    color: #0f172a;
}

.estate-status-badge.completed {
    background: rgba(16, 185, 129, 0.92);
    color: #ffffff;
}

.estate-slider-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    gap: 6px;
}

.estate-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.estate-dot.active {
    background: var(--accent, #3b82f6);
    width: 24px;
    border-radius: 10px;
}

.estate-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 10;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 8px;
    color: #ffffff;
}

.estate-badge-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: white;
}

.estate-badge-subtitle {
    font-size: 0.85rem;
    color: var(--accent);
}

/* Events Tab / Switcher styling */
.events-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--bg-card-border);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.03);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.events-panel {
    display: none;
}

.events-panel.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

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

.event-card:hover {
    border-color: var(--bg-card-hover-border);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.05);
}

.event-header-img {
    height: 200px;
    position: relative;
}

.event-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.event-date-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-body {
    padding: 25px;
}

.event-meta {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.event-card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Event & Project card clickable state */
.event-card[role="button"],
.project-card[role="button"] {
    cursor: pointer;
}

/* "View Gallery" badge inside event card / project card image */
.event-view-gallery,
.project-view-gallery {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
    z-index: 5;
}
.event-card:hover .event-view-gallery,
.project-card:hover .project-view-gallery {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   Event Gallery Modal (egm)
   ========================================================= */
.egm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: egmFadeIn 0.28s ease;
}
@keyframes egmFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.egm-box {
    background: var(--bg-card, #1a1f2e);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    width: 100%;
    max-width: 820px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    overflow: hidden;
    animation: egmSlideUp 0.32s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes egmSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.egm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.egm-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark, #fff);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.egm-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: var(--primary, #2563eb);
}
.egm-close {
    background: rgba(255,255,255,0.07);
    border: none;
    color: var(--text-dark, #fff);
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.egm-close:hover { background: rgba(255,255,255,0.15); }

/* Slider */
.egm-slider-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}
.egm-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.egm-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
.egm-slide img, .egm-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Nav arrows */
.egm-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}
.egm-nav:hover {
    background: rgba(0,0,0,0.7);
    transform: translateY(-50%) scale(1.08);
}
.egm-prev { left: 14px; }
.egm-next { right: 14px; }

/* Dots */
.egm-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 6px;
}
.egm-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    padding: 0;
}
.egm-dot.active {
    background: var(--primary, #2563eb);
    transform: scale(1.35);
}

/* Counter */
.egm-counter {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted, #94a3b8);
    padding-bottom: 16px;
    letter-spacing: 0.04em;
}

/* Executives Profile Cards */
.executives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.exec-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.exec-card:hover {
    border-color: var(--bg-card-hover-border);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.08);
}

.exec-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.exec-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    transition: var(--transition);
}

.exec-card:hover .exec-avatar {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

.exec-name {
    font-size: 1.15rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--text-dark);
}

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

/* Sponsors Grid */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-items: center;
}

.sponsor-logo {
    background: var(--bg-alt);
    border: 1px solid var(--bg-card-border);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    transition: var(--transition);
    opacity: 0.8;
}

.sponsor-logo:hover {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.sponsor-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-slate);
    letter-spacing: -0.5px;
    text-align: center;
}

/* Contact / Consult Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-detail-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-detail-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-slate);
}

.form-control {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.08);
}

textarea.form-control {
    resize: none;
    height: 120px;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #b91c1c;
}

.alert-success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    color: #15803d;
}

/* Footer styling */
.site-footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    padding: 80px 20px 30px;
    color: var(--text-light);
}

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

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

.footer-brand h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 320px;
    color: var(--text-light);
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials .social-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .estate-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .estate-content, .contact-info {
        padding-right: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-socials {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    /* Mobile Menu Drawer when open */
    .nav-container.open .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--glass-border);
        padding: 30px 20px;
        gap: 20px;
        box-shadow: var(--shadow-dark);
    }
    
    .nav-container.open .nav-socials {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .constitution-card {
        padding: 30px;
    }
    
    .constitution-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .estate-highlights {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}
