@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
@font-face {
    font-family: 'Loos Normal';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/loos-normal-regular.otf') format('opentype');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Loos Normal', sans-serif;
    background: #111111;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFA500, #FF8C00);
    border-radius: 10px;
    border: 2px solid #111111;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFB84D, #FFA500);
}

:root {
    --primary-color: #FFA500;
    --secondary-color: #FFB84D;
    --dark-bg: #111111;
    --dark-card: #1a1a1a;
    --dark-surface: #0f0f0f;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --gradient-primary: linear-gradient(135deg, #FFA500, #FFB84D);
    --gradient-secondary: linear-gradient(135deg, #FF8C00, #FFA500);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.95), rgba(255, 140, 0, 0.1));
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    z-index: 1000;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-left: 80px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navbar a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #FF8C00;
    text-shadow: 0 0 10px #FF8C00;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFA500;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown li {
    display: block;
    width: 100%;
}

.dropdown a {
    display: flex;
    align-items: center;
    padding: 4px 20px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown a:hover {
    background: rgba(255, 140, 0, 0.15);
    border-left-color: #FF8C00;
    padding-left: 25px;
    color: #FF8C00;
}

/* Hero Contact */
.hero-contact {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 80px;
    background: radial-gradient(ellipse at center, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,140,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-contact h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-contact .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-contact p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 0;
    height: 0;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    margin-left: -150px;
    margin-top: -150px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
}

.pulse-circle:nth-child(2) {
    animation-delay: 1s;
}

.pulse-circle:nth-child(3) {
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Contact Main */
.contact-main {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Form Section */
.contact-form-section {
    background: var(--dark-surface);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header p {
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group.focused label {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.form-group.focused .input-line {
    width: 100%;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    margin-top: 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: #000;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-surface);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    transform: translateX(5px);
    border-left: 3px solid var(--primary-color);
    cursor: pointer;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.method-info p {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.method-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-section {
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    padding-top: 1.5rem;
}

.social-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--dark-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--dark-surface);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 140, 0, 0.05);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-secondary);
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    z-index: 10;
    position: relative;
    flex-wrap: wrap;
}

.footer-logo {
    max-width: 250px;
}

.logo-footer-img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.75em;
    line-height: 1.4;
    opacity: 0.7;
}

.footer-links, .footer-contact {
    margin-left: 50px;
}

.footer-links h3, .footer-contact h3 {
    color: var(--primary-color);
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin: 5px 0;
    font-size: 0.9em;
}

.fi-sr-phone-call,
.fi-sr-envelope,
.fi-sr-marker {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 15px 30px;
    }
    
    .logo-img {
        margin-left: 20px;
    }
    
    .navbar ul {
        gap: 25px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    .logo-img {
        height: 40px;
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(15px);
        border-right: 1px solid rgba(255, 140, 0, 0.2);
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 20px 0;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .navbar li {
        border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    }
    
    .navbar > ul > li > a {
        display: block;
        padding: 15px 20px;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        border: none;
        padding: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.active .dropdown {
        max-height: 500px;
    }
    
    .dropdown a {
        padding: 12px 30px !important;
        border-left: none !important;
    }
    
    .hero-contact {
        padding: 120px 20px 60px;
        min-height: 50vh;
    }
    
    .hero-contact h1 {
        font-size: 2rem;
    }
    
    .hero-contact p {
        font-size: 1rem;
    }
    
    .contact-animation {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 5%;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        margin-left: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-contact h1 {
        font-size: 1.75rem;
    }
    
    .contact-form-section {
        padding: 1rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .method-info p {
        font-size: 0.85rem;
        word-break: break-all;
    }
}
