/* ========================================
   HERO SECTION RESPONSIVE STYLES
   Professional spacing for all devices
   ======================================== */

/* Desktop (default styles in professional-index.css) */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .hero-section {
        padding: 140px 0 100px;
    }
    
    .hero-container {
        max-width: 1400px;
        padding: 0 60px;
        gap: 100px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-description {
        font-size: 20px;
    }
}

/* Laptop (1024px - 1399px) */
@media (max-width: 1399px) and (min-width: 1025px) {
    .hero-section {
        padding: 100px 0 70px;
    }
    
    .hero-container {
        padding: 0 40px;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-description {
        font-size: 17px;
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 30px;
    }
    
    .hero-content {
        max-width: 100%;
        order: 1;
        text-align: center;
    }
    
    /* Hide floating cards on tablets and mobile */
    .hero-visual {
        display: none !important;
    }
    
    .floating-card {
        display: none !important;
    }
    
    .hero-badge {
        margin: 0 auto 20px;
    }
    
    .hero-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 28px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .search-section {
        margin-bottom: 28px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .search-container {
        margin-bottom: 14px;
    }
    
    .search-suggestions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: 20px;
    }
    
    /* Adjust floating cards for tablet */
    .floating-card {
        position: relative !important;
        animation: none !important;
        margin-bottom: 16px;
        min-width: auto;
        max-width: 100%;
    }
    
    .card-1,
    .card-2,
    .card-3 {
        display: none !important;
    }
    
    .hero-visual {
        display: none !important;
    }
}

/* Mobile Large (481px - 767px) */
@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 50px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 0;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        display: none !important;
    }
    
    .floating-card {
        display: none !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        min-width: auto;
        padding: 16px 20px;
        border-radius: 16px;
        gap: 14px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 26px;
        border-radius: 12px;
    }
    
    .card-content h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .card-content p {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 6px 14px;
        margin: 0 auto 20px;
    }
    
    .badge-icon {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.6;
    }
    
    .search-section {
        margin-bottom: 28px;
    }
    
    .search-container {
        padding: 4px;
        margin-bottom: 14px;
    }
    
    .search-input {
        padding: 12px 8px;
        font-size: 15px;
    }
    
    .search-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .search-btn span {
        display: none;
    }
    
    .search-suggestions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .suggestion-tags {
        gap: 8px;
        justify-content: center;
    }
    
    .suggestion-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .trust-item {
        font-size: 14px;
    }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 0;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        display: none !important;
    }
    
    .floating-card {
        display: none !important;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 5px 12px;
        margin: 0 auto 16px;
        gap: 6px;
    }
    
    .badge-icon {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 14px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .search-section {
        margin-bottom: 24px;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 16px;
        padding: 8px;
        gap: 8px;
    }
    
    .search-icon {
        display: none;
    }
    
    .search-input {
        width: 100%;
        padding: 12px;
        text-align: center;
        border-radius: 12px;
        background: #f8f9fa;
        font-size: 14px;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 13px;
        border-radius: 12px;
        font-size: 14px;
    }
    
    .search-btn span {
        display: inline;
    }
    
    .suggestion-label {
        font-size: 12px;
    }
    
    .suggestion-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .trust-indicators {
        align-items: center;
    }
    
    .trust-item {
        font-size: 13px;
    }
    
    .trust-icon,
    .trust-icon-svg {
        width: 16px;
        height: 16px;
    }
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 359px) {
    .hero-section {
        padding: 40px 0 35px;
    }
    
    .hero-container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .search-input {
        font-size: 14px;
    }
    
    .search-btn {
        font-size: 13px;
        padding: 12px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        margin-bottom: 12px;
    }
}
