 :root {
            --emerald-green: #054402;
            --emerald-dark: #054402;
            --emerald-light: #d1fae5;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #000000;

            --sdg-9-color: #ff6b35;
            --sdg-10-color: #dd1367;
            --gce-1-color: #2563eb;
            --gce-4-color: #7c3aed;
            --gce-7-color: #0d9488;

            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

            --animation-speed: 0.3s;
            --animation-easing: cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: 0.15s ease-out;
            --transition-normal: 0.25s ease-out;
        }

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Quicksand", sans-serif;
            background: var(--white);
            color: var(--gray-800);
            line-height: 1.6;
            font-size: 16px;
            overflow-x: hidden;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--emerald-green);
            color: var(--white);
            padding: 8px 16px;
            text-decoration: none;
            z-index: 9999;
            border-radius: 4px;
            font-weight: 500;
            transition: top var(--transition-fast);
        }

        .skip-link:focus {
            top: 6px;
        }

        *:focus {
            outline: 3px solid var(--emerald-green);
            outline-offset: 2px;
        }

        *:focus:not(:focus-visible) {
            outline: none;
        }

        *:focus-visible {
            outline: 3px solid var(--emerald-green);
            outline-offset: 2px;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--gray-200);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-family: "Corinthia", cursive;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gray-900);
            text-decoration: none;
            letter-spacing: -0.025em;
            transition: all var(--transition-fast);
        }

        .logo:hover {
            color: var(--emerald-green);
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 500;
            font-size: 0.875rem;
            transition: all var(--transition-fast);
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--emerald-green);
            background: var(--emerald-light);
            transform: translateY(-2px);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-600);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 6px;
            transition: all var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: var(--gray-100);
            color: var(--emerald-green);
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
            min-height: calc(100vh - 200px);
        }

        .hero {
            text-align: center;
            margin-bottom: 4rem;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--white) 0%, var(--emerald-light) 50%, var(--gray-50) 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(5, 68, 2, 0.1) 0%, transparent 70%);
            transform: rotate(-15deg);
            animation: float 8s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: "Corinthia", cursive;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--gray-900);
            letter-spacing: -0.025em;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--emerald-green), var(--emerald-dark));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.7;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 2rem;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--transition-normal);
            font-size: 1rem;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--emerald-green);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background: var(--emerald-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .btn-secondary {
            background: transparent;
            color: var(--emerald-green);
            border: 2px solid var(--emerald-green);
        }

        .btn-secondary:hover {
            background: var(--emerald-green);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

       .content-section {
            display: grid;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--emerald-green), var(--emerald-light));
            transform: scaleX(0);
            transition: transform var(--transition-normal);
        }

        .card:hover {
            border-color: var(--emerald-green);
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card h2, .card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--gray-900);
        }

        .card ul {
            list-style: none;
        }

        .card li {
            padding: 0.875rem 0;
            color: var(--gray-700);
            border-bottom: 1px solid var(--gray-100);
            position: relative;
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .card li:hover {
            color: var(--emerald-green);
            background: var(--emerald-light);
            border-radius: 8px;
            margin: 0 -0.5rem;
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }

        .card li:last-child {
            border-bottom: none;
        }

        .secondary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .secondary-cards {
        grid-template-columns: 1fr;
    }
}

      .academic-schedule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.academic-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.academic-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--emerald-green) 0%, var(--emerald-light) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-normal);
}

.academic-item:hover {
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--white) 100%);
    border-color: var(--emerald-green);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.academic-item:hover::before {
    transform: scaleY(1);
}

.subject-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.schedule-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.schedule-day {
    background: var(--emerald-green);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(5, 68, 2, 0.2);
    position: relative;
    overflow: hidden;
}

.schedule-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.academic-item:hover .schedule-day::before {
    left: 100%;
}

.schedule-time {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    border-radius: 20px;
    transition: all var(--transition-fast);
}

.schedule-time::before {
    content: '🕐';
    font-size: 0.85rem;
}

.academic-item:hover .schedule-time {
    background: var(--white);
    color: var(--emerald-green);
    font-weight: 600;
}

.academic-item:nth-child(odd) .schedule-day {
    background: linear-gradient(45deg, var(--emerald-green), #0a7c02);
}

.academic-item:nth-child(even) .schedule-day {
    background: linear-gradient(45deg, var(--emerald-dark), var(--emerald-green));
}

@media (max-width: 640px) {
    .academic-item {
        padding: 1rem;
    }

@media (max-width: 768px) { .academic-schedule { grid-template-columns: 1fr; } }

    .schedule-info {
        gap: 0.5rem;
    }

    .schedule-day {
        font-size: 0.7rem;
        padding: 0.25rem 0.625rem;
    }

    .schedule-time {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
}

   .shows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0.5rem 0;
}

.show-item {
    padding: 1rem 0.875rem;
    color: var(--gray-700);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    background: var(--gray-50);
    transition: all var(--transition-fast);
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-item:hover {
    color: var(--emerald-green);
    background: var(--emerald-light);
    border-color: var(--emerald-green);
    transform: translateY(-2px);
}

        .moods-grid {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .mood-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--gray-50);
            border: 2px solid var(--gray-200);
            border-radius: 16px;
            transition: all var(--transition-normal);
            cursor: pointer;
            min-width: 130px;
            position: relative;
            overflow: hidden;
        }

        .mood-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(5, 68, 2, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .mood-item:hover {
            border-color: var(--emerald-green);
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--shadow-lg);
            background: var(--emerald-light);
        }

        .mood-item:hover::before {
            left: 100%;
        }

        .mood-item.selected {
            border-color: var(--emerald-green);
            background: var(--emerald-light);
            transform: scale(1.1);
        }

        .mood-emoji {
            width: 50px;
            height: 50px;
            font-size: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform var(--transition-fast);
        }

        .mood-item:hover .mood-emoji {
            transform: scale(1.2) rotate(10deg);
        }

        .mood-text {
            font-size: 0.875rem;
            color: var(--gray-700);
            font-weight: 600;
            transition: color var(--transition-fast);
        }

        .mood-item:hover .mood-text {
            color: var(--emerald-green);
        }

        #mood-status {
            text-align: center;
            margin-top: 1rem;
            font-weight: 600;
            color: var(--emerald-green);
            font-size: 1rem;
            opacity: 0;
            transition: opacity var(--transition-normal);
        }

        #mood-status.show {
            opacity: 1;
        }

        .about-hero {
            background: linear-gradient(135deg, var(--emerald-light) 0%, var(--white) 100%);
            text-align: center;
            padding: 4rem 2rem;
            border-radius: 20px;
            margin-bottom: 3rem;
        }

        .page-content {
            background: var(--white);
            padding: 3rem;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-200);
        }

        .page-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            margin-bottom: 2rem;
            color: var(--gray-900);
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }

        .page-content h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4rem;
            height: 3px;
            background: var(--emerald-green);
            border-radius: 2px;
        }

        .page-content h2, .page-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2.5rem 0 1rem 0;
            color: var(--emerald-green);
        }

        .page-content p {
            margin-bottom: 1.5rem;
            color: var(--gray-700);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .quote-highlight {
            background: var(--emerald-light);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--emerald-green);
            font-style: italic;
            font-size: 1.125rem;
            margin: 2rem 0;
            position: relative;
        }

        .quote-highlight::before {
            content: '"';
            font-size: 4rem;
            color: var(--emerald-green);
            position: absolute;
            top: -1rem;
            left: 1rem;
            line-height: 1;
        }

        .sdg-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--emerald-light) 100%);
    position: relative;
    overflow: hidden;
}

.sdg-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5, 68, 2, 0.03) 0%, transparent 70%);
    animation: gentle-float 8s ease-in-out infinite;
}

.sdg-hero-title {
    font-family: "Corinthia", cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-dark));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    animation: slide-up 1s var(--animation-easing);
}

.sdg-hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 800px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    animation: slide-up 1s var(--animation-easing) 0.2s both;
}

.sdg-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.sdg-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.sdg-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    transition: all var(--animation-speed) var(--animation-easing);
    cursor: pointer;
    transform: translateY(0);
}

.sdg-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.sdg-card:focus {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.sdg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--card-accent), transparent);
}

.sdg-9 {
    --card-accent: var(--sdg-9-color);
}

.sdg-10 {
    --card-accent: var(--sdg-10-color);
}

.sdg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--card-accent);
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform var(--animation-speed) var(--animation-easing);
}

.sdg-card:hover .sdg-icon {
    transform: rotate(360deg) scale(1.1);
}

.sdg-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sdg-content-wrapper {
    flex: 1;
}

.sdg-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.sdg-description {
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.sdg-targets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sdg-targets li {
    position: relative;
    padding-left: 2rem;
    color: var(--gray-600);
    line-height: 1.6;
    transition: all var(--animation-speed) ease;
    cursor: pointer;
}

.sdg-targets li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--card-accent);
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform var(--animation-speed) ease;
}

.sdg-targets li:hover {
    color: var(--card-accent);
    padding-left: 2.5rem;
}

.sdg-targets li:hover::before {
    transform: translateX(0.5rem);
}

.gce-section {
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--white) 100%);
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.gce-section::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(5, 68, 2, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.gce-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gce-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    position: relative;
}

.gce-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gce-1-color), var(--gce-4-color), var(--gce-7-color));
    border-radius: 2px;
}

.gce-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.gce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.gce-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    transition: all var(--animation-speed) var(--animation-easing);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

content {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gce-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--animation-speed) var(--animation-easing);
}

.gce-card:hover::before,
.gce-card:focus::before {
    transform: scaleY(1);
}

.gce-card:hover,
.gce-card:focus {
    border-color: var(--gce-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gce-1 {
    --gce-accent: var(--gce-1-color);
}

.gce-4 {
    --gce-accent: var(--gce-4-color);
}

.gce-7 {
    --gce-accent: var(--gce-7-color);
}

.gce-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gce-accent);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all var(--animation-speed) var(--animation-easing);
    position: relative;
    overflow: hidden;
}

.gce-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--animation-speed) var(--animation-easing);
}

.gce-card:hover .gce-icon::before {
    left: 100%;
}

.gce-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.gce-content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gce-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.gce-card-description {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 0.95rem;
}

.sdg-cta {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--emerald-dark) 100%);
    color: var(--white);
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-xl);
}

.cta-content {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.cta-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

        .contact-hero {
            background: linear-gradient(135deg, var(--emerald-green) 0%, var(--emerald-dark) 100%);
            color: var(--white);
            text-align: center;
            padding: 4rem 2rem;
            border-radius: 20px;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 2rem;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--gray-50);
            border-radius: 12px;
            border: 1px solid var(--gray-200);
            transition: all var(--transition-normal);
        }

        .contact-item:hover {
            border-color: var(--emerald-green);
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
            background: var(--emerald-light);
        }

        .contact-icon {
            width: 3rem;
            height: 3rem;
            background: var(--emerald-green);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .contact-form {
            max-width: 500px;
            margin: 0 auto;
            background: var(--white);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-lg);
        }

        .contact-form fieldset {
            border: none;
            padding: 0;
            margin: 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--gray-700);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            background: var(--white);
            font-family: 'Quicksand', sans-serif;
            font-size: 1rem;
            color: var(--gray-900);
            transition: all var(--transition-normal);
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--emerald-green);
            box-shadow: 0 0 0 3px var(--emerald-light);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .success-message {
            background: var(--emerald-green);
            color: var(--white);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            display: none;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }

        .success-message.show {
            display: flex;
            animation: slideInDown 0.5s ease-out;
        }

        footer {
            text-align: center;
            padding: 3rem 2rem;
            color: var(--gray-500);
            font-size: 0.875rem;
            border-top: 1px solid var(--gray-200);
            background: var(--gray-50);
            margin-top: 4rem;
        }

        .page-transition {
            opacity: 1;
            display: block;
            transition: all var(--animation-speed) var(--animation-easing);
            transform: translateY(0);
        }

        .page-transition.active {
            display: block;
        }

        .page-transition:not(.active) {
            opacity: 0;
            transform: translateY(20px);
        }

        .hidden {
            display: none !important;
        }

        fieldset {
            border: none;
            padding: 0;
            margin: 0;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .shows-grid { grid-template-columns: 1fr; }
           .card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: visible;
    margin-bottom: 1rem;
}
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 4rem;
                left: -100%;
                width: 100%;
                height: calc(100vh - 4rem);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
                transition: left var(--transition-normal);
                border-top: 1px solid var(--gray-200);
                z-index: 999;
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu-toggle {
                display: block;
            }

            nav {
                padding: 0 1rem;
            }

            .hero {
                padding: 3rem 1rem;
                margin-bottom: 3rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            main {
                padding: 2rem 1rem;
            }

            .page-content {
                padding: 2rem 1.5rem;
            }

            .contact-form {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .moods-grid {
                gap: 1rem;
            }

            .mood-item {
                min-width: 110px;
                padding: 1rem;
            }

            .card {
                padding: 1.5rem;
            }

            .contact-form {
                padding: 1.5rem;
                margin: 0 0.5rem;
            }
        }

        @media (prefers-contrast: high) {
            .card, .mood-item, .contact-item {
                border: 2px solid var(--gray-900);
            }

            .card:hover, .mood-item:hover {
                border-color: var(--emerald-green);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .card:hover,
            .mood-item:hover,
            .btn:hover {
                transform: none;
            }
        }
        .error-message {
            color: red;
            font-size: 0.85em;
            display: none;
            margin-top: 4px;
        }
        .invalid {
            border: 1px solid red;
        }
        #form-feedback {
            margin-top: 15px;
            padding: 10px;
            border-radius: 6px;
            font-weight: bold;
            text-align: center;
        }
        .success-toast {
            background: #d4edda;
            color: #155724;
        }
        .error-toast {
            background: #f8d7da;
            color: #721c24;
        }
        .info-toast {
            background: #fff3cd;
            color: #856404;
        }
 
            .services-hero {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--emerald-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.services-hero h1 {
    font-family: "Corinthia", cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.services-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Services content container */
.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Loading spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--gray-600);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--emerald-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error message styling */
.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.error-message p {
    margin: 0;
    font-weight: 500;
}

/* Services info section */
.services-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--emerald-light);
    border-radius: 16px;
    border: 1px solid var(--emerald-green);
}

.services-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

.services-meta {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-style: italic;
}

/* Service category styling */
.service-category {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--emerald-green);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 3px;
    background: var(--emerald-green);
    border-radius: 2px;
}

/* Products grid layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual product card */
.product-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.product-card:hover {
    border-color: var(--emerald-green);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-green), var(--emerald-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.product-card:hover::before {
    transform: scaleX(1);
}

/* Product image container */
.product-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Product information section */
.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-description {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Product pricing section */
.product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-green);
    transition: all var(--transition-fast);
}

/* Price update animation */
.price-updated {
    background: linear-gradient(45deg, var(--emerald-light), transparent);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    animation: priceFlash 2s ease-out;
}

@keyframes priceFlash {
    0% {
        background: var(--emerald-green);
        color: var(--white);
        transform: scale(1.1);
    }
    50% {
        background: var(--emerald-light);
        transform: scale(1.05);
    }
    100% {
        background: transparent;
        transform: scale(1);
    }
}

/* Service selection button */
.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-width: auto;
}

/* Services controls section */
.services-controls {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.price-info {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Price update notification */
.price-notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: var(--emerald-green);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    animation: slideInRight 0.5s ease-out;
    border: 2px solid var(--emerald-dark);
}

.price-notification p {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Form grid for contact form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: var(--gray-900);
    transition: all var(--transition-normal);
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--emerald-green);
    box-shadow: 0 0 0 3px var(--emerald-light);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Stock status indicators */
.out-of-stock {
    opacity: 0.6;
    position: relative;
}

.out-of-stock::after {
    content: 'Out of Stock';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Responsive design for services */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .services-hero {
        padding: 3rem 1rem;
    }
    
    .services-content {
        padding: 0 1rem;
    }
    
    .price-notification {
        right: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .product-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .product-pricing {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .services-controls {
        padding: 1.5rem 1rem;
    }
    
    .product-image-container {
        height: 200px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .product-card:hover .product-image,
    .spinner,
    .price-updated {
        animation: none;
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .product-card {
        border: 3px solid var(--gray-900);
    }
    
    .product-card:hover {
        border-color: var(--emerald-green);
        background: var(--emerald-light);
    }
}