/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-divine {
    color: #00FFFF;
}

.brand-traders {
    color: #FF00FF;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #A0A0A0;
    font-weight: 500;
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #A0A0A0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FFFF, #FF00FF);
    border-radius: 1px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #00FFFF;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.mobile-menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.mobile-menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.mobile-menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer Styles */
.footer {
    background-color: #0a0a0a;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-upper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.brand-name {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #00FFFF, #FF00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.brand-description {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 16px;
    color: #00FFFF;
    text-shadow: 0 0 10px #00FFFF;
    width: 20px;
    text-align: center;
}

.contact-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 1.3;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #00FFFF;
    text-shadow: 0 0 10px #00FFFF;
}

.footer-lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #FFFFFF;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.heart {
    color: #ff0000;
    font-size: 16px;
    text-shadow: 0 0 10px #ff0000;
}

.hercules-link {
    color: #00FFFF;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px #00FFFF;
    transition: all 0.3s ease;
}

.hercules-link:hover {
    color: #00FFFF;
    text-shadow: 0 0 20px #00FFFF;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
}

.social-icon.linkedin {
    border-color: #00FFFF;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.social-icon.linkedin:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.social-icon.twitter {
    border-color: #FF00FF;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.social-icon.twitter:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

.social-icon.facebook {
    border-color: #8A2BE2;
    box-shadow: 0 0 15px rgba(128, 0, 255, 0.3);
}

.social-icon.facebook:hover {
    background: rgba(128, 0, 255, 0.1);
    box-shadow: 0 0 25px rgba(128, 0, 255, 0.5);
}

.social-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header Section */
.contact-header {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #0a0a0a 100%);
}

.support-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 30px;
}

.support-icon {
    color: #00FFFF;
    font-size: 16px;
}

.support-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-description {
    font-size: 1.1rem;
    color: #A0A0A0;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: #0a0a0a;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #00FFFF;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #00FFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Section */
.form-section {
    position: relative;
}

.form-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    /* text-align: center; */
    position: relative;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 1rem;
    color: #A0A0A0;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    background-color: #0a0a0a;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00FFFF;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #A0A0A0;
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: #00FFFF;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #FF00FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.submit-icon {
    width: 20px;
    height: 20px;
}

/* Info Section */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card,
.links-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    /* text-align: center; */
    position: relative;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.info-title,
.links-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FFFF;
    flex-shrink: 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    color: #A0A0A0;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-value {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-link.whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
}

.quick-link.whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.quick-link.linkedin,
.quick-link.instagram {
    background-color: #1A1A2E;
    color: #A0A0A0;
    border-color: rgba(138, 43, 226, 0.2);
}

.quick-link.linkedin:hover,
.quick-link.instagram:hover {
    background-color: rgba(138, 43, 226, 0.1);
    color: #FFFFFF;
}

.quick-link.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.quick-link.disabled:hover {
    transform: none;
    background-color: #1A1A2E;
    color: #A0A0A0;
}





/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-card,
    .info-card,
    .links-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(0, 255, 255, 0.1);
    }
    
    .header-nav.mobile-nav-open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 255, 255, 0.1);
        color: #00FFFF;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    .form-card,
    .info-card,
    .links-card {
        padding: 25px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .info-title,
    .links-title {
        font-size: 1.3rem;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .contact-details {
        gap: 15px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .contact-header {
        padding: 60px 0 40px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .main-description {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .form-card,
    .info-card,
    .links-card {
        padding: 20px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .info-title,
    .links-title {
        font-size: 1.2rem;
    }
    
    .contact-form {
        gap: 18px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .contact-details {
        gap: 12px;
    }
    
    .contact-item {
        gap: 10px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
    }
    
    .contact-label {
        font-size: 0.85rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
    }
    
    .quick-link {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #8A2BE2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9932CC;
}

/* Form validation styles */
.form-input:invalid:not(:placeholder-shown) {
    border-color: #ff4757;
}

.form-input:valid:not(:placeholder-shown) {
    border-color: #2ed573;
}

/* Loading state for submit button */
.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-button:disabled:hover {
    background-color: #8A2BE2;
    transform: none;
    box-shadow: none;
}

.cargo-ship-animation {
    position: fixed;
    bottom: 30%;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    justify-content: flex-start;
}

.cargo-ship-animation .cargo-ship-track {
    width: fit-content;
    transform: translateX(-150vw);
    animation: cargoShipTravel 55s linear infinite;
    will-change: transform;
}

.cargo-ship-animation svg {
    display: block;
    transform-origin: center center;
    animation: cargoShipFlip 55s linear infinite;
    will-change: transform;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
}

.fade-in-up.is-visible {
    animation: fadeInUp 0.9s ease forwards;
}

@keyframes cargoShipTravel {
    0% {
        transform: translateX(-150vw);
    }

    50% {
        transform: translateX(150vw);
    }

    100% {
        transform: translateX(-150vw);
    }
}

@keyframes cargoShipFlip {
    0%,
    49.999% {
        transform: scaleX(1);
    }

    50%,
    100% {
        transform: scaleX(-1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
