/* ========================================================
   GOD OF SMM - GLOBAL BRANDING & CUSTOM STYLE MASTER FILE
   ======================================================== */

/* -----------------------------------------
   1. GLOBAL OVERRIDES (Gap Fix & Orange Theme)
   ----------------------------------------- */

/* Fix the white gap below the header and footer */
.navbar {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}
body {
    background-color: #fcfcfc;
    padding-bottom: 0 !important; /* Fixes bottom gap completely */
}

/* Global Links */
a {
    color: #ff6600 !important;
}
a:hover, a:focus {
    color: #cc5200 !important;
    text-decoration: none !important;
}

/* Primary Buttons (Orange Override) */
.btn-primary {
    background-color: #ff6600 !important;
    border-color: #e65c00 !important;
    color: #ffffff !important;
}
.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active, 
.btn-primary.active, 
.open > .dropdown-toggle.btn-primary {
    background-color: #e65c00 !important;
    border-color: #cc5200 !important;
    color: #ffffff !important;
}

/* Input Fields Focus (Orange Border & Shadow) */
.form-control:focus {
    border-color: #ff6600 !important;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 102, 0, 0.4) !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 102, 0, 0.4) !important;
}

/* Pagination & Tabs (Orange) */
.pagination > .active > a, 
.pagination > .active > span, 
.pagination > .active > a:hover, 
.pagination > .active > span:hover, 
.pagination > .active > a:focus, 
.pagination > .active > span:focus {
    background-color: #ff6600 !important;
    border-color: #ff6600 !important;
    color: #fff !important;
}
.nav-pills > li.active > a, 
.nav-pills > li.active > a:hover, 
.nav-pills > li.active > a:focus {
    background-color: #ff6600 !important;
    color: #fff !important;
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* -----------------------------------------
   2. SIGN-IN PAGE HERO SECTION
   ----------------------------------------- */
.custom-signin-page {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: #fcfcfc;
}

.hero-section {
    background-color: #f2f2f2;
    padding: 50px 0;
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
}

.hero-badge {
    background-color: #ff6600;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-buttons .btn {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 4px;
    margin: 5px;
}

.btn-outline {
    background-color: #fff !important;
    border: 1px solid #ccc !important;
    color: #555 !important;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0 0 0;
    font-size: 14px;
    color: #444;
    font-weight: 600;
}
.hero-features i {
    color: #ff6600; 
    margin-right: 5px;
}

/* -----------------------------------------
   3. SIGN-IN FORM CARD
   ----------------------------------------- */
.signin-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.signin-heading {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.signin-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px;
}

.signin-label {
    font-weight: 700;
    color: #444;
    font-size: 14px;
}

.input-custom {
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    height: auto;
    box-shadow: none;
    font-size: 14px;
}

.forgot-pwd {
    margin-bottom: 15px;
}

.btn-submit-orange {
    background-color: #ff6600 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    width: 100%;
}

.btn-submit-orange:hover {
    background-color: #e65c00 !important;
}

.signup-link {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

/* -----------------------------------------
   4. TRUST & FEATURES CARDS
   ----------------------------------------- */
.features-section, .trust-section {
    background-color: #fcfcfc;
    padding: 30px 0;
}

.features-header {
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.features-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.features-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.features-grid, .trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card, .trust-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.feature-card { text-align: left; }
.trust-card { text-align: center; padding: 30px 20px; }

.feature-title, .trust-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.feature-title {
    display: flex;
    align-items: center;
}

.feature-title i {
    margin-right: 12px;
    font-size: 18px;
    color: #ff6600;
}

.trust-icon {
    font-size: 26px;
    color: #ff6600;
    margin-bottom: 15px;
}

.feature-desc, .trust-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* -----------------------------------------
   5. FAQ SECTION
   ----------------------------------------- */
.faq-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.faq-header {
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.faq-badge {
    display: inline-block;
    background-color: #fff0e6;
    color: #ff6600;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-badge i { margin-right: 5px; }

.faq-title {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background-color: #fffcf8; 
    border: 1px solid #fdf5eb;
    border-radius: 12px;
    padding: 25px 30px;
    text-align: left;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-top: 0;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* -----------------------------------------
   6. FOOTER SECTION
   ----------------------------------------- */
.custom-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 0 20px;
    font-family: 'Inter', 'Roboto', sans-serif;
    border-top: 3px solid #ff6600;
    margin-top: 0 !important; /* Fixes any top gap above footer */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.brand-col h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9ca3af !important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ff6600 !important;
}

.social-links i {
    margin-right: 8px;
    font-size: 16px;
    color: #ff6600;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

/* =========================================
   Perfect Centered Modal
   ========================================= */


.modal-dialog {
    display: flex !important;
    align-items: center !important; 
    justify-content: center !important;
    min-height: calc(100vh - 60px) !important; 
    max-width: 480px !important; 
    margin: 30px auto !important; 
}

@media (max-width: 768px) {
    .modal-dialog {
        max-width: 90% !important; 
        margin: 0 auto !important;
        min-height: 100vh !important;
    }
}


.modal-content {
    width: 100% !important;
    border-radius: 18px !important; 
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    background-color: #ffffff !important;
    margin: auto !important;
}


.modal-header {
    border-bottom: none !important;
    padding: 24px 24px 10px 24px !important;
    position: relative;
    background-color: transparent !important;
}


.modal-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.modal-title::before {
    content: 'i';
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffedd5 !important; 
    color: #f97316 !important; 
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    font-family: serif;
    font-style: italic;
    margin-right: 12px;
}


.modal-header .close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 24px !important;
    color: #9ca3af !important;
    opacity: 0.8 !important;
    text-shadow: none !important;
    margin: 0 !important;
}
.modal-header .close:hover {
    color: #ff6600 !important;
    opacity: 1 !important;
}


.modal-body {
    padding: 10px 24px 20px 24px !important;
    font-size: 14px !important;
    color: #4b5563 !important;
    line-height: 1.7 !important;
    background-color: transparent !important;
}


.modal-footer {
    border-top: none !important;
    padding: 10px 24px 24px 24px !important;
    background-color: transparent !important;
}

.modal-footer .btn-default {
    width: 100% !important;
    background-color: #ffffff !important;
    color: #111827 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important; 
    padding: 14px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    transition: 0.3s;
}

.modal-footer .btn-default:hover {
    border-color: #ff6600 !important;
    color: #ff6600 !important;
}


/* =========================================
   New Order Page - Premium Custom Design
   ========================================= */

.premium-order-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 35px 40px;
    margin-bottom: 30px;
    border: 1px solid #f3f4f6;
}

@media (max-width: 768px) {
    .premium-order-card {
        padding: 25px 20px;
    }
}

/* Premium Header styling */
.poc-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 20px;
}

.poc-icon {
    width: 55px;
    height: 55px;
    background: #fff0e6;
    color: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 15px auto;
}

.poc-title {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 5px 0;
}

.poc-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Form Groups and Inputs */
.custom-form-group {
    margin-bottom: 20px !important;
}

.custom-form-group .control-label {
    font-size: 14.5px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
}

.custom-form-group .form-control {
    border-radius: 8px !important;
    border: 1px solid #d1d5db !important;
    padding: 12px 16px !important;
    height: auto !important;
    font-size: 14px;
    color: #111827;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-form-group .form-control:focus {
    border-color: #ff6600 !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 102, 0, 0.4) !important;
}

/* Service Description Area Box */
.service-desc-box {
    background: #fff8f3 !important;
    border: 1px solid #ffedd5 !important;
    border-left: 4px solid #ff6600 !important;
    border-radius: 6px !important;
    color: #9a3412 !important;
    padding: 16px 20px !important;
    font-size: 14px;
    line-height: 1.6;
}

/* Specific styling for Charge field */
.charge-input {
    background-color: #f9fafb !important;
    color: #ff6600 !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    cursor: not-allowed;
    border: 1px solid #e5e7eb !important;
}

/* Terms Checkbox */
.custom-terms {
    display: flex !important;
    align-items: center;
    font-size: 14px;
    color: #4b5563 !important;
    font-weight: 600 !important;
}
.custom-terms input[type="checkbox"] {
    margin: 0 10px 0 0 !important;
    width: 16px;
    height: 16px;
    accent-color: #ff6600;
}
.custom-terms a {
    margin-left: 5px;
    color: #ff6600 !important;
    text-decoration: underline !important;
}

/* Full Width Submit Button */
.btn-submit-full {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    padding: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 25px;
    transition: all 0.3s ease !important;
}

/* Alerts custom design */
.custom-alert {
    border-radius: 8px !important;
    border: none !important;
    padding: 15px 20px !important;
}
.custom-alert ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
    line-height: 1.8;
}
.custom-alert h4 {
    font-weight: 700;
    margin-top: 0;
}
/* =========================================
   Service Name Black & Submit Button Full Width
   ========================================= */

/* Make category, service name, and dropdown text black */
#orderform-category,
#orderform-service,
select.form-control option,
.service-name {
    color: #000000 !important;
}

/* Make the submit button full-width and centered on the New Order page */
#order-form button[type="submit"] {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    border-radius: 6px !important;
}

/* =========================================
   Dropdown Service Fixes (Blue Round IDs - ALL PLACES)
   ========================================= */

/* 1. Outside Box + Inside Dropdown IDs -> Blue & Round */
.select2-selection__rendered .badge,
.select2-selection__rendered .label,
.select2-container .badge,
.filter-option .badge,
.filter-option .label,
.filter-option-inner-inner .badge,
.bootstrap-select .dropdown-toggle .badge,
.dropdown-menu li a .badge,
.dropdown-menu li a .label,
button.dropdown-toggle .badge {
    background-color:  #FF0000 !important; /* User specified custom color */
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 4px 8px !important;
}

/* 2. Normal text color inside dropdown */
.dropdown-menu > li > a,
.select2-results__option {
    color: #333333 !important;
}

/* Outside selected text color */
.filter-option-inner-inner,
.select2-selection__rendered {
    color: #000000 !important;
}

/* 3. Hover/Active background -> Orange, Text -> White */
.dropdown-menu > li.active > a,
.dropdown-menu > li.active > a:hover,
.dropdown-menu > li.active > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.select2-results__option--highlighted {
    background-color: #ff6600 !important; 
    color: #ffffff !important; 
}

/* 4. Invert ID on hover (White background, Custom colored text) */
.dropdown-menu > li.active > a .badge,
.dropdown-menu > li > a:hover .badge,
.dropdown-menu > li.active > a .label,
.dropdown-menu > li > a:hover .label,
.select2-results__option--highlighted .badge {
    background-color: #ffffff !important;
    color:  #FF0000 !important; 
}


/* Contact Page Centralized Styling */
.contact-container {
    padding: 50px 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-card h3 {
    margin: 10px 0;
    font-weight: 800;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
}

/* Theme Orange Buttons */
.contact-btn {
    display: inline-block;
    background: #ff6600 !important; /* Theme Color */
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #e65c00 !important;
}