/* Custom scrollbar */

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: #050A14;
            z-index: 999;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 24px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #1EBBD7 0%, #0D7377 100%);
            color: #050A14;

            padding: 12px 24px;
            border-radius: 9999px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(30, 187, 215, 0.3);
        }

        .btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;

            padding: 12px 24px;
            border-radius: 9999px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* Form Styles */
        .form-input {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #ffffff;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--color-primary);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 20px rgba(30, 187, 215, 0.1);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;

            color: rgba(255, 255, 255, 0.8);
        }

        .form-group {
            margin-bottom: 24px;
        }

        /* Contact Card */
        .contact-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s ease;
        }

        .contact-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(30, 187, 215, 0.3);
            transform: translateY(-4px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: rgba(30, 187, 215, 0.1);
            border: 1px solid rgba(30, 187, 215, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #1EBBD7 0%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Office Card */
        .office-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .office-card img {
            transition: transform 0.5s ease;
        }

        .office-card:hover img {
            transform: scale(1.05);
        }

        .office-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5, 10, 20, 0.9), rgba(5, 10, 20, 0.3));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
        }

        /* Social Icons */
        

        

        /* FAQ Accordion */
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-question {
            padding: 24px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--color-primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 24px;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        .social-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            background: linear-gradient(135deg, #1EBBD7, #1699A8);
            border: 1px solid rgba(30,187,215,0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 18px rgba(30,187,215,0.45);
            color: #ffffff;
        }

        .social-icon i {
            font-size: 18px;
            color: #ffffff;
            display: inline-block;
            opacity: 1;
            visibility: visible;
        }

        body.contact-page main,
        body.contact-page .page-content,
        body.contact-page .contact-page,
        body.contact-page .contact-section,
        body.contact-page .contact-form,
        body.contact-page .contact-info,
        body.contact-page .contact-card,
        body.contact-page section {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            height: auto !important;
            overflow: visible !important;
            position: relative;
            z-index: 2;
        }

        body.contact-page [data-aos],
        body.contact-page .reveal,
        body.contact-page .fade-up,
        body.contact-page .animate-on-scroll {
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
        }

        .contact-form-message {
            min-height: 1.25rem;
            color: rgba(255,255,255,0.75);
        }

        .contact-form-message.success {
            color: #1EBBD7;
        }

        .contact-form-message.error {
            color: #ff6b6b;
        }
