@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --primary-green: #023330;
    --sage-green: #57bc82;
    --brand-orange: #f97316;
    --bg-white: #fcfdfc;
    --text-dark: #1a1a1a;
    --text-light: #4b5563;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
}

h1,
h2,
h3,
.font-serif {
    font-family: 'Raleway', sans-serif;
}

.bg-primary-green {
    background-color: var(--primary-green);
}

.text-primary-green {
    color: var(--primary-green);
}

.btn-primary-green {
    background-color: var(--primary-green);
    color: white;
    border: none;
}

.btn-primary-green:hover {
    background-color: #012220;
}

.btn-accent-orange {
    background-color: var(--brand-orange);
    color: white;
    border: none;
}

.btn-accent-orange:hover {
    background-color: #ea580c;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: white;
}

.floating-icon:hover {
    transform: scale(1.1);
}

.bg-whatsapp {
    background-color: #25D366;
}

.bg-call {
    background-color: var(--brand-orange);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ============================================
   SELL.DO FORM - PREMIUM BRAND STYLING
   Targets DOM-injected classes from Sell.do script
   ============================================ */

/* Outer container */
.selldo-form-container,
.sell_do_form_container {
    min-height: 300px;
    font-family: "Almarena Neue", sans-serif !important;
}

/* The actual <form> tag */
.sell_do_form_actual_container,
.selldof {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Each field group (label + input pair) */
.selldo-form-container .form-group,
.sell_do_form_container .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
}

/* Labels */
.selldo-form-container .form-group label,
.sell_do_form_container .form-group label,
.selldof label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280 !important;
    margin-bottom: 2px;
}

/* All Input fields, selects, textareas */
.selldo-form-container .form-control,
.sell_do_form_container .form-control,
.selldof input[type="text"],
.selldof input[type="email"],
.selldof input[type="tel"],
.selldof select,
.selldof textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    background-color: #f9fafb !important;
    color: #111827 !important;
    font-size: 0.95rem !important;
    font-family: "Almarena Neue", sans-serif !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Focus state */
.selldo-form-container .form-control:focus,
.sell_do_form_container .form-control:focus,
.selldof input[type="text"]:focus,
.selldof input[type="email"]:focus,
.selldof input[type="tel"]:focus,
.selldof select:focus,
.selldof textarea:focus {
    border-color: #023330 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(2, 51, 48, 0.08) !important;
}

/* Phone input wrapper */
.selldo-form-container .selldo-intl-tel-input,
.sell_do_form_container .selldo-intl-tel-input {
    width: 100%;
    position: relative;
    display: block;
}

/* Push the phone input text past the country flag/code selector */
.selldo-form-container .selldo-intl-tel-input input[type="tel"],
.sell_do_form_container .selldo-intl-tel-input input[type="tel"],
.selldof .selldo-intl-tel-input input[type="tel"],
.selldo-intl-tel-input input.form-control {
    padding-left: 56px !important;
}

/* Country flag button (the dropdown trigger) */
.selldo-intl-tel-input .flag-container,
.selldo-intl-tel-input .selected-flag {
    z-index: 2 !important;
}

/* Submit Button */
.selldo-form-container input[type="submit"],
.sell_do_form_container input[type="submit"],
.selldof input[type="submit"],
.selldo-form-container .btn,
.sell_do_form_container .btn,
.selldof .btn {
    width: 100% !important;
    padding: 14px 28px !important;
    background-color: #023330 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    font-family: "Almarena Neue", sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 15px rgba(2, 51, 48, 0.3) !important;
    margin-top: 8px !important;
}

.selldo-form-container input[type="submit"]:hover,
.sell_do_form_container input[type="submit"]:hover,
.selldof input[type="submit"]:hover,
.selldo-form-container .btn:hover,
.sell_do_form_container .btn:hover,
.selldof .btn:hover {
    background-color: #f97316 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4) !important;
}

/* Disclaimer text */
.selldo-form-container .disclaimer,
.sell_do_form_container .disclaimer {
    font-size: 0.7rem !important;
    color: #9ca3af !important;
    text-align: center !important;
    margin-top: 8px !important;
    line-height: 1.4 !important;
}

/* Error messages */
.selldo-form-container .error,
.sell_do_form_container .error,
.selldof .error {
    color: #ef4444 !important;
    font-size: 0.75rem !important;
    margin-top: 4px !important;
}