/*
 Theme Name:   Biotech CEO Summit
 Theme URI:    https://biotect.marknetdev.com
 Description:  Custom Genesis child theme for the Global Biotech CEO Summit
 Author:       Dapper Horse / MarkNet Group
 Author URI:   https://dapperhorse.com
 Template:     genesis
 Version:      1.0.0
 License:      GPL-2.0-or-later
 Text Domain:  biotech-ceo-summit
*/

/* ==========================================================================
   CSS VARIABLES / DESIGN TOKENS
   ========================================================================== */

:root {
    /* Brand Colors */
    --color-gold: #998C4D;
    --color-gold-hover: #7d7340;
    --color-gold-light: #b5a96a;

    /* Text Colors */
    --color-body: #28303D;
    --color-heading: #1B1B1B;
    --color-muted: #7D868C;
    --color-subtle: #697C7D;

    /* Backgrounds */
    --color-white: #FFFFFF;
    --color-offwhite: #F9FAFB;
    --color-dark: #2C2C2C;

    /* Typography */
    --font-heading: 'Calibri', 'Carlito', 'Lato', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

    /* Layout */
    --max-width: 1140px;
    --header-height: 80px;

    /* Spacing */
    --section-padding: 100px;
    --gap: 30px;

    /* Border Radius */
    --radius-pill: 25px;
    --radius-card: 12px;
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-body);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold-hover);
}


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.2;
    margin-top: 0;
}

h1 { font-size: 72px; font-weight: 700; }
h2 { font-size: 48px; font-weight: 700; }
h3 { font-size: 36px; font-weight: 600; }
h4 { font-size: 24px; font-weight: 600; }
h5 { font-size: 20px; font-weight: 600; }
h6 { font-size: 16px; font-weight: 600; }

.section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 10px;
}


/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */

.wrap,
.site-inner .wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.full-width-section {
    width: 100%;
    padding: var(--section-padding) 0;
}

.full-width-section .wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.bg-gold { background-color: var(--color-gold); }
.bg-offwhite { background-color: var(--color-offwhite); }
.bg-dark { background-color: var(--color-dark); }
.bg-white { background-color: var(--color-white); }

.text-white { color: var(--color-white); }
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn,
.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    line-height: 1;
}

.btn-primary,
.button-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn-primary:hover,
.button-primary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: var(--color-white);
}

.btn-outline,
.button-outline {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline:hover,
.button-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-white-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-white-outline:hover {
    background-color: var(--color-white);
    color: var(--color-gold);
}

.btn-arrow::after {
    content: "\2192";
    margin-left: 4px;
}


/* ==========================================================================
   SITE HEADER
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    height: var(--header-height);
    transition: all 0.3s ease;
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: 1300px;
}

.title-area {
    flex-shrink: 0;
}

.title-area a {
    display: block;
}

.title-area img {
    max-height: 50px;
    width: auto;
}

/* Hide default Genesis titles */
.site-title,
.site-description {
    clip: rect(0, 0, 0, 0);
    position: absolute;
    height: 0;
    width: 0;
}

/* Navigation */
.nav-primary {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-primary .genesis-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-primary .genesis-nav-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--color-body);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-primary .genesis-nav-menu a:hover,
.nav-primary .genesis-nav-menu .current-menu-item > a {
    color: var(--color-gold);
}

/* Dropdown Menus */
.nav-primary .genesis-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 100;
}

.nav-primary .genesis-nav-menu .menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-primary .genesis-nav-menu .sub-menu a {
    padding: 8px 20px;
    font-size: 14px;
}

.nav-primary .genesis-nav-menu .sub-menu a:hover {
    background-color: var(--color-offwhite);
}

/* Dropdown arrow indicator */
.nav-primary .genesis-nav-menu .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
}

/* Header CTA Buttons */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* Body offset for fixed header */
.site-container {
    padding-top: var(--header-height);
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.15) 60%,
        transparent 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--color-gold);
}

.hero-section h1,
.hero-section h2 {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-section h2 em {
    font-style: italic;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 8px;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 32px;
}


/* ==========================================================================
   STATS COUNTER BAR
   ========================================================================== */

.stats-bar {
    background-color: var(--color-gold);
    padding: 40px 0;
}

.stats-bar .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    text-align: center;
}

.stat-item {
    color: var(--color-white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}


/* ==========================================================================
   EXPERIENCE SECTION
   ========================================================================== */

.experience-section {
    padding: var(--section-padding) 0;
}

.experience-section .wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.experience-image img {
    border-radius: var(--radius-card);
    width: 100%;
    object-fit: cover;
}

.experience-header {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: inline-block;
}

.experience-header h3 {
    color: var(--color-white);
    margin: 0;
    font-size: 28px;
}

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

.feature-card {
    background: var(--color-white);
    border: 1px solid #eee;
    border-radius: var(--radius-card);
    padding: 24px;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    color: var(--color-gold);
}

.feature-card h5 {
    margin-bottom: 6px;
}

.feature-card p {
    color: var(--color-muted);
    font-size: 14px;
    margin: 0;
}


/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */

.gallery-section {
    background-color: var(--color-offwhite);
    padding: var(--section-padding) 0;
}

.gallery-section .section-header {
    margin-bottom: 40px;
}

.gallery-carousel {
    overflow: hidden;
}

.gallery-carousel .swiper-slide img {
    border-radius: var(--radius-card);
    width: 100%;
    height: 300px;
    object-fit: cover;
}


/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    padding: var(--section-padding) 0;
    text-align: center;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid #eee;
    border-radius: var(--radius-card);
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-quote-icon {
    font-size: 48px;
    color: var(--color-gold-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading);
}


/* ==========================================================================
   JOURNEY / TIMELINE SECTION
   ========================================================================== */

.journey-section {
    background-color: #6b6b6b;
    color: var(--color-white);
    padding: var(--section-padding) 0;
    text-align: center;
}

.journey-section h2 {
    color: var(--color-white);
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 50px;
    text-align: left;
}

.journey-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.journey-card h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 22px;
}

.journey-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.journey-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    opacity: 0.9;
}

.journey-card ul li:last-child {
    border-bottom: none;
}


/* ==========================================================================
   VENUE SECTION
   ========================================================================== */

.venue-section {
    padding: var(--section-padding) 0;
}

.venue-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.venue-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-info {
    padding: 40px;
}

.venue-info h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.venue-address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.venue-info p {
    color: var(--color-muted);
    margin-bottom: 24px;
}


/* ==========================================================================
   SPONSORS SECTION
   ========================================================================== */

.sponsors-section {
    padding: 60px 0;
    overflow: hidden;
}

.sponsors-section .section-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b8960c;
    font-size: 14px;
    margin-bottom: 40px;
}

.sponsors-marquee {
    width: 100%;
    overflow: hidden;
}

.m-scroll {
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.m-scroll > div {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    white-space: nowrap;
}

.m-scroll img {
    height: 50px;
    width: auto;
    max-width: 180px;
    margin: 0 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.m-scroll-rtl > div {
    animation: scroll-rtl 35s linear infinite;
}

.m-scroll-ltr > div {
    animation: scroll-ltr 35s linear infinite;
}

@keyframes scroll-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-ltr {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 60px 0 0;
}

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

.footer-brand img {
    max-height: 50px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--color-white);
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--color-white);
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-info-item svg {
    width: 16px;
    height: 16px;
    fill: var(--color-white);
    opacity: 0.8;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.8;
}

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

.footer-social a {
    color: var(--color-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


/* ==========================================================================
   INNER PAGE HERO
   ========================================================================== */

.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--color-white);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Page hero with gold background (no image) */
.page-hero-gold {
    background-color: var(--color-gold);
    min-height: 300px;
}

.page-hero-gold::before {
    display: none;
}


/* ==========================================================================
   AGENDA / PROGRAM PAGE
   ========================================================================== */

.agenda-section {
    padding: var(--section-padding) 0;
}

.agenda-day-heading {
    font-size: 36px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
}

.agenda-day-heading span {
    color: var(--color-gold);
}

.agenda-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
    margin-bottom: 8px;
}

.agenda-time {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gold);
    white-space: nowrap;
}

.agenda-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-heading);
}

.agenda-description {
    font-size: 14px;
    color: var(--color-muted);
    margin-top: 4px;
    line-height: 1.6;
}


/* ==========================================================================
   REGISTRATION / PRICING
   ========================================================================== */

.pricing-section {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: var(--section-padding) 0;
    text-align: center;
}

.pricing-section h2 {
    color: var(--color-white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-card);
    padding: 30px;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--color-gold);
    background: rgba(153, 140, 77, 0.15);
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin: 16px 0 8px;
}

.pricing-card .price-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.pricing-card .price-note {
    font-size: 13px;
    opacity: 0.6;
}


/* ==========================================================================
   CTA CARDS (2-column layout for Registration)
   ========================================================================== */

.cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    padding: var(--section-padding) 0;
}

.cta-card {
    background: var(--color-white);
    border: 1px solid #eee;
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cta-card h3 {
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--color-muted);
    margin-bottom: 24px;
}


/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    margin-top: 40px;
}

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

.process-step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: var(--color-muted);
}


/* ==========================================================================
   ABOUT PAGE - ICON GRID
   ========================================================================== */

.program-topics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 40px;
}

.topic-card {
    background: var(--color-white);
    border: 1px solid #eee;
    border-radius: var(--radius-card);
    padding: 30px;
    transition: box-shadow 0.3s ease;
}

.topic-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.topic-card h5 {
    color: var(--color-gold);
    margin-bottom: 8px;
}

.topic-card p {
    color: var(--color-muted);
    font-size: 14px;
    margin: 0;
}


/* ==========================================================================
   SPONSORSHIP - TIERED LOGOS
   ========================================================================== */

.m-scroll img {
    height: 40px;
    margin: 0 20px;
}


/* ==========================================================================
   ACCOMMODATIONS - TRAVEL TABLE
   ========================================================================== */

.travel-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.travel-table th,
.travel-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.travel-table th {
    font-weight: 600;
    color: var(--color-heading);
}

.travel-table td:last-child {
    text-align: right;
    color: var(--color-muted);
}

.attire-icons {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
}

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

.attire-item-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.attire-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading);
}


/* ==========================================================================
   COMPANY LIST (About page)
   ========================================================================== */

.company-list {
    column-count: 4;
    column-gap: 20px;
    margin-top: 20px;
}

.company-list span {
    display: block;
    font-size: 13px;
    line-height: 2;
    color: var(--color-muted);
}

.company-list-toggle {
    margin-top: 20px;
}


/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-body);
    margin: 5px 0;
    transition: all 0.3s ease;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 70px;
    }

    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }

    .experience-section .wrap {
        grid-template-columns: 1fr;
    }

    .venue-card {
        grid-template-columns: 1fr;
    }

    .journey-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .program-topics {
        grid-template-columns: 1fr 1fr;
    }

    .company-list {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 50px;
        --header-height: 65px;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }

    .menu-toggle {
        display: block;
    }

    .nav-primary {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .nav-primary.active {
        display: block;
    }

    .nav-primary .genesis-nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-primary .genesis-nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .header-cta {
        display: none;
    }

    .stats-bar .wrap {
        grid-template-columns: 1fr 1fr;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .cta-cards {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .program-topics {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .company-list {
        column-count: 1;
    }

    .agenda-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .hero-section {
        min-height: 80vh;
    }

    .page-hero {
        min-height: 300px;
    }
}
