/*
Theme Name: Top University Forum
Theme URI: https://topuniversityforum.in/
Description: India's Premier University & College Discovery Platform
Author: TopUniversityForum Team
Version: 2.0.1
License: GNU General Public License v2 or later
Text Domain: topuniversityforum
*/

/* === TOP UNIVERSITY FORUM — BRAND COLORS 2026 === */
:root {
    /* ── 🔥 Saffron Orange (Main CTA) ── */
    --cd-orange: #f97316;
    --cd-orange-hover: #ea6c0a;
    --cd-orange-light: #fb923c;
    --cd-orange-glow: rgba(249, 115, 22, 0.25);

    /* ── 💙 Royal Blue (Primary) ── */
    --cd-navy: #1e3a8a;
    --cd-navy-dark: #172554;
    --cd-navy-light: #2563eb;
    --cd-navy-mid: #1d4ed8;

    /* ── 💜 Purple Accent ── */
    --cd-purple: #7c3aed;
    --cd-purple-light: #a855f7;
    --cd-magenta: #db2777;

    /* ── 🌿 Emerald ── */
    --cd-green: #059669;
    --cd-green-light: #10b981;

    /* ── Backgrounds ── */
    --cd-white: #ffffff;
    --cd-bg-light: #eef2ff;
    --cd-bg-lighter: #f5f7ff;

    /* ── Text ── */
    --cd-text-dark: #0f172a;
    --cd-text-muted: #475569;
    --cd-text-light: #94a3b8;

    /* ── Borders & Shadows ── */
    --cd-border: #c7d2fe;
    --cd-border-light: #e0e7ff;
    --cd-shadow-sm: 0 2px 8px rgba(30, 58, 138, 0.10);
    --cd-shadow-md: 0 6px 24px rgba(30, 58, 138, 0.12);
    --cd-shadow-lg: 0 14px 40px rgba(30, 58, 138, 0.18);

    /* ── ✨ Signature Gradients ── */
    --cd-grad-primary: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    --cd-grad-orange: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    --cd-grad-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #312e81 100%);
    --cd-grad-vibrant: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #06b6d4 100%);
    --cd-grad-warm: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cd-bg-lighter);
    color: var(--cd-text-dark);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--cd-navy);
    margin-bottom: 0.75rem;
}

a {
    color: var(--cd-orange);
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: var(--cd-orange-hover);
}

/* === BUTTONS === */
.btn {
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-orange {
    background: var(--cd-orange);
    color: white;
}

.btn-orange:hover {
    background: var(--cd-orange-hover);
    transform: translateY(-1px);
    box-shadow: var(--cd-shadow-md);
    color: white;
}

.btn-navy {
    background: var(--cd-navy);
    color: white;
}

.btn-navy:hover {
    background: var(--cd-navy-dark);
}

/* === HEADER === */
/* Top Contact Bar */
.top-contact-bar {
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e8e8e8 !important;
}

.top-contact-bar .small {
    font-size: 13px;
    font-weight: 500;
}

.top-contact-bar i {
    font-size: 14px;
}

.top-contact-bar a {
    color: #666;
    font-size: 16px;
    transition: all 0.2s ease;
}

.top-contact-bar a:hover {
    color: var(--cd-orange);
    transform: scale(1.1);
}

/* Main Header */
.site-header {
    z-index: 1030;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.site-header.sticky-top {
    transition: all 0.3s ease;
}

/* Premium Logo Design - Desktop */
.site-logo-premium {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo-premium:hover {
    transform: translateY(-3px);
}

.site-logo-premium:hover .logo-icon-box {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 90, 0, 0.4);
}

/* Logo Icon Box */
.logo-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff5a00 0%, #ff8833 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 90, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo-icon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: logo-shine 3s infinite;
}

@keyframes logo-shine {
    0% {
        top: -50%;
        right: -50%;
    }

    50% {
        top: 150%;
        right: 150%;
    }

    100% {
        top: -50%;
        right: -50%;
    }
}

.logo-icon-box i {
    color: white;
    font-size: 26px;
    position: relative;
    z-index: 1;
}

/* Logo Text Box */
.logo-text-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-brand-name {
    font-size: 34px;
    font-weight: 900;
    color: var(--cd-navy);
    letter-spacing: -0.5px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-text-stroke: 0.5px var(--cd-navy);
}

.logo-brand-highlight {
    background: linear-gradient(135deg, #ff5a00 0%, #ff8833 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    -webkit-text-stroke: 0.5px #ff5a00;
}

.logo-subtitle {
    font-size: 10px;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Premium Logo - Mobile */
.site-logo-premium-mobile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon-box-mobile {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ff5a00 0%, #ff8833 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(255, 90, 0, 0.3);
}

.logo-icon-box-mobile i {
    color: white;
    font-size: 20px;
}

.logo-text-box-mobile {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.logo-text-box-mobile .logo-brand-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--cd-navy);
    letter-spacing: -0.3px;
    line-height: 1;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-text-stroke: 0.3px var(--cd-navy);
}

.logo-text-box-mobile .logo-brand-highlight {
    background: linear-gradient(135deg, #ff5a00 0%, #ff8833 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0.3px #ff5a00;
}

.logo-subtitle-mobile {
    font-size: 8px;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Search Bar Styling */
.search-container input {
    border: 2px solid #e8e8e8 !important;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.search-container input:focus {
    border-color: var(--cd-orange) !important;
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.15) !important;
    outline: none;
}

.search-container button {
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 90, 0, 0.3);
}

.search-container button:hover {
    background: var(--cd-orange-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.4);
}

/* Action Buttons - Counselling CTA */
.btn-counselling-cta {
    background: linear-gradient(135deg, #ff5a00 0%, #ff7a30 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 15px rgba(255, 90, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

.btn-counselling-cta::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;
}

.btn-counselling-cta:hover::before {
    left: 100%;
}

.btn-counselling-cta:hover {
    background: linear-gradient(135deg, #ff7a30 0%, #ff5a00 100%) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 90, 0, 0.5);
}

.btn-counselling-cta i {
    margin-right: 6px;
    font-size: 16px;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 90, 0, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(255, 90, 0, 0.6);
    }
}

.btn-outline-secondary {
    border: 2px solid #e0e0e0 !important;
    color: var(--cd-navy) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    border-color: var(--cd-orange) !important;
    background: var(--cd-orange) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.25);
}

/* Navigation Menu */
.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--cd-navy);
}

.navbar {
    background: white;
    border-top: 1px solid #f0f0f0 !important;
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 14px;
    padding: 14px 18px !important;
    color: var(--cd-navy) !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.navbar-nav .nav-link:hover {
    color: var(--cd-orange) !important;
    background: rgba(255, 90, 0, 0.05);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--cd-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.current-menu-item .nav-link::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.dropdown-menu {
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--cd-text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 90, 0, 0.08);
    color: var(--cd-orange);
    padding-left: 24px;
}

.dropdown-divider {
    margin: 8px 0;
    border-top: 1px solid #f0f0f0;
}

/* Mobile Header Improvements */
@media (max-width: 991.98px) {
    .site-logo-premium .logo-icon-box {
        width: 42px;
        height: 42px;
    }

    .site-logo-premium .logo-icon-box i {
        font-size: 22px;
    }

    .site-logo-premium .logo-brand-name {
        font-size: 26px;
    }

    .site-logo-premium .logo-subtitle {
        font-size: 9px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-collapse {
        background: white;
        padding: 15px 0;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
}

/* === CARDS === */
.card {
    border-radius: 12px;
    border: 1px solid var(--cd-border-light);
    transition: all 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cd-shadow-lg);
    border-color: transparent;
}

/* === UTILITY CLASSES === */
.bg-navy {
    background-color: var(--cd-navy) !important;
}

.bg-orange {
    background-color: var(--cd-orange) !important;
}

.text-navy {
    color: var(--cd-navy) !important;
}

.text-orange {
    color: var(--cd-orange) !important;
}

.shadow-soft {
    box-shadow: var(--cd-shadow-md);
}

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* ==================================
   COLLEGE DETAIL PAGE STYLES
   ================================== */

/* College Banner */
.college-detail-container {
    background: white;
    padding-top: 20px;
    margin-bottom: 0;
}

.college-banner {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.college-banner-left {
    flex: 1;
}

.college-banner-right {
    flex: 1;
}

/* Logo and Actions */
.college-banner-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.college-logo {
    width: 80px;
    height: 80px;
    padding: 8px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--cd-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.college-logo img {
    max-width: 100%;
    max-height: 100%;
}

.college-logo-placeholder {
    font-size: 40px;
    color: var(--cd-orange);
}

.college-action-icons {
    display: flex;
    gap: 10px;
}

.college-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--cd-border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.college-icon-btn:hover {
    background: var(--cd-orange);
    border-color: var(--cd-orange);
    color: white;
}

/* College Heading */
.college-heading {
    font-size: 28px;
    color: var(--cd-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Review Block */
.college-review-block {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.college-rating-badge {
    background: var(--cd-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
}

.college-review-count a {
    color: var(--cd-text-muted);
    font-size: 14px;
}

/* Description */
.college-description {
    color: var(--cd-text-dark);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

/* Location and Gallery */
.college-location-gallery {
    display: flex;
    gap: 25px;
    align-items: center;
}

.college-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cd-text-muted);
    font-size: 14px;
}

.college-location i {
    color: var(--cd-orange);
}

.college-gallery-link {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--cd-navy);
    font-weight: 600;
}

.college-gallery-link img {
    width: 40px;
    height: auto;
}

/* Banner Right - Image with Stats */
.college-banner-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--cd-shadow-lg);
}

.college-stats-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    z-index: 10;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--cd-text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-value {
    display: block;
    font-size: 18px;
    color: var(--cd-navy);
    font-weight: 700;
}

.college-banner-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* CTA Buttons */
.college-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--cd-border-light);
}

.college-cta-buttons .btn {
    min-width: 180px;
}

.btn-secondary {
    background: white;
    border: 2px solid var(--cd-orange);
    color: var(--cd-orange);
}

.btn-secondary:hover {
    background: var(--cd-orange);
    color: white;
}

.btn-primary {
    background: var(--cd-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--cd-orange-hover);
}

/* Navigation Tabs */
.college-nav-tabs {
    background: white;
    border-bottom: 2px solid var(--cd-border-light);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.nav-tabs-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-tabs-list::-webkit-scrollbar {
    display: none;
}

.nav-tabs-list li {
    white-space: nowrap;
}

.nav-tabs-list li a {
    display: block;
    padding: 15px 20px;
    color: var(--cd-text-dark);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-tabs-list li a:hover,
.nav-tabs-list li.active a {
    color: var(--cd-orange);
    border-bottom-color: var(--cd-orange);
}

/* Main Content */
.college-content-wrapper {
    background: var(--cd-bg-lighter);
    padding: 40px 0;
}

.college-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--cd-shadow-sm);
}

.college-section h2 {
    color: var(--cd-navy);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cd-border-light);
}

/* Courses Table */
.courses-table-wrapper {
    overflow-x: auto;
}

.college-courses-table {
    width: 100%;
    border-collapse: collapse;
}

.college-courses-table thead {
    background: var(--cd-bg-light);
}

.college-courses-table th,
.college-courses-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--cd-border-light);
}

.college-courses-table th {
    font-weight: 700;
    color: var(--cd-navy);
    font-size: 14px;
    text-transform: uppercase;
}

.college-courses-table td {
    font-size: 14px;
}

.college-courses-table tbody tr:hover {
    background: var(--cd-bg-lighter);
}

/* Common CTA */
.college-common-cta {
    background: linear-gradient(135deg, var(--cd-orange) 0%, var(--cd-orange-hover) 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    color: white;
}

.college-common-cta p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.college-common-cta .btn {
    background: white;
    color: var(--cd-orange);
    font-weight: 700;
}

.college-common-cta .btn:hover {
    background: var(--cd-navy);
    color: white;
}

/* FAQs */
.college-faqs {
    max-width: 900px;
}

.faq-item {
    border: 1px solid var(--cd-border-light);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--cd-orange);
    font-weight: 700;
}

.faq-item[open] summary {
    background: var(--cd-bg-light);
    color: var(--cd-orange);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 15px 20px;
    margin: 0;
    background: white;
    color: var(--cd-text-muted);
    line-height: 1.7;
}

/* Contact Info */
.college-contact-info {
    max-width: 600px;
}

.college-contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.college-contact-info i {
    color: var(--cd-orange);
    font-size: 18px;
    width: 24px;
}

/* Reviews Placeholder */
.college-reviews-placeholder {
    text-align: center;
    padding: 40px 20px;
}

.college-reviews-placeholder p {
    color: var(--cd-text-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

/* Responsive College Detail Page */
@media (max-width: 991.98px) {
    .college-banner {
        flex-direction: column;
    }

    .college-stats-overlay {
        grid-template-columns: 1fr;
    }

    .nav-tabs-list {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767.98px) {
    .college-heading {
        font-size: 22px;
    }

    .college-section {
        padding: 20px;
    }

    .college-section h2 {
        font-size: 20px;
    }

    .college-cta-buttons {
        flex-direction: column;
    }

    .college-cta-buttons .btn {
        width: 100%;
    }

    .stat-value {
        font-size: 16px;
    }

    .college-banner-img {
        height: 200px;
    }
}


/* === MODAL STYLES === */
.premium-modal .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.premium-modal .modal-header {
    background: white;
    border-bottom: 1px solid var(--cd-border-light);
    padding: 20px 30px;
}

.premium-modal .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--cd-navy);
}

.premium-modal .modal-body {
    padding: 30px;
}

.premium-modal .btn-close {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.premium-modal .btn-close:hover {
    opacity: 1;
}

/* === FORM STYLES === */
.form-floating-custom {
    position: relative;
    margin-bottom: 20px;
}

.form-floating-custom input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid var(--cd-border);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-floating-custom input:focus {
    border-color: var(--cd-orange);
    box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.1);
    outline: none;
}

.form-floating-custom i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cd-text-muted);
    font-size: 16px;
    pointer-events: none;
}

.form-floating-custom input:focus~i,
.form-floating-custom input:not(:placeholder-shown)~i {
    color: var(--cd-orange);
}

/* === SUBMIT BUTTON PREMIUM === */
.submit-btn-premium {
    background: linear-gradient(135deg, var(--cd-orange) 0%, var(--cd-orange-hover) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 0, 0.3);
}

.submit-btn-premium:active {
    transform: translateY(0);
}

/* === TRUST BADGES === */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--cd-text-muted);
}

.trust-item i {
    color: var(--cd-orange);
    font-size: 16px;
}

/* === FORM RESPONSE === */
#formResponse {
    margin-bottom: 20px;
}

.form-response-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
}

.form-response-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #f5c6cb;
}

/* === AUTOCOMPLETE STYLES === */
.autocomplete-group-label {
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cd-text-muted);
    text-transform: uppercase;
    background: var(--cd-bg-light);
    border-bottom: 1px solid var(--cd-border-light);
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--cd-text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--cd-border-light);
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: var(--cd-bg-light);
    color: var(--cd-orange);
}

.autocomplete-item .ac-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.autocomplete-item .ac-content {
    flex: 1;
}

.autocomplete-item .ac-title {
    font-weight: 600;
    font-size: 14px;
}

.autocomplete-item .ac-subtitle {
    font-size: 12px;
    color: var(--cd-text-muted);
    margin-top: 2px;
}

.autocomplete-item .ac-arrow {
    color: var(--cd-text-light);
    font-size: 14px;
}

.autocomplete-loading {
    padding: 20px;
    text-align: center;
    color: var(--cd-text-muted);
}

.autocomplete-no-results {
    padding: 30px 20px;
    text-align: center;
    color: var(--cd-text-muted);
}

.autocomplete-error {
    padding: 15px;
    text-align: center;
    color: #721c24;
    background: #f8d7da;
}

.autocomplete-view-all {
    display: block;
    padding: 12px 15px;
    text-align: center;
    background: var(--cd-bg-light);
    color: var(--cd-orange);
    font-weight: 600;
    border-top: 1px solid var(--cd-border-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

.autocomplete-view-all:hover {
    background: var(--cd-orange);
    color: white;
}