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

html {
    scroll-behavior: smooth;
}

/* Performance: static background, no animations - much smoother scrolling */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: 
        linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 25%, #f0f4f8 50%, #e8ecf1 75%, #fafbfc 100%),
        radial-gradient(circle at 0% 0%, rgba(201, 169, 97, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(138, 180, 248, 0.1) 0%, transparent 45%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    color: #1d1d1f;
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
    contain: layout style;
}

/* Reduced motion: disable animations for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Optimized: no blur (blur is very expensive), simple static overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(201, 169, 97, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(138, 180, 248, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
}

/* Removed body::after - was blur(100px) causing major lag */

/* Removed main::before particles - animation was expensive */

body > * {
    position: relative;
    z-index: 1;
}

main {
    position: relative;
    z-index: 1;
}

/* Optimized: reduced backdrop-filter blur (20px->12px) for smoother scroll */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .header-container {
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.logo:hover {
    transform: translateX(5px);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease;
    position: relative;
    background: transparent;
    overflow: visible;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo-icon img {
    width: 180px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    background: transparent;
}

.logo-icon:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}

header.scrolled .logo-icon img {
    width: 160px;
}

/* Logo text removed - using image logo instead */
.logo-text {
    display: none;
}

nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 14px 30px;
    text-decoration: none;
    color: rgba(29, 29, 31, 0.9);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    font-size: 17px;
    background: transparent;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.nav-link::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;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(201, 169, 97, 0.12);
    color: #1d1d1f;
    transform: translateY(-1px);
}

.nav-link.active {
    background: rgba(201, 169, 97, 0.15);
    color: #1d1d1f;
    font-weight: 600;
}

main {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 30px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.08),
            0 0 30px rgba(201, 169, 97, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 70px 60px;
    border-radius: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.container:hover {
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 60px rgba(201, 169, 97, 0.3),
        0 0 100px rgba(201, 169, 97, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    transform: translateY(-6px) scale(1.01);
}

.container:active {
    transform: translateY(-2px) scale(0.99);
    animation: cardClick 0.3s ease;
}

h2 {
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
    color: #1d1d1f;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #1d1d1f, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

/* Form Styles */
.form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    max-width: 850px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.form-container:hover {
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 60px rgba(201, 169, 97, 0.3),
        0 0 100px rgba(201, 169, 97, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    transform: translateY(-6px);
}

.important-notice {
    background: rgba(201, 169, 97, 0.15);
    padding: 20px 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15);
}

.important-notice p {
    margin: 0;
    color: #1d1d1f;
    font-size: 15px;
    line-height: 1.6;
}

.important-notice strong {
    color: #8b6f3d;
    font-weight: 600;
}

.form-title {
    font-size: 44px;
    text-align: center;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
    letter-spacing: -1px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #777;
    font-size: 16px;
    font-weight: 400;
}

.form-section {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.form-section:nth-child(1) { animation-delay: 0.1s; }
.form-section:nth-child(2) { animation-delay: 0.2s; }
.form-section:nth-child(3) { animation-delay: 0.3s; }
.form-section:nth-child(4) { animation-delay: 0.4s; }

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c2c2c;
    border-bottom: 2px solid #c9a961;
    padding-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: #c9a961;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1d1d1f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a961;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 0 0 4px rgba(201, 169, 97, 0.15),
        0 8px 25px rgba(201, 169, 97, 0.2),
        0 0 30px rgba(201, 169, 97, 0.1);
    transform: translateY(-2px) scale(1.01);
}

/* Time slot styling */
.form-group select option:disabled {
    color: #c62828 !important;
    background-color: #ffebee !important;
    font-style: italic;
}

.form-group select option[style*="color: #c62828"] {
    color: #c62828 !important;
    background-color: #ffebee !important;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d4c4a0;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

.info-text {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a961, #a0854a);
    color: #fff !important;
    padding: 18px 45px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    font-weight: 600;
    box-shadow: 
        0 8px 25px rgba(201, 169, 97, 0.4),
        0 0 30px rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4b870, #b8945a);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(201, 169, 97, 0.5),
        0 0 50px rgba(201, 169, 97, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

.btn-submit {
    width: 100%;
    margin-top: 30px;
    padding: 18px;
    font-size: 18px;
}

/* Preparation Section */
.preparation-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 850px;
    margin: 40px auto;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.preparation-section:hover {
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

.preparation-section h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 600;
}

.preparation-section ul {
    list-style: none;
    padding-left: 0;
}

.preparation-section li {
    margin-bottom: 18px;
    color: #2c2c2c;
    padding-left: 28px;
    position: relative;
    line-height: 1.8;
    transition: transform 0.2s ease;
}

.preparation-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c9a961;
    font-size: 24px;
    line-height: 1.2;
}

.preparation-section li:hover {
    transform: translateX(5px);
    color: #1a1a1a;
}

.note-text {
    font-size: 14px;
    color: #888;
    margin-top: 25px;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
}

/* Success Page */
.success-container {
    background-color: #fff;
    padding: 70px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 650px;
    margin: 50px auto;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #45a049);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 55px;
    color: #fff;
    animation: scaleIn 0.5s ease-out 0.3s both;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 600;
}

.success-message {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.9;
}

.back-link {
    display: inline-block;
    margin-top: 25px;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 6px;
}

.back-link:hover {
    color: #c9a961;
    background-color: #faf9f6;
    transform: translateX(-5px);
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: rgba(29, 29, 31, 0.6);
    margin-top: 100px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Error Messages */
.error {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 8px;
}

.error-container {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #c62828;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #c62828;
    animation: shake 0.5s ease-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-container li {
    margin-bottom: 8px;
}

.error-container li:last-child {
    margin-bottom: 0;
}

/* Modern Calendar and Time Picker Styles - Minimalist Apple Design */
/* Flatpickr Input Styling */
input[data-input] {
    position: relative;
    cursor: pointer;
    padding-right: 50px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 22px 22px !important;
    font-size: 16px !important;
    color: #1d1d1f !important;
    font-weight: 500;
}

input[type="date"] {
    position: relative;
    cursor: pointer;
    padding-right: 50px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 22px 22px !important;
    font-size: 16px !important;
    color: #1d1d1f !important;
    font-weight: 500;
}

/* Format: DD/MM/YYYY - reorder fields */
input[type="date"]::-webkit-datetime-edit {
    display: flex;
    flex-direction: row;
}

input[type="date"]::-webkit-datetime-edit-day-field {
    order: 1;
    min-width: 35px;
}

input[type="date"]::-webkit-datetime-edit-month-field {
    order: 2;
    min-width: 40px;
}

input[type="date"]::-webkit-datetime-edit-year-field {
    order: 3;
    min-width: 50px;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: #1d1d1f;
    padding: 0 4px;
    font-weight: 500;
    order: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    right: 18px;
    width: 22px;
    height: 22px;
    z-index: 1;
}

input[type="date"]::-webkit-datetime-edit-month-field:focus,
input[type="date"]::-webkit-datetime-edit-day-field:focus,
input[type="date"]::-webkit-datetime-edit-year-field:focus {
    background-color: rgba(201, 169, 97, 0.15);
    border-radius: 6px;
    color: #1d1d1f;
    outline: none;
}

input[type="date"]:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") !important;
}

/* Modern Calendar Popup Styling */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* Style the calendar popup (limited browser support) */
input[type="date"]::-webkit-calendar-picker-indicator::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* Modern Select Styling for Time - Minimalist Design */
.form-group select {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 22px 22px !important;
    padding-right: 50px !important;
    cursor: pointer;
    font-weight: 500;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.form-group select option {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.98);
    color: #1d1d1f;
    border-radius: 0;
    margin: 2px 0;
    font-weight: 500;
}

.form-group select option:hover {
    background: rgba(201, 169, 97, 0.12);
}

.form-group select option:checked {
    background: rgba(201, 169, 97, 0.15);
    color: #1d1d1f;
    font-weight: 600;
}

/* Modern Info Cards - Apple Style */
/* Optimized: no blur in animation, simpler backdrop-filter */
.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 0;
    text-align: center;
    opacity: 1;
}

.emergency-card {
    opacity: 1;
}

/* Base active state removed - using specific classes instead */

/* Elegant click animations - Apple style */
.info-card:active {
    transform: scale(0.97);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.15),
        0 0 100px rgba(201, 169, 97, 0.3),
        0 0 140px rgba(201, 169, 97, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.95) inset,
        0 10px 40px rgba(138, 180, 248, 0.12),
        inset 0 2px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(201, 169, 97, 0.5);
    filter: brightness(1.08);
}

.modern-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.info-card h3 {
    font-size: 26px;
    margin-bottom: 0;
    color: #1d1d1f;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    padding-bottom: 20px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.85), rgba(160, 133, 74, 0.75));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
}

.info-card:hover h3 {
    transform: scale(1.02);
}

.info-card p {
    color: #2c2c2c;
    line-height: 1.9;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    margin-bottom: 0;
    text-align: center;
}

.info-card a:hover {
    text-decoration: underline;
}

.modern-link {
    color: rgba(201, 169, 97, 0.85);
    text-decoration: none;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.modern-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.8), rgba(160, 133, 74, 0.7));
    transition: width 0.3s ease;
}

.modern-link:hover::after {
    width: 100%;
}

.modern-link:hover {
    color: rgba(160, 133, 74, 0.9);
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.2);
}

/* Emergency Card - Enhanced with more color and better animations */
.info-card.emergency-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 3px solid rgba(201, 169, 97, 0.6);
    box-shadow: 
        0 25px 70px rgba(201, 169, 97, 0.25),
        0 0 60px rgba(201, 169, 97, 0.2),
        0 0 100px rgba(201, 169, 97, 0.1),
        inset 0 0 40px rgba(201, 169, 97, 0.08);
    position: relative;
    overflow: hidden;
    animation: emergencyGlow 3s ease-in-out infinite;
}

@keyframes emergencyGlow {
    0%, 100% {
        box-shadow: 
            0 25px 70px rgba(201, 169, 97, 0.25),
            0 0 60px rgba(201, 169, 97, 0.2),
            0 0 100px rgba(201, 169, 97, 0.1),
            inset 0 0 40px rgba(201, 169, 97, 0.08);
        border-color: rgba(201, 169, 97, 0.6);
    }
    50% {
        box-shadow: 
            0 25px 70px rgba(201, 169, 97, 0.35),
            0 0 80px rgba(201, 169, 97, 0.3),
            0 0 130px rgba(201, 169, 97, 0.15),
            inset 0 0 50px rgba(201, 169, 97, 0.12);
        border-color: rgba(201, 169, 97, 0.8);
    }
}

.info-card.emergency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        rgba(201, 169, 97, 0.8), 
        rgba(212, 175, 55, 0.9), 
        rgba(201, 169, 97, 0.8),
        rgba(212, 175, 55, 0.9),
        rgba(201, 169, 97, 0.8));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.info-card.emergency-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.info-card.emergency-card h3 {
    border-bottom: 3px solid rgba(201, 169, 97, 0.6);
    color: rgba(139, 111, 61, 0.95);
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.9), rgba(160, 133, 74, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.info-card.emergency-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(201, 169, 97, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    border-color: rgba(201, 169, 97, 0.7);
}

/* Home Cards - Modern Apple Style */
.home-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.home-card:hover::before {
    left: 100%;
}

.home-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    border-color: rgba(201, 169, 97, 0.5);
}

.home-card:active {
    transform: translateY(-4px) scale(0.98);
    animation: cardClick 0.3s ease;
}

/* Responsive Design - Comprehensive for all devices */

/* Tablet and Small Laptop (768px - 1024px) */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
        height: 85px;
    }

    header.scrolled .header-container {
        height: 75px;
    }

    .logo-icon img {
        width: 140px;
    }

    header.scrolled .logo-icon img {
        width: 120px;
    }
    
    main {
        padding: 0 20px;
    }
    
    .container {
        padding: 40px 30px;
    }

    /* Hero section adjustments */
    .hero-section {
        padding: 70px 25px 90px !important;
    }

    .hero-title {
        font-size: 64px !important;
        line-height: 1.3 !important;
        padding-bottom: 10px !important;
    }

    .hero-title span {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.4 !important;
        padding-bottom: 8px !important;
        overflow: visible !important;
    }

    .hero-description {
        font-size: 19px !important;
    }
}

/* Mobile and Tablet Portrait (480px - 768px) */
@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }

    header.scrolled {
        padding: 10px 0;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
        padding: 0 20px;
        height: 75px;
    }

    header.scrolled .header-container {
        height: 70px;
    }
    
    .logo {
        gap: 12px;
    }
    
    .logo-icon img {
        width: 120px;
    }

    header.scrolled .logo-icon img {
        width: 100px;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px;
    }
    
    .nav-link {
        padding: 10px 18px;
        font-size: 15px;
    }
    
    main {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .container {
        padding: 30px 20px;
    }
    
    h2 {
        font-size: 32px;
    }

    /* Hero section mobile */
    .hero-section {
        padding: 60px 20px 80px !important;
    }

    .hero-title {
        font-size: 42px !important;
        letter-spacing: -1.5px !important;
        margin-bottom: 25px !important;
        line-height: 1.3 !important;
        padding-bottom: 8px !important;
    }

    .hero-title span {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        display: block !important;
        line-height: 1.4 !important;
        padding-bottom: 6px !important;
        overflow: visible !important;
    }

    .hero-description {
        font-size: 17px !important;
        margin-bottom: 35px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .hero-buttons a {
        width: 100% !important;
        padding: 16px 35px !important;
        font-size: 16px !important;
    }
    
    .form-container,
    .preparation-section {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 13px;
    }
    
    /* Grid layout responsive - stack cards on mobile */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-primary {
        padding: 16px 35px;
        font-size: 16px;
        width: 100%;
    }
    
    .btn-submit {
        padding: 16px;
    }

    .info-card,
    .home-card {
        grid-column: 1 / -1 !important;
        padding: 30px 20px;
    }
    
    .preparation-section {
        padding: 30px 20px;
    }
    
    .preparation-section h3 {
        font-size: 22px;
    }
    
    .success-container {
        padding: 50px 30px;
    }
    
    .success-title {
        font-size: 28px;
    }
    
    .success-message {
        font-size: 16px;
    }

    /* Flatpickr tablet - keep consistent design */
    .flatpickr-calendar {
        min-width: 320px !important;
        max-width: 340px !important;
        padding: 18px 14px !important;
    }

    .flatpickr-day {
        height: 38px !important;
        line-height: 38px !important;
        font-size: 13px !important;
        margin: 0.5px !important;
    }

    .flatpickr-weekday {
        font-size: 10px !important;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .logo {
        gap: 12px;
    }
    
    .logo-icon {
        height: 60px;
    }
    
    .logo-icon img {
        max-width: 180px;
    }
    
    /* Logo text removed - using image logo instead */
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        width: 100%;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    main {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .container {
        padding: 30px 20px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .form-container,
    .preparation-section {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 13px;
    }
    
    /* Grid layout responsive - stack cards on mobile */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-primary {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .btn-submit {
        padding: 16px;
    }

    .info-card,
    .home-card {
        grid-column: 1 / -1 !important;
        padding: 30px 20px;
    }
    
    .preparation-section {
        padding: 30px 20px;
    }
    
    .preparation-section h3 {
        font-size: 22px;
    }
    
    .success-container {
        padding: 50px 30px;
    }
    
    .success-title {
        font-size: 28px;
    }
    
    .success-message {
        font-size: 16px;
    }
}

/* Hero Section Responsive Classes */
.hero-section {
    padding: 80px 30px 100px;
    position: relative;
}

/* Optimized: static gradient, no blur/animation */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.hero-title {
    font-size: 72px;
    letter-spacing: -3px;
}

.hero-description {
    font-size: 20px;
}

.hero-buttons {
    gap: 20px;
}

.btn-secondary-hero {
    padding: 18px 45px;
    font-size: 18px;
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    header {
        padding: 10px 0;
    }

    header.scrolled {
        padding: 8px 0;
    }

    .header-container {
        padding: 0 15px;
        height: 70px;
        flex-wrap: wrap;
    }

    header.scrolled .header-container {
        height: 65px;
    }
    
    .logo-icon img {
        width: 100px;
    }

    header.scrolled .logo-icon img {
        width: 90px;
    }
    
    nav {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 5px;
        margin-top: 5px;
    }
    
    .nav-link {
        padding: 8px 14px;
        font-size: 14px;
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    
    main {
        margin: 20px auto;
        padding: 0 10px;
    }
    
    .container {
        padding: 25px 15px;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    h2 {
        font-size: 24px;
    }

    /* Hero section small mobile */
    .hero-section {
        padding: 50px 15px 70px !important;
    }

    .hero-title {
        font-size: 32px !important;
        letter-spacing: -1px !important;
        margin-bottom: 20px !important;
        line-height: 1.4 !important;
        padding-bottom: 6px !important;
    }

    .hero-title span {
        display: block !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.5 !important;
        padding-bottom: 5px !important;
        overflow: visible !important;
    }

    .hero-description {
        font-size: 15px !important;
        margin-bottom: 25px !important;
        line-height: 1.6 !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .hero-buttons a {
        width: 100% !important;
        padding: 14px 25px !important;
        font-size: 15px !important;
    }
    
    .home-card h3 {
        font-size: 20px;
    }
    
    .info-card h3 {
        font-size: 20px;
    }

    .info-card {
        padding: 25px 15px !important;
    }

    /* Flatpickr small mobile - keep consistent but slightly smaller */
    .flatpickr-calendar {
        min-width: 310px !important;
        max-width: 330px !important;
        padding: 15px 10px !important;
        border-radius: 18px !important;
        /* Don't force positioning - let Flatpickr handle it */
    }

    .flatpickr-day {
        height: 36px !important;
        line-height: 36px !important;
        font-size: 12px !important;
        margin: 0.5px !important;
    }

    .flatpickr-month {
        font-size: 14px !important;
    }

    .flatpickr-weekday {
        font-size: 10px !important;
        letter-spacing: 0.1px !important;
    }
}

/* Large Desktop and TV (1440px+) */
@media (min-width: 1440px) {
    .header-container {
        max-width: 1600px;
    }

    main {
        max-width: 1400px;
    }

    .hero-section {
        max-width: 1600px !important;
    }

    .hero-title {
        font-size: 110px !important;
        line-height: 1.3 !important;
        padding-bottom: 15px !important;
    }

    .hero-title span {
        line-height: 1.4 !important;
        padding-bottom: 12px !important;
        overflow: visible !important;
    }

    .hero-description {
        font-size: 26px !important;
        max-width: 850px !important;
    }
}

/* Ultra-wide and TV (1920px+) */
@media (min-width: 1920px) {
    .header-container {
        max-width: 1800px;
    }

    main {
        max-width: 1600px;
    }

    .hero-section {
        max-width: 1800px !important;
        padding: 150px 30px 200px !important;
    }

    .hero-title {
        font-size: 120px !important;
        line-height: 1.3 !important;
        padding-bottom: 18px !important;
    }

    .hero-title span {
        line-height: 1.4 !important;
        padding-bottom: 15px !important;
        overflow: visible !important;
    }

    .hero-description {
        font-size: 28px !important;
        max-width: 900px !important;
    }

    .hero-buttons a {
        padding: 22px 55px !important;
        font-size: 20px !important;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Modern Flatpickr Calendar Styling - Apple-like Design */
.flatpickr-calendar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: saturate(180%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 20px !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 0 40px rgba(201, 169, 97, 0.1) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    padding: 20px 14px !important;
    animation: fadeInScale 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    /* Prevent design changes on different devices - but allow normal positioning */
    min-width: 320px !important;
    max-width: 340px !important;
    width: auto !important;
    z-index: 9999 !important;
    /* Ensure calendar is clickable */
    pointer-events: auto !important;
    /* Ensure all 7 days fit */
    box-sizing: border-box !important;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.flatpickr-months {
    padding: 0 0 15px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    margin-bottom: 15px !important;
}

.flatpickr-month {
    color: #1d1d1f !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    height: 40px !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #1d1d1f !important;
    fill: #1d1d1f !important;
    padding: 8px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: rgba(201, 169, 97, 0.15) !important;
    color: #c9a961 !important;
    fill: #c9a961 !important;
}

.flatpickr-current-month {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    /* Prevent text changes on different devices */
    text-transform: capitalize !important;
}

/* Ensure consistent date format display */
.flatpickr-input {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 16px !important;
    letter-spacing: 0.3px !important;
}

/* Prevent browser from changing input format */
input[data-input] {
    -webkit-appearance: none !important;
    -moz-appearance: textfield !important;
    appearance: none !important;
}

.flatpickr-weekdays {
    background: transparent !important;
    border: none !important;
    margin-bottom: 10px !important;
    display: flex !important;
    width: 100% !important;
    box-sizing: border-box !important;
    justify-content: space-between !important;
    gap: 0 !important;
}

.flatpickr-weekday {
    color: #888 !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2px !important;
    padding: 0 1px !important;
    width: calc(100% / 7) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    text-align: center !important;
    flex: 0 0 calc(100% / 7) !important;
}

.flatpickr-days {
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
    justify-content: space-between !important;
    gap: 0 !important;
}

.flatpickr-day {
    border-radius: 10px !important;
    border: none !important;
    color: #1d1d1f !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    height: 40px !important;
    line-height: 40px !important;
    margin: 0.5px !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    /* Ensure days are clickable */
    cursor: pointer !important;
    pointer-events: auto !important;
    width: calc((100% - 7px) / 7) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    flex: 0 0 calc((100% - 7px) / 7) !important;
    text-align: center !important;
}

.flatpickr-day:hover {
    background: rgba(201, 169, 97, 0.2) !important;
    border: none !important;
    transform: scale(1.05) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: linear-gradient(135deg, #c9a961, #a0854a) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 
        0 4px 12px rgba(201, 169, 97, 0.4),
        0 0 20px rgba(201, 169, 97, 0.2) !important;
    font-weight: 600 !important;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: linear-gradient(135deg, #a0854a, #8a6f3f) !important;
    transform: scale(1.05) !important;
}

.flatpickr-day.today {
    border: 2px solid #c9a961 !important;
    background: rgba(201, 169, 97, 0.1) !important;
    font-weight: 600 !important;
}

.flatpickr-day.today:hover {
    background: rgba(201, 169, 97, 0.25) !important;
}

/* Available days (with open slots) - green highlight */
.flatpickr-day.fp-day-available {
    background-color: rgba(40, 167, 69, 0.25) !important;
    color: #1d1d1f !important;
}
.flatpickr-day.fp-day-available:hover {
    background-color: rgba(40, 167, 69, 0.4) !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #ccc !important;
    opacity: 0.4 !important;
}

.flatpickr-day.flatpickr-disabled:hover {
    background: transparent !important;
    cursor: not-allowed !important;
}

.flatpickr-time {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding-top: 15px !important;
    margin-top: 15px !important;
}

.flatpickr-time input {
    border-radius: 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 8px 12px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus {
    border-color: #c9a961 !important;
    background: rgba(201, 169, 97, 0.1) !important;
    outline: none !important;
}

/* Flatpickr input focus state */
input[data-input]:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") !important;
}

/* Blocked days in Flatpickr calendar - red styling */
.flatpickr-day.flatpickr-disabled {
    background-color: #ffebee !important;
    color: #c62828 !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
}

.flatpickr-day.flatpickr-disabled:hover {
    background-color: #ffcdd2 !important;
    opacity: 0.7 !important;
}

/* Contact email overflow fix - long emails stay in container */
.info-card.contact-card p,
.info-card.contact-card a {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

/* Buttons min 44px for touch targets (accessibility) */
.btn-primary, .btn-secondary, .btn-action, .nav-link, button[type="submit"] {
    min-height: 44px;
}

/* Modal scrollable on mobile */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* 375px - nothing overflows container */
@media (max-width: 375px) {
    .header-container {
        padding: 0 15px;
    }
    .info-card, .contact-card {
        padding: 20px 15px !important;
    }
    .info-card p, .info-card a, .modern-link {
        font-size: clamp(14px, 4vw, 17px);
        overflow-wrap: break-word;
        word-break: break-word;
    }
}
