/*
Theme Name: Ilumilo
Description: Illuminating Greatness - Premium interactive theme for Ilumilo agency
Version: 2.0
Author: Ilumilo
*/

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@300;400;600;700&display=swap');

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

:root {
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --dark: #1a1a1a;
    --dark-light: #2a2a2a;
    --white: #ffffff;
    --gray: #888888;
}

body {
    font-family: 'EB Garamond', serif;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    cursor: none;
    overflow-x: hidden;
}

/* Logo Styles - Fixed Sizing */
.header-logo-img,
.footer-logo-img,
.hero-logo-img {
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.header-logo-img {
    height: 55px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.header-logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
    transform: scale(1.05);
}

.footer-logo-img {
    height: 65px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.hero-logo-img {
    height: 180px;
    margin: 0 auto 25px auto;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { 
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1.2));
        transform: scale(1.02);
    }
}

/* Simplified Cursor System */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    box-shadow: 0 0 20px var(--gold);
}

/* The Signature Light Beam */
.light-beam {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1002;
}

.beam-line {
    position: absolute;
    background: linear-gradient(90deg, 
        var(--gold) 0%, 
        rgba(255, 215, 0, 0.6) 30%, 
        rgba(255, 215, 0, 0.2) 70%, 
        transparent 100%);
    height: 1px;
    transform-origin: left center;
    border-radius: 0.5px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Mobile Touch Interactions */
.touch-orb {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.mobile-beam {
    position: fixed;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--gold) 0%, 
        rgba(255, 215, 0, 0.8) 20%, 
        rgba(255, 215, 0, 0.3) 60%, 
        transparent 100%);
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transform-origin: left center;
    border-radius: 1px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* Clean Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 20px 40px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-brand {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(45deg, var(--gold), #FFA500, var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

.logo-text a {
    background: linear-gradient(45deg, var(--gold), #FFA500, var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.logo-beacon {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-capstone {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    animation: floatRotate 4s ease-in-out infinite;
    z-index: 5;
}

@keyframes floatRotate {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px) rotateY(0deg);
    }
    50% { 
        transform: translateX(-50%) translateY(-2px) rotateY(180deg);
    }
}

.pyramid-svg {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    animation: pyramidGlow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pyramid-svg:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
}

@keyframes pyramidGlow {
    0% { 
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
    }
    100% { 
        filter: drop-shadow(0 0 35px rgba(255, 215, 0, 1.2));
    }
}

/* Hamburger Menu */
.hamburger {
    position: absolute;
    right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1003;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.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, -6px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(42, 42, 42, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 120px;
    gap: 40px;
    transition: right 0.4s ease;
    z-index: 1002;
}

.menu-overlay.active {
    right: 0;
}

/* Mobile menu close button */
.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1003;
}

.mobile-menu-close span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transform-origin: center;
    transition: all 0.3s ease;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
    margin-bottom: -2px;
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

.menu-item {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(255, 215, 0, 0.3) 100%);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.menu-item:hover {
    color: var(--gold);
    transform: translateX(10px);
}

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

/* Menu backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
main {
    padding-top: 20px;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gold), var(--white), var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    color: var(--dark);
    text-decoration: none;
}

/* Services Section */
.services {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(42, 42, 42, 0.8) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.service-card p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--gold-dark);
    text-decoration: none;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.contact p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding: 60px 20px 20px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo-text {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-nav h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style: none;
}

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

.footer-nav ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    opacity: 0.7;
}

/* Contact Page Styles */
.contact-page {
    padding-top: 60px;
}

.contact-hero {
    text-align: center;
    padding: 60px 20px 60px;
}

.contact-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 40px 20px 100px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--gold);
    text-decoration: none;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: var(--white);
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    background: rgba(26, 26, 26, 0.95);
    color: var(--gold);
    cursor: pointer;
}

.form-group select option {
    background: rgba(26, 26, 26, 0.98);
    color: var(--white);
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-button {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Testimonials Page */
.testimonials-page {
    padding-top: 80px;
}

.testimonials-hero {
    text-align: center;
    padding: 100px 20px 60px;
}

.testimonials-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    color: var(--gold);
}

.testimonials-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    padding: 40px 20px 100px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.95;
}

.author-info h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

.author-info p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.service-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonials-cta {
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 215, 0, 0.05);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-content h2 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.stats-section {
    padding: 80px 20px;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Service Page Styles */
.service-page {
    padding-top: 60px;
}

.service-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(42, 42, 42, 0.8) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    color: var(--gold);
}

.service-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.service-overview {
    padding: 80px 20px;
}

/* Center service page overview content */
.overview-content {
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
}

.overview-content h2 {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.overview-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
}

.key-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    margin-top: 5px;
}

.benefit-item h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.benefit-item p {
    opacity: 0.9;
    line-height: 1.5;
}

.programs-section {
    padding: 80px 20px;
    background: rgba(255, 215, 0, 0.02);
}

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

.programs-container h2 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.program-header h3 {
    color: var(--gold);
    font-size: 1.4rem;
}

.program-type {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.program-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    margin-bottom: 20px;
}

.program-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    opacity: 0.9;
}

.program-features li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.program-timeline {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--gold);
    font-weight: 600;
}

.case-study-highlight {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(42, 42, 42, 0.8) 100%);
}

.case-study-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.case-study-container h2 {
    color: var(--gold);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.case-study-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 50px;
}

.case-study-card h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.case-study-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0.9;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

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

.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.result-label {
    opacity: 0.9;
    font-weight: 600;
}

.service-cta {
    padding: 80px 20px;
    text-align: center;
}

.cta-container h2 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Interactive Enhancements */
.interactive:hover .custom-cursor {
    transform: scale(1.3);
}

/* Responsive Breakpoints */

/* Tablet Responsive (768px - 1024px) */
@media (max-width: 1024px) {
    .header-logo-img {
        height: 32px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .hero-logo-img {
        height: 60px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .logo-brand {
        left: 20px;
        gap: 8px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .header-logo-img {
        height: 38px;
    }
    
    .hamburger {
        right: 20px;
    }
    
    /* Show close button on mobile */
    .mobile-menu-close {
        display: flex;
    }
    
    .menu-overlay {
        width: 100%;
        right: -100%;
    }
    
    .menu-backdrop.active {
        opacity: 0.8;
        backdrop-filter: blur(5px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-results {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-logo-img {
        height: 85px;
    }
    
    .hero-logo-img {
        height: 150px;
        margin-bottom: 20px;
    }
    
    body {
        cursor: auto;
    }
    
    .custom-cursor,
    .light-beam {
        display: none;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .header-logo-img {
        height: 45px;
    }
    
    .footer-logo-img {
        height: 105px;
    }
    
    .hero-logo-img {
        height: 200px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .case-study-results {
        grid-template-columns: 1fr;
    }
}

