/* =================================== 
   ULTRA FAKHAMA FOOTER
   =================================== */

.fakhama-footer {
    position: relative;
    margin-top: 100px;
    background-color: #020617;
    /* Deep Luxury Dark */
    color: #e2e8f0;
    overflow: hidden;
    z-index: 1;
    font-family: 'Tajawal', 'Cairo', 'Almarai', sans-serif;
}

/* Background Animations */
.footer-bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: pulseFooterGlow 10s infinite alternate ease-in-out;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -20%;
    right: -10%;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--color-secondary, #6366f1);
    bottom: -10%;
    left: -5%;
    animation-delay: -5s;
}

.footer-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
}

.footer-noise {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
    mix-blend-mode: overlay;
}

@keyframes pulseFooterGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2) translate(-30px, 30px);
        opacity: 0.5;
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 40px;
    }
}

/* Content Wrapper */
.footer-content-wrapper {
    position: relative;
    padding: 100px 0 60px;
    z-index: 2;
}

/* Top Section: Brand & Newsletter as Premium Light Card */
.footer-epic-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    z-index: 5;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-40px);
}

.footer-brand-epic {
    flex: 1;
    max-width: 450px;
}

.epic-logo {
    max-height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) !important;
}

.epic-logo-text {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 15px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.epic-tagline {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* Epic Newsletter */
.epic-newsletter-box {
    flex: 1;
    max-width: 500px;
    position: relative;
    border-radius: 24px;
    padding: 30px;
    overflow: hidden;
}

.newsletter-glass-bg {
    position: absolute;
    inset: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h4 {
    font-size: 1.2rem;
    color: #0f172a;
    font-weight: 800;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-content h4 i {
    color: var(--color-primary);
}

.epic-newsletter-form {
    display: flex;
    gap: 10px;
    position: relative;
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    right: 20px;
    color: #94a3b8;
    font-size: 18px;
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 16px 20px 16px 50px;
    color: #1e293b;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.1);
}

.input-wrapper input::placeholder {
    color: #94a3b8;
}

.epic-submit-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary, #6366f1));
    border: none;
    border-radius: 14px;
    padding: 0 25px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.3);
}

.epic-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--color-primary-rgb), 0.5);
}

.epic-submit-btn i {
    transition: transform 0.3s ease;
}

.epic-submit-btn:hover i {
    transform: translateX(-5px);
}

/* Epic Divider */
.epic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Grid Layout */
.fakhama-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.5fr;
    gap: 40px;
}

.fakhama-col-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 30px;
    position: relative;
    display: inline-block;
}

.fakhama-col-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.fakhama-col:hover .fakhama-col-title::after {
    width: 100%;
}

/* Links List */
.epic-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.epic-links-list li {
    margin-bottom: 15px;
}

.epic-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.epic-links-list a::before {
    content: '\f104';
    font-family: 'Font Awesome 7 Duotone';
    font-weight: 900;
    margin-left: 8px;
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.epic-links-list a:hover {
    color: #ffffff;
    transform: translateX(-5px);
}

.epic-links-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact List */
.epic-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.epic-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.epic-contact-list .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.epic-contact-list li:hover .icon-box {
    background: var(--color-primary);
    color: #ffffff;
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.3);
}

.epic-contact-list .info-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.epic-contact-list .info-box span:first-child {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.epic-contact-list .info-box a,
.epic-contact-list .info-box .address-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.epic-contact-list .info-box a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.5);
}

/* Social Icons */
.epic-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.epic-social {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.epic-social::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.epic-social:hover {
    transform: translateY(-5px);
    color: #ffffff;
    border-color: transparent;
}

.epic-social:hover::before {
    opacity: 1;
}

.epic-social.fb:hover {
    background: #1877f2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}

.epic-social.tw:hover {
    background: #1da1f2;
    box-shadow: 0 10px 20px rgba(29, 161, 242, 0.4);
}

.epic-social.ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
}

.epic-social.in:hover {
    background: #0077b5;
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4);
}

.epic-social.yt:hover {
    background: #ff0000;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}

.epic-social.wa:hover {
    background: #25d366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.epic-social.tk:hover {
    background: #ff0050;
    box-shadow: 0 10px 20px rgba(255, 0, 80, 0.4);
}

.epic-social.sc:hover {
    background: #fffc00;
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 252, 0, 0.4);
}

/* Tags */
.epic-tags-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tags-mini-title {
    font-size: 1rem;
    color: #ffffff;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tags-mini-title i {
    color: #ffffff;
}

.epic-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.epic-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
    cursor: default;
}

.epic-tag:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.3);
}

/* Epic Apps Section */
.epic-apps-bar {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    background: linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.1), rgba(var(--color-secondary-rgb), 0.1));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.epic-apps-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.epic-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 200px;
}

.epic-app-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(var(--color-primary-rgb), 0.2);
}

.epic-app-btn i,
.hw-icon {
    font-size: 28px;
}

.hw-icon {
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
}

.app-txt {
    display: flex;
    flex-direction: column;
}

.app-txt span {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.app-txt strong {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.map-btn {
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.2), transparent);
}

.map-btn:hover {
    background: var(--color-primary);
}

/* Epic Bottom Bar */
.epic-bottom-bar {
    position: relative;
    z-index: 2;
    background: #000000;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.epic-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: #64748b;
    font-size: 0.95rem;
}

.copyright-text strong {
    color: #e2e8f0;
}

.made-with-love {
    color: #64748b;
    font-size: 0.95rem;
}

.made-with-love a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.made-with-love a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--color-primary);
}

/* Force White/Duotone Fixes */
.fakhama-footer i,
.fab-main i,
.back-to-top i {
    color: #ffffff !important;
    --fa-primary-color: #ffffff;
    --fa-secondary-color: rgba(255,255,255,0.4);
    --fa-secondary-opacity: 1;
}

/* Responsive Fakhama */
@media (max-width: 1200px) {
    .fakhama-footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .footer-epic-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand-epic {
        max-width: 100%;
    }

    .epic-newsletter-box {
        max-width: 100%;
        width: 100%;
    }

    .fakhama-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .input-wrapper input {
        padding-right: 50px;
    }
}

@media (max-width: 768px) {
    .fakhama-footer {
        margin-top: 60px;
    }

    .footer-content-wrapper {
        padding: 60px 0 40px;
    }

    .fakhama-footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .epic-newsletter-form {
        flex-direction: column;
    }

    .epic-submit-btn {
        padding: 16px;
        justify-content: center;
    }

    .epic-apps-flex {
        flex-direction: column;
    }

    .epic-app-btn {
        width: 100%;
        justify-content: center;
    }

    .epic-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .back-to-top {
        display: none !important;
    }
}

/* FAB Adjustments */
.fab-container,
.back-to-top {
    z-index: 9999;
}

/* =================================== 
   FAKHAMA FLOATING ACTION BUTTON (FAB)
   =================================== */
.fab-container {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fab-right {
    right: 30px;
}

.fab-left {
    left: 30px;
}

.fab-main {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary, #6366f1));
    border: none;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(var(--color-primary-rgb), 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    position: relative;
}

.fab-main::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: inherit;
    filter: blur(12px);
    opacity: 0.6;
    z-index: -1;
    animation: fabPulse 2s infinite;
}

@keyframes fabPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.fab-main:hover {
    transform: scale(1.1) rotate(15deg);
}

.fab-icon-open {
    transition: all 0.3s ease;
}

.fab-icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg) scale(0);
    transition: all 0.3s ease;
}

.fab-container.active .fab-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.fab-container.active .fab-icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* FAB Popup */
.fab-popup {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 320px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.fab-left .fab-popup {
    right: auto;
    left: 0;
    transform-origin: bottom left;
}

.fab-container.active .fab-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.fab-popup-header {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.fab-popup-header h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.fab-popup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.fab-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    color: #cbd5e1;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.fab-grid-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fab-grid-item i {
    font-size: 28px;
}

.fab-grid-item.whatsapp:hover i {
    color: #25d366;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.6));
}

.fab-grid-item.phone:hover i {
    color: #3b82f6;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
}

.fab-grid-item.email:hover i {
    color: #ef4444;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.6));
}

.fab-grid-item span {
    font-size: 0.85rem;
    font-weight: 700;
}

.fab-popup-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.15), rgba(var(--color-secondary-rgb), 0.15));
    border-radius: 16px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.fab-popup-hours i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* =================================== 
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: #ffffff !important;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9998;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary);
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 30px rgba(var(--color-primary-rgb), 0.4);
}

.back-to-top-right {
    right: 30px;
}

.back-to-top-left {
    left: 30px;
}

/* Adjust Back to Top if FAB is on same side */
.fab-right~.back-to-top-right {
    bottom: 110px;
}

.fab-left~.back-to-top-left {
    bottom: 110px;
}

/* =================================== 
   PREMIUM FULL SCREEN SEARCH
   =================================== */
.goha-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.goha-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.goha-search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.goha-search-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

.goha-search-container {
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.goha-search-overlay.active .goha-search-container {
    transform: translateY(0) scale(1);
}

.goha-search-icon {
    font-size: 70px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 25px;
    animation: floatSearch 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(var(--color-primary-rgb), 0.4));
}

@keyframes floatSearch {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.goha-search-title {
    color: #ffffff;
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 50px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.goha-search-form {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.goha-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    padding: 20px 30px;
    outline: none;
    font-family: inherit;
}

.goha-search-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.goha-search-submit {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 18px;
    padding: 0 50px;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.goha-search-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(var(--color-primary-rgb), 0.5);
}

.goha-search-hint {
    text-align: center;
    color: #64748b;
    margin-top: 40px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .goha-search-title {
        font-size: 2rem;
    }

    .goha-search-form {
        flex-direction: column;
        gap: 15px;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .goha-search-input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        text-align: center;
        font-size: 1.5rem;
    }

    .goha-search-submit {
        padding: 25px;
        justify-content: center;
        border-radius: 20px;
    }

    .goha-search-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}