/* DaisyRisk Landing Page Theme Override */
:root {
    /* DaisyRisk Brand Colors */
    --primary-yellow: #F4D03F !important;
    --primary-orange: #F8B84E !important;
    --primary-green: #7FB069 !important;
    --accent-daisy: #FEF7E0 !important;
    --text-dark: #2C3E50 !important;
    --text-navy: #34495E !important;
    --text-gray: #6B7280 !important;
    --bg-cream: #FFFEF9 !important;
    --bg-light: #FDFCF9 !important;
    --border-light: #E8E5D8 !important;
    
    /* Override template variables */
    --pur: #F8B84E !important;
    --tx: #2C3E50 !important;
    --tx2: #6B7280 !important;
    --tx3: #9CA3AF !important;
    --bg: #FFFFFF !important;
    --bg2: #FFFEF9 !important;
    --bg3: #FEF7E0 !important;
    --sf: #FFFFFF !important;
    --bd: #E8E5D8 !important;
    --bd2: #E8E5D8 !important;
    --grad: linear-gradient(135deg, #F4D03F 0%, #F8B84E 100%) !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF9 50%, #FEF7E0 100%) !important;
}

/* Daisy Flower Background Decorations */
body::before {
    content: '🌼';
    position: fixed;
    font-size: 25rem;
    opacity: 0.03;
    top: 10%;
    right: -10%;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-15deg);
    animation: floatDaisy 20s ease-in-out infinite;
}

body::after {
    content: '🌻';
    position: fixed;
    font-size: 20rem;
    opacity: 0.03;
    bottom: 5%;
    left: -8%;
    z-index: 0;
    pointer-events: none;
    transform: rotate(25deg);
    animation: floatDaisy 25s ease-in-out infinite reverse;
}

@keyframes floatDaisy {
    0%, 100% { transform: rotate(-15deg) translateY(0px); }
    50% { transform: rotate(-10deg) translateY(-30px); }
}

#landing {
    position: relative;
    z-index: 1;
}

/* Primary Buttons */
.bgrd,
.bgrd:hover,
.bgrd:focus {
    background: linear-gradient(135deg, #F4D03F 0%, #F8B84E 100%) !important;
    border-color: #F4D03F !important;
    color: #2C3E50 !important;
    font-weight: 600 !important;
}

.bgrd:hover {
    background: linear-gradient(135deg, #F8B84E 0%, #F4D03F 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3) !important;
}

/* Gradient Text */
.gt {
    background: linear-gradient(135deg, #F4D03F 0%, #F8B84E 50%, #7FB069 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Logo Icon */
.logo-i {
    background: linear-gradient(135deg, #F4D03F 0%, #F8B84E 100%) !important;
    color: #2C3E50 !important;
    font-size: 1.4rem !important;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge */
.hbadge {
    background: rgba(254, 247, 224, 0.9) !important;
    border: 1px solid rgba(248, 184, 78, 0.2) !important;
    color: #F8B84E !important;
}

.bdot {
    background: #7FB069 !important;
    box-shadow: 0 0 8px #7FB069 !important;
}

/* Feature Cards Icons */
.ftico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

/* Stats Pills */
.stpill {
    background: var(--bg3) !important;
    border: 1px solid var(--bd) !important;
}

/* Number Steps */
.hnum {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content:center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.2);
}

/* Tags */
.ftag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    display: inline-block;
    margin-top: 8px;
}

/* Pricing Badge */
.pbadge {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.15), rgba(248, 184, 78, 0.15)) !important;
    border: 1px solid rgba(248, 184, 78, 0.3) !important;
    color: #F8B84E !important;
}

/* Pricing Check */
.pchk {
    background: linear-gradient(135deg, #F4D03F, #F8B84E) !important;
    color: #2C3E50 !important;
}

/* Bar Chart */
.bbar {
    background: linear-gradient(180deg, #F4D03F 0%, #F8B84E 100%) !important;
    border-radius: 4px 4px 0 0;
    flex: 1;
    transition: all 0.3s ease;
}

.bbar:hover {
    background: linear-gradient(180deg, #7FB069 0%, #F4D03F 100%) !important;
}

/* Pulse Animation */
@keyframes bpls {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

/* Typing Dots */
.tdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F8B84E;
    animation: tdotAnim 1.4s infinite;
}

@keyframes tdotAnim {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1); }
}

/* Link Hover Colors */
a:hover,
.nav-link:hover {
    color: #F8B84E !important;
}

/* Override any blue/purple colors from template */
.text-primary,
[style*="color:#8b5cf6"],
[style*="color:#a78bfa"],
[style*="color:#60a5fa"],
[style*="color:#3b82f6"] {
    color: #F8B84E !important;
}

[style*="background:#8b5cf6"],
[style*="background:#a78bfa"],
[style*="background:rgba(139,92,246"] {
    background: rgba(248, 184, 78, 0.12) !important;
}


/* ================================
   AOS FALLBACK - Ensure elements visible if AOS fails to load
   ================================ */

html:not(.aos-ready) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ================================
   NAVBAR RESPONSIVE & STICKY
   ================================ */

.navbar-daisy {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.navbar-daisy.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(244, 208, 63, 0.1);
}

/* Nav Links with Underline Animation */
.nav-link-daisy {
    position: relative;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link-daisy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #F4D03F 0%, #F8B84E 100%);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link-daisy:hover,
.nav-link-daisy.active {
    color: #F8B84E !important;
}

.nav-link-daisy:hover::after,
.nav-link-daisy.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Offcanvas Styling */
.offcanvas {
    background: var(--bg) !important;
}

.offcanvas-body {
    overflow-y: auto;
}

/* Tab Switch */
.tab-switch {
    display: flex;
    background: var(--bg3);
    border-radius: 12px;
    padding: 4px;
}

.tab-sw-btn {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-sw-btn.active {
    background: #FFFFFF;
    color: #F8B84E;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Form Inputs */
.olbl {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.oinp {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg);
    transition: all 0.3s ease;
}

.oinp:focus {
    outline: none;
    border-color: #F8B84E;
    box-shadow: 0 0 0 3px rgba(248, 184, 78, 0.1);
}

.oinp::placeholder {
    color: var(--text-gray);
}

/* OAuth Buttons */
.oauth {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.oauth:hover {
    border-color: #F8B84E;
    background: rgba(254, 247, 224, 0.3);
    transform: translateY(-2px);
}

/* Divider */
.odiv {
    position: relative;
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin: 24px 0 20px;
}

.odiv::before,
.odiv::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-light);
}

.odiv::before {
    left: 0;
}

.odiv::after {
    right: 0;
}

/* Mobile Menu */
#mbmenu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

#mbmenu.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 991px) {
    .offcanvas {
        width: 90% !important;
        max-width: 420px;
    }
}

@media (max-width: 576px) {
    .navbar-daisy {
        padding: 12px 0;
    }
    
    .logo-i {
        width: 38px;
        height: 38px;
        font-size: 1.2rem !important;
    }
    
    .offcanvas {
        width: 100% !important;
    }
}

/* ================================
   CONTACT SECTION
   ================================ */

#contact {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(160deg, #FFFFFF 0%, #FFFDF3 60%, #FFF8E1 100%);
    overflow: hidden;
}

/* Daisy ornaments for contact section */
#contact::before {
    content: '🌼';
    position: absolute;
    font-size: 14rem;
    opacity: 0.055;
    bottom: -2rem;
    left: -3rem;
    z-index: 0;
    pointer-events: none;
    transform: rotate(20deg);
    line-height: 1;
}

#contact::after {
    content: '🌼';
    position: absolute;
    font-size: 10rem;
    opacity: 0.05;
    top: -1rem;
    right: -2rem;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-15deg);
    line-height: 1;
}

#contact .container {
    position: relative;
    z-index: 1;
}

/* Section Header Badge */
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 247, 224, 0.9);
    border: 1px solid rgba(248, 184, 78, 0.3);
    color: #E6930A;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.contact-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.contact-desc {
    font-size: 1rem;
    color: #6B7280;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---- Info Cards (Left Column) ---- */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-card {
    background: #FFFFFF;
    border: 1px solid rgba(232, 229, 216, 0.8);
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(244, 208, 63, 0.07), 0 1px 4px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F4D03F 0%, #F8B84E 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px 18px 0 0;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(244, 208, 63, 0.15), 0 2px 8px rgba(0,0,0,0.06);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.15) 0%, rgba(248, 184, 78, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 0.93rem;
    font-weight: 600;
    color: #2C3E50;
    word-break: break-word;
}

.contact-info-sub {
    font-size: 0.78rem;
    color: #6B7280;
    margin-top: 3px;
    line-height: 1.5;
}

/* ---- Social Media ---- */
.contact-social-wrap {
    padding: 20px 22px;
    background: #FFFFFF;
    border: 1px solid rgba(232, 229, 216, 0.8);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(244, 208, 63, 0.07), 0 1px 4px rgba(0,0,0,0.04);
}

.contact-social-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.contact-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #FFFDF9;
    border: 1px solid rgba(232, 229, 216, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.contact-social-link:hover {
    color: #E6930A;
    background: rgba(254, 247, 224, 0.95);
    border-color: rgba(248, 184, 78, 0.45);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.22);
}

/* ---- Form Card (Right Column) ---- */
.contact-form-card {
    background: #FFFFFF;
    border: 1px solid rgba(232, 229, 216, 0.7);
    border-radius: 24px;
    padding: 36px 36px;
    box-shadow: 0 4px 24px rgba(244, 208, 63, 0.09), 0 1px 6px rgba(0,0,0,0.05);
    position: relative;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4D03F 0%, #F8B84E 50%, #7FB069 100%);
    border-radius: 24px 24px 0 0;
}

.contact-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 6px;
}

.contact-form-subtitle {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.55;
}

/* Form Fields */
.cf-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}

.cf-label .cf-required {
    color: #F8B84E;
    margin-left: 2px;
}

.cf-input,
.cf-select,
.cf-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E8E5D8;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #2C3E50;
    background: #FFFDF9;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
    border-color: #F8B84E;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(248, 184, 78, 0.12);
    transform: translateY(-1px);
}

.cf-input::placeholder,
.cf-textarea::placeholder {
    color: #B5B0A0;
}

.cf-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #FFFDF9;
    padding-right: 42px;
    cursor: pointer;
}

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

.cf-group {
    margin-bottom: 18px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Validation error messages */
.cf-error {
    font-size: 0.78rem;
    color: #EF4444;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cf-input.is-invalid,
.cf-select.is-invalid,
.cf-textarea.is-invalid {
    border-color: #EF4444;
    background: #FFF5F5;
}

.cf-input.is-invalid:focus,
.cf-select.is-invalid:focus,
.cf-textarea.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    transform: none;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #F4D03F 0%, #F8B84E 100%);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #2C3E50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
    letter-spacing: 0.01em;
    margin-top: 6px;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #EDBB27 0%, #F0A033 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

/* Ripple effect */
.contact-submit-btn .btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Success Alert */
.contact-success-alert {
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.12) 0%, rgba(127, 176, 105, 0.06) 100%);
    border: 1.5px solid rgba(127, 176, 105, 0.35);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-success-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7FB069 0%, #6aa354 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(127, 176, 105, 0.3);
}

.contact-success-text strong {
    display: block;
    font-weight: 700;
    color: #2C3E50;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-success-text p {
    font-size: 0.85rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    #contact {
        padding: 70px 0;
    }

    .contact-form-card {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .cf-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    #contact {
        padding: 60px 0;
    }

    .contact-form-card {
        padding: 22px 18px;
    }

    .contact-title {
        font-size: 1.5rem;
    }
}


/* ================================
   CONTACT FORM CARD (RIGHT COLUMN)
   ================================ */

.contact-form-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* ================================
   SUCCESS ALERT
   ================================ */

.contact-success-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.08), rgba(127, 176, 105, 0.05));
    border: 1px solid rgba(127, 176, 105, 0.25);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 24px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-success-icon {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7FB069;
    color: #FFFFFF;
    border-radius: 12px;
    font-size: 18px;
}

.contact-success-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #7FB069;
    margin-bottom: 4px;
}

.contact-success-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* ================================
   FORM STYLING
   ================================ */

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.cf-group {
    display: flex;
    flex-direction: column;
}

.cf-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cf-required {
    color: #F8B84E;
    font-weight: 700;
}

.cf-input,
.cf-select,
.cf-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
    outline: none;
    border-color: #F8B84E;
    box-shadow: 0 0 0 4px rgba(248, 184, 78, 0.08);
    transform: translateY(-1px);
}

.cf-input::placeholder,
.cf-textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.cf-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.cf-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.cf-input.is-invalid,
.cf-select.is-invalid,
.cf-textarea.is-invalid {
    border-color: #EF4444;
}

.cf-error {
    font-size: 12px;
    color: #EF4444;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ================================
   SUBMIT BUTTON
   ================================ */

.contact-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #F4D03F 0%, #F8B84E 100%);
    border: 2px solid #F4D03F;
    border-radius: 14px;
    color: #2C3E50;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #F8B84E 0%, #F4D03F 100%);
    border-color: #F8B84E;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(244, 208, 63, 0.35);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(244, 208, 63, 0.25);
}

/* Ripple Effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transform: scale(0);
    animation: rippleAnim 0.7s ease-out;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    #contact {
        padding: 80px 0;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-desc {
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    #contact {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-desc {
        font-size: 0.95rem;
    }

    .cf-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form-card {
        padding: 24px;
    }

    .contact-social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    #contact::before {
        font-size: 12rem;
        bottom: -40px;
        left: -30px;
    }

    #contact::after {
        font-size: 10rem;
        top: -30px;
        right: -30px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 16px;
    }

    .contact-info-icon {
        font-size: 1.6rem;
        min-width: 42px;
        height: 42px;
    }

    .contact-form-title {
        font-size: 1.4rem;
    }

    .contact-submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}
