/* 
   XocoArte Theme - Navy Blue & Gold 
   Light/Elegant version
*/

:root {
    /* Color Palette */
    --primary-color: #D4AF37;
    /* Gold */
    --primary-dark: #B59020;
    --primary-light: #F3E5AB;
    /* Champagne/Light Gold */

    --secondary-color: #0A192F;
    /* Deep Navy */
    --secondary-light: #172A45;

    --bg-body: #FAFAF5;
    /* Cream White - Warm and elegant */
    --bg-white: #FFFFFF;
    --bg-light-grey: #F4F4F4;

    --text-main: #1A1A1A;
    --text-light: #666666;
    --text-white: #FFFFFF;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #DFBD69 0%, #D4AF37 50%, #B59020 100%);
    --gradient-navy: linear-gradient(135deg, #172A45 0%, #0A192F 100%);

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 15px 35px rgba(10, 25, 47, 0.1);
    --shadow-gold: 0 10px 20px rgba(212, 175, 55, 0.2);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-gold {
    color: var(--primary-color);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--secondary-color);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.btn-nav {
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--primary-color);
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-color: var(--bg-white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(243, 229, 171, 0.1) 100%);
    /* Light Gold Tint */
    z-index: 0;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    /* Reduced specific shape for placeholder */
    box-shadow: var(--shadow-gold);
    animation: float 6s ease-in-out infinite;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    animation: float 5s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary-color);
}

.badge-1 {
    top: 50px;
    right: -20px;
    animation-delay: 1s;
}

.badge-2 {
    bottom: 50px;
    left: -20px;
    animation-delay: 2s;
}

/* Services Flip Cards */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    justify-items: center;
}

.service-card-flip {
    background-color: transparent;
    width: 100%;
    max-width: 320px;
    /* Prevent overly wide cards */
    aspect-ratio: 4 / 5;
    min-height: auto;
    /* Let aspect ratio define height */
    perspective: 1000px;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.service-card-flip:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.service-card-front {
    background-color: var(--bg-white);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
    text-align: center;
}

.service-title-front {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
}

.service-card-back {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    position: relative;
}

/* Glass effect on back card */
.service-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.2), transparent 40%);
    pointer-events: none;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-title-back {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    font-size: 0.95rem;
    color: #E0E0E0;
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    font-size: 0.8rem;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-col {
    flex: 1;
}

.about-text-col {
    flex: 1;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 50%;
    /* Circle */
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-gold);
    border: 5px solid var(--bg-body);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: #050E1A;
    /* Darker than secondary */
    color: #FFFFFF;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #BBBBBB;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    color: #BBBBBB;
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.pulse-animation {
    animation: pulse-gold 2s infinite;
}

/* Responsive */

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .navbar-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image-wrapper {
        margin-bottom: 50px;
    }

    .experience-badge {
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: -40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 20px;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        height: auto;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-bg-overlay {
        width: 100%;
        height: 100%;
        clip-path: none;
        background: linear-gradient(180deg, rgba(243, 229, 171, 0.1) 0%, transparent 100%);
    }

    .hero-image-wrapper {
        max-width: 80%;
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .floating-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .badge-1 {
        top: 20px;
        right: -10px;
    }

    .badge-2 {
        bottom: 20px;
        left: -10px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Gallery mobile adjustment */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-auto-rows: 200px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .experience-badge {
        width: 130px;
        height: 130px;
        padding: 20px;
    }

    .exp-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.item-1,
    .gallery-item.item-4 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* CSS Aurora Gradient Animation */
.css-gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f0f4f8;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.8;
    animation: moveOrb 20s infinite alternate cubic-bezier(0.4, 0.0, 0.2, 1);
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    top: -10%;
    left: -10%;
    background: #72b9bb;
    animation-delay: 0s;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    bottom: -10%;
    right: -10%;
    background: #ffd1bd;
    animation-delay: -5s;
}

.orb-3 {
    width: 40vw;
    height: 40vw;
    top: 30%;
    left: 40%;
    background: #dbf4a4;
    animation-delay: -10s;
}

.orb-4 {
    width: 45vw;
    height: 45vw;
    bottom: 10%;
    left: 10%;
    background: #b5d9d9;
    animation-delay: -15s;
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    z-index: 1;
}

@keyframes moveOrb {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(50px, 50px) scale(1.1) rotate(20deg);
    }

    66% {
        transform: translate(-30px, 20px) scale(0.9) rotate(-10deg);
    }

    100% {
        transform: translate(20px, -40px) scale(1.05) rotate(5deg);
    }
}

/* Gallery Section Styles */
.gallery-section {
    background: linear-gradient(135deg, #172A45 0%, #0A192F 100%);
    padding: 80px 0;
    color: #FFFFFF;
}

.gallery-section .section-title {
    color: #FFFFFF;
}

.gallery-section .section-desc {
    color: #E0E0E0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}

@media (min-width: 768px) {
    .gallery-item.item-1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.item-4 {
        grid-column: span 2;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--primary-color);
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--primary-color);
}


/* Footer Logo */
.footer-brand-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

/* Schedule / Contact Section Styles */
.schedule-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    background-image: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
    color: var(--bg-white);
    position: relative;
}

.schedule-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.schedule-text-col {
    flex: 1;
    padding-top: 20px;
}

.schedule-desc {
    color: #E0E0E0;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.text-light {
    color: #FFFFFF;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.info-item h5 {
    font-family: 'Cinzel', serif;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-item p {
    color: #CCCCCC;
    font-size: 0.95rem;
}

/* Form Styles */
.schedule-form-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.schedule-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

input,
textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Fix date input styling */
input[type='date'] {
    width: 100%;
}

input[type='date']::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ml-2 {
    margin-left: 10px;
}

.form-note {
    font-size: 0.8rem;
    color: #888888;
    text-align: center;
    margin-top: 10px;
}

/* Option Buttons Styling */
.option-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.option-btn {
    cursor: pointer;
    position: relative;
    user-select: none;
}

.option-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.option-btn span {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #E0E0E0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.option-btn:hover span {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
}

.option-btn input:checked~span {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* Responsive Form */
@media (max-width: 768px) {
    .schedule-container {
        flex-direction: column;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .schedule-form-col {
        padding: 25px;
        width: 100%;
    }
}