:root {
    --primary: #030303;          /* Rich luxury pure black */
    --primary-light: #0A0A0A;    /* Slate black */
    --primary-dark: #000000;     /* Absolute black */
    
    --accent: #D4AF37;           /* Metallic Classic Gold */
    --accent-dark: #8E701B;      /* Shadow Gold */
    --accent-light: #F9E7B9;     /* Champagne Gold */
    
    --accent-green: #113308;     /* Deep Green using #6df832 tint */
    --accent-green-light: #52c823; /* Toned green */
    --accent-green-bright: #6df832; /* Specific brand green #6df832 */
    
    --bg-dark: #030303;
    --bg-charcoal: #080808;
    --bg-card: #0F0F0F;          /* Dark luxury card backdrop */
    
    --text-main: #F1F5F9;        /* Off-white for body readability */
    --text-muted: #94A3B8;       /* Slate gray text */
    --text-light: #FFFFFF;
    --text-dark: #050505;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --max-width: 1200px;
    --border-radius: 6px;
    --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.6);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.8);
    --shadow-large: 0 20px 50px rgba(0, 0, 0, 0.9);
    --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.15); /* Premium gold glow */
}

/* Base resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Luxury Heading Style with automatic gold gradients */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #FFF5D6 0%, var(--accent) 55%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: 100%;
}

h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.015em;
}

h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

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

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

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.section-padding {
    padding: 7.5rem 0;
}

.text-center { text-align: center; }
.bg-white { background-color: var(--primary-light); }
.bg-dark { background-color: var(--primary-dark); }
.bg-warm { background-color: var(--bg-charcoal); }

.gold-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 1.5rem 0;
}
.gold-divider.center {
    margin: 1.5rem auto;
}

.green-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green-light), transparent);
    margin: 1.5rem 0;
}
.green-divider.center {
    margin: 1.5rem auto;
}

/* Badges with emerald green theme and gold border */
.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-light);
    background-color: var(--accent-green); /* Deep Green */
    border: 1px solid rgba(212, 175, 55, 0.4); /* Gold border */
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    -webkit-text-fill-color: initial; /* Reset text gradient */
    background-clip: border-box;
}

/* Buttons with gold gradient */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
    color: var(--text-dark);
    border-color: var(--accent-light);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-green-bright) 0%, var(--accent-green-light) 100%); /* Green hover */
    color: var(--text-light);
    border-color: var(--accent-green-bright);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 130, 91, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--text-dark);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--text-dark);
    border-color: var(--accent-light);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-green-bright) 0%, var(--accent-green-light) 100%);
    color: var(--text-light);
    border-color: var(--accent-green-bright);
    transform: translateY(-3px);
}

/* Header & Navigation (luxury black & glassmorphism) */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(3, 3, 3, 0.92); /* Rich pure black */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22); /* Gold bottom line */
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    padding: 0.4rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 0;
    transition: var(--transition-smooth);
}

.logo img {
    height: 52px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-nav {
    display: flex;
    align-items: center;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.menu-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.5rem 0;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent); /* Gold line hover */
    transition: var(--transition-fast);
}

.menu-link:hover::after,
.menu-item.active .menu-link::after {
    width: 100%;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lang-btn {
    display: inline-flex;
    opacity: 0.4;
    transition: var(--transition-fast);
}

.lang-btn.active {
    opacity: 1;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}

.lang-btn img {
    width: 24px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.menu-toggle svg {
    width: 32px;
    height: 32px;
}

/* Close Button on Mobile navigation (absolute positioned) */
.menu-close {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #080808 60%, var(--accent-green) 100%); /* Staggered dark-green gradient */
    color: var(--text-light);
    padding-top: 170px;
    padding-bottom: 110px;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 248, 50, 0.28) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(90px);
    animation: breathingRight 1.8s infinite alternate ease-in-out;
}

@keyframes breathingRight {
    0% {
        transform: scale(0.8);
        opacity: 0.45;
    }
    100% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 248, 50, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    animation: breathingLeft 2.2s infinite alternate ease-in-out;
}

@keyframes breathingLeft {
    0% {
        transform: scale(0.85);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.3);
        opacity: 0.95;
    }
}

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

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.15;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.85;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Split grids */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    border: 1px solid rgba(212, 175, 55, 0.25); /* Gold outline */
}

.image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
    pointer-events: none;
}

.image-wrapper img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.founder-quote {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.5;
    font-style: italic;
    border-left: 3px solid var(--accent-green-light); /* Green border accent */
    padding-left: 2rem;
    margin: 3rem 0;
}

/* Cards & Pillars (Glowing border and shadow effects) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.pillar-card {
    background-color: var(--bg-card);
    padding: 3.5rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 4px solid var(--accent-green-light); /* Green top marker */
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--accent); /* Transits to gold on hover */
    border-bottom-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-gold); /* Gold glowing border shadow! */
}

.pillar-num {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #7a6320;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.pillar-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pillar-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Three Columns (Purpose/Mission/Vision) */
.three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.info-card {
    background-color: var(--bg-card);
    padding: 3.5rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 3px solid var(--accent-green-light); /* Green accent bottom */
    transition: var(--transition-smooth);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--accent); /* Gold transition */
    box-shadow: var(--shadow-gold);
}

.info-card h3 {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.info-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    text-align: left;
    color: var(--text-muted);
}

/* Value Proposition Bar */
.prop-bar {
    background-color: var(--primary-light);
    border: 1px solid rgba(212, 175, 55, 0.22);
    color: var(--text-light);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    margin-top: 4rem;
    box-shadow: var(--shadow-large);
}

.prop-bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 2rem;
}

.prop-bullet {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-light);
    text-align: center;
}

/* Program accordions with active border cues */
.program-item {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 1.8rem;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.program-header {
    width: 100%;
    padding: 2.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.program-header h3 {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.program-header .badge {
    margin-bottom: 0.5rem;
}

.program-arrow-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1.5px solid var(--accent);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.program-arrow {
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.program-header:hover .program-arrow-wrapper {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.08);
}

.program-header:hover .program-arrow {
    color: #000;
}

.program-item.active {
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.35);
}

.program-item.active .program-arrow-wrapper {
    background: linear-gradient(135deg, var(--accent-green-bright) 0%, var(--accent-green-light) 100%);
    border-color: var(--accent-green-bright);
    box-shadow: 0 0 15px rgba(109, 248, 50, 0.35);
}

.program-item.active .program-arrow {
    transform: rotate(180deg);
    color: #000;
}

.program-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-content-inner {
    padding: 0 2.5rem 2.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 0;
    padding-top: 2rem;
}

.program-content-inner p,
.program-content-inner div p {
    font-size: 1.02rem;
    margin-top: 1.5rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.85 !important;
    color: var(--text-muted);
    display: block !important;
}

.program-content-inner h4,
.program-content-inner div h4 {
    margin-top: 2.8rem !important;
    margin-bottom: 1.4rem !important;
    font-size: 1.3rem;
}

.program-content-inner ul,
.program-content-inner ol,
.program-content-inner div ul,
.program-content-inner div ol {
    margin-top: 1.5rem !important;
    margin-bottom: 3rem !important;
    padding-left: 2rem !important;
    display: block !important;
}

.program-content-inner li,
.program-content-inner div li {
    margin-bottom: 0.9rem !important;
    line-height: 1.8 !important;
    color: var(--text-muted);
}

.program-content-inner ul + p,
.program-content-inner ol + p,
.program-content-inner div ul + p,
.program-content-inner div ol + p,
.program-content-inner ul + h4,
.program-content-inner ol + h4,
.program-content-inner div ul + h4,
.program-content-inner div ol + h4 {
    margin-top: 2.5rem !important;
    padding-top: 0.5rem !important;
}

/* Comparison Tables (Elegant Dark style) */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.comparison-table th, .comparison-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    color: var(--text-muted);
}

.comparison-table th {
    background-color: rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.comparison-table tbody tr:hover {
    background-color: rgba(13, 130, 91, 0.1);
}

/* Blog / Media Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 3rem;
    margin-top: 3.5rem;
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.25);
}

.blog-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-green-bright);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.blog-card-title {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.read-more-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 2px;
}

.read-more-link:hover {
    color: var(--accent-green-bright);
    border-bottom-color: var(--accent-green-bright);
}

/* Contact Area */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: flex-start;
}

.contact-info-list {
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-green-bright);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-info-text h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.contact-info-text p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-form {
    background: var(--bg-card);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.95rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--text-light);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

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

.form-status {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(13, 130, 91, 0.15);
    color: var(--accent-green-bright);
    border-left: 4px solid var(--accent-green-light);
}

.form-status.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.15);
    color: #f87171;
    border-left: 4px solid #ef4444;
}

/* Footer Section */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-muted);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    font-size: 0.95rem;
}

.footer-top {
    padding: 5.5rem 0 3.5rem 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-column h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.8rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--accent-green-bright);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-green-bright) 0%, var(--accent-green-light) 100%);
    border-color: var(--accent-green-bright);
    transform: translateY(-2.5px);
}

.social-icon img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.social-icon:hover img {
    filter: none;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-input {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.85rem 1rem;
    border-radius: 3px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-btn {
    border: none;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--text-dark);
    padding: 0.85rem;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--accent-green-bright) 0%, var(--accent-green-light) 100%);
    color: var(--text-light);
}

.footer-bottom {
    padding: 2.2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.18); /* Premium gold line separator */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-green-bright);
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(3, 3, 3, 0.98);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 1.6rem 0;
    border-top: 2px solid var(--accent);
    box-shadow: 0 -10px 45px rgba(0, 0, 0, 0.7);
    transform: translateY(102%); /* Move completely off-screen based on actual height */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0); /* Slide into view */
}

.cookie-banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-btns {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.65rem 1.6rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--text-dark);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, var(--accent-green-bright) 0%, var(--accent-green-light) 100%);
    color: var(--text-light);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* Responsive / Mobile styles */
@media (max-width: 1100px) {
    .split-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 4rem !important;
        text-align: center;
    }
    
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        text-align: center;
        gap: 3rem !important;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .founder-quote {
        text-align: left;
        padding-left: 1.5rem;
    }
    
    .three-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary-dark);
        border-left: 1px solid rgba(212, 175, 55, 0.25);
        box-shadow: -10px 0 35px rgba(0,0,0,0.9);
        padding: 7.5rem 2.5rem 2rem 2.5rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    /* Close button on mobile positioned properly inside menu */
    .menu-close {
        display: block !important;
        position: absolute;
        top: 1.8rem;
        right: 2.2rem;
    }
    
    .menu-close svg {
        width: 28px;
        height: 28px;
        color: var(--accent);
    }
    .menu-close:hover svg {
        color: var(--accent-green-bright);
    }
    
    .menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.2rem;
        width: 100%;
    }
    
    .menu-link {
        font-size: 1.25rem;
        width: 100%;
        display: block;
        color: var(--text-light);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        text-align: center !important;
        padding: 2.2rem 1rem !important;
    }
    
    .footer-bottom-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        margin-top: 0.5rem;
    }
    
    .footer-bottom-links a {
        display: block !important;
        padding: 0.4rem 0;
        color: var(--text-muted) !important;
    }
    
    .footer-bottom-links a:hover {
        color: var(--accent-green-bright) !important;
    }
    
    .cookie-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }
    
    .cookie-btns {
        width: 100%;
        justify-content: center;
    }
    
    .prop-bar {
        padding: 2rem;
    }
    
    .prop-bullets {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-btns {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 1rem !important;
    }
    
    .hero-btns .btn {
        width: 100% !important;
        text-align: center;
    }

    .two-columns-text {
        column-count: 1 !important;
        column-gap: 0 !important;
        text-align: left !important;
    }

    .founder-two-cols {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Two Columns Utility */
.two-columns-text {
    column-count: 2;
    column-gap: 3rem;
    text-align: left;
}

.two-columns-text p {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 1.25rem;
}
