:root {
    --gold-primary: #e7b65c;
    --gold-dark: #b88a38;
    --bg-dark: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-white: #ffffff;
    --text-gray: #a1a1a1;
}

/* --- Section Layout & Background --- */
.fresh-contact-section {
    position: relative;
    background-color: var(--bg-dark);
    padding: 120px 0;
    overflow: hidden;
    font-family: 'Outfit', sans-serif; /* Assuming you use Outfit or Inter */
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Ambient Glows (The "Magic" Background) */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.glow-1 {
    background: var(--gold-primary);
    top: -200px;
    left: -200px;
    animation: floatGlow 10s infinite alternate ease-in-out;
}

.glow-2 {
    background: #ffffff;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    opacity: 0.05;
    animation: floatGlow 12s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* --- Typography Left Side --- */
.cine-tagline {
    font-size: 0.9rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.cine-headline {
    font-size: 3.5rem;
    color: var(--text-white);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
}

.highlight-gold {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold-primary);
    position: relative;
    font-style: italic;
}

.cine-subtext {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 450px;
}

/* Info Cards */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 12px;
    width: fit-content;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--gold-primary);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(231, 182, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.info-card label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-gray);
    margin: 0;
}

.info-card span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

/* --- Glass Form Card --- */
.glass-form-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

    /* Subtle shine on card */
    .glass-form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -50%;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.03), transparent);
        transform: skewX(-25deg);
        pointer-events: none;
    }

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .form-header h3 {
        color: #fff;
        margin: 0;
        font-size: 1.5rem;
    }

.gold-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
}

/* --- Input Styling (Floating Label) --- */
.input-group-cine {
    position: relative;
    margin-bottom: 10px;
}

.cs-form_field {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 15px 15px 5px; /* Spacing for floating label */
    font-size: 1rem;
    color: #fff;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

/* Remove Select default arrow and style it */
select.cs-form_field {
    color: #fff;
    cursor: pointer;
    appearance: none;
}
    /* Select options background */
    select.cs-form_field option {
        background: #141414;
        color: #fff;
    }

.cs-form_field:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
}

/* Floating Label Logic */
.floating-label {
    position: absolute;
    top: 15px;
    left: 5px;
    font-size: 0.95rem;
    color: var(--text-gray);
    pointer-events: none;
    transition: 0.3s ease all;
}

.cs-form_field:focus ~ .floating-label,
.cs-form_field:not(:placeholder-shown) ~ .floating-label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--gold-primary);
}


/* Focus Border Animation */
.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-primary);
    transition: 0.4s;
}


.input-icon {
    position: absolute;
    right: 15px;
    top: 18px;
    color: var(--gold-primary);
    pointer-events: none;
}

/* --- Submit Button --- */
.btn-fresh-gold {
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold-primary);
    padding: 16px;
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold-primary);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-fresh-gold:hover {
    color: #000;
    box-shadow: 0 0 20px rgba(231, 182, 92, 0.4);
}

    .btn-fresh-gold:hover .btn-layer {
        width: 100%;
    }

/* --- Error Messages --- */
.error-text {
    color: #ff5f5f;
    font-size: 0.75rem;
    margin-top: 4px;
    display: block;
    height: 16px; /* Reserve space */
}

/* Success Alert */
.alert-success-cine {
    background: rgba(231, 182, 92, 0.15);
    border-left: 3px solid var(--gold-primary);
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .fresh-contact-section {
        padding: 80px 0;
    }

    .cine-headline {
        font-size: 2.5rem;
    }

    .glass-form-card {
        padding: 30px 20px;
    }

    .glow-1, .glow-2 {
        opacity: 0.1;
    }
}
/* --- Flatpickr Fixes --- */

/* 1. Force Calendar to be on top of everything */
.flatpickr-calendar {
    z-index: 9999 !important; /* Glass card se upar */
    background: #1a1a1a !important;
    border: 1px solid var(--gold-primary) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
}

/* 2. Style the Date/Time Text */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day:hover,
.flatpickr-day:focus {
    background: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
    color: #000 !important;
    font-weight: bold;
}

/* 3. Time Picker Input Color */
.flatpickr-time input {
    color: #fff !important;
}

.flatpickr-time .flatpickr-am-pm {
    color: #fff !important;
}


/* Update the .info-card class to support anchor tags */
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 12px;
    width: fit-content;
    transition: all 0.3s ease;
    /* NEW: Remove link default styles */
    text-decoration: none;
    cursor: pointer;
    color: inherit; /* Inherit white color */
}

    /* Hover Effect: Glow + Slide */
    .info-card:hover {
        transform: translateX(10px);
        border-color: var(--gold-primary);
        background: rgba(231, 182, 92, 0.05); /* Slight gold tint */
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    /* Ensure text colors remain correct inside the link */
    .info-card label {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        color: var(--text-gray);
        margin: 0;
        cursor: pointer;
    }

    .info-card span {
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
    }