body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #fffcf4;
    color: #1f2937;
}

/* Headings use Playfair Display for a modern, elegant serif tone */
h1, h2, h3, h4, h5, h6, .hero-headline {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.bg-soft {
    background: #fffcf4;
}

.text-primary {
    color: #fd6220 !important;
}

.btn-primary {
    background: linear-gradient(135deg, #fd6220, #ff7d3c);
    border-color: #fd6220;
    box-shadow: 0 10px 25px rgba(253, 98, 32, 0.2);
}

.btn-outline-primary {
    color: #04807e;
    border-color: #04807e;
}

.btn-outline-primary:hover {
    background-color: #04807e;
    border-color: #04807e;
}

.card {
    border-radius: 20px;
}

.rounded-4 {
    border-radius: 20px;
}

.hero {
    min-height: 72vh;
}

.navbar-brand {
    letter-spacing: 0.02em;
}

/* New utility classes for home page sections */
.py-8 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

.mb-8 {
    margin-bottom: 4rem;
}

/* Button styling */
.fw-600 {
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Display responsive sizes */
.display-3 {
    font-size: 2.5rem;
}

@media (min-width: 1200px) {
    .display-3 {
        font-size: 3.5rem;
    }
}

.form-control:focus {
    border-color: #fd6220;
    box-shadow: 0 0 0 0.2rem rgba(253, 98, 32, 0.15);
}

:root {
        --orange: #fd6220;
        --teal: #04807e;
        --radius-sm: 10px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --radius-xl: 32px;
}

/* Glass Morphism Design */
.glass-morphism {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 55, 0.08);
    transition: all 0.3s ease;
}

.glass-morphism:hover {
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 48px 0 rgba(31, 38, 55, 0.12);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 55, 0.08);
    transition: all 0.3s ease;
}

footer { background: #0e0e1a; padding: 3rem 0 2rem; color: rgba(255,255,255,0.6); }
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: 0.4rem; }
.footer-brand span { color: var(--orange); }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 0; }
.footer-link { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.25s; }
.footer-link:hover { color: var(--orange); }
.social-icon-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; transition: all 0.25s; text-decoration: none; color: rgba(255,255,255,0.6); }
.social-icon-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 2rem 0 1.5rem; }
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; }

#successToast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    background: linear-gradient(135deg, var(--teal), #0aa8a5);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: 0 16px 50px rgba(4, 128, 126, 0.35);
    display: none;
    align-items: center;
    gap: 1rem;
    max-width: 340px;
    animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#successToast .toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
