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

body {
    background-color: #0b0f19;
    color: #f1f5f9;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    overflow-x: hidden;
}


.site-header {
    width: 100%;
    background: #ffffff;
    padding: 12px 6%; 
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
   text-decoration: none;
   color: #1a1a1a;
   font-weight: 600;
   font-size: 15px;
   transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a, .btn-book-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; 
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden; 
    border-radius: 30px; 
    z-index: 1;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.link-text {
    position: relative;
    z-index: 2;
    pointer-events: none; 
}

.link-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%; 
    aspect-ratio: 1 / 1;
    background: #f27508;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.hover-target:hover .link-bg {
    transform: translate(-50%, -50%) scale(1);
}

.hover-target:hover {
    color: #ffffff; 
}

.btn-book-call {
    display: inline-flex ;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    width: auto;
    min-width: 140px; 
    height: 40px;     
    padding: 0 20px;
    border: 2px solid #ff6a00;
    border-radius: 50px;
    background: transparent;
    color: #111111;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-book-call .link-bg {
    background: #f27508; 
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.header-logo-img {
    height: 38px; 
    width: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-bold {
    font-size: 16px; 
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 9px; 
    color: #888888;
    text-transform: uppercase;
    margin-top: 1px;
}




.contact-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 77px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}


.map-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.map-bg-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) contrast(1.2) grayscale(0.2);
}

.map-overlay-darkener {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.65); 
    pointer-events: none;
}


.contact-overlay-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 28px;
    align-items: start;
}


.glass-card {
    background: rgba(20, 27, 45, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    border-color: rgba(242, 117, 8, 0.5);
    box-shadow: 0 0 30px rgba(242, 117, 8, 0.2);
    transform: translateY(-3px);
}


.dark-card {
    background: #0d1322;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.dark-card:hover {
    border-color: rgba(242, 117, 8, 0.5);
    transform: translateY(-3px);
}


.contact-card {
    padding: 40px;
}

.card-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #f27508;
    background: rgba(242, 117, 8, 0.12);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
}

.trendy-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 0 10px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 12px;
    color: #64748b;
    font-size: 0.92rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-22px);
    font-size: 0.75rem;
    font-weight: 700;
    color: #f27508;
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f27508;
    transition: width 0.3s ease;
}

.input-group input:focus ~ .input-focus-line,
.input-group textarea:focus ~ .input-focus-line {
    width: 100%;
}

.submit-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f27508;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ff841a;
    box-shadow: 0 0 25px rgba(242, 117, 8, 0.5);
    transform: translateY(-2px);
}


.contact-card-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pin-indicator {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.dark-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.dark-card .company-name {
    color: #f27508;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark-card .address {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}


.quick-contact-twin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.compact-card {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.compact-card .card-icon {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.compact-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.compact-card a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    word-break: break-all;
    transition: color 0.2s ease;
}

.compact-card a:hover {
    color: #f27508;
}


@media (max-width: 900px) {
    .contact-overlay-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-row,
    .quick-contact-twin {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none; 
    }
}



.contact-hero-wrapper {
    margin-top: 100px; 
    min-height: calc(100vh - 100px);
}

.main-footer {
    background-color: #030337;
    color: #ffffff;
    padding: 80px 6% 30px 6%;
    font-family: 'Segoe UI', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
    clear: both;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px ;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    text-align: left;
}

.footer-column h3 {
    font-size: 18px ;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px; 
    color: #f27508;
}

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

.footer-column ul li {
    font-size: 14px ;
    line-height: 1.6;
    margin-bottom: 12px ;
    color: #cccccc;
}

.footer-column ul li a {
    color: #cccccc; 
    text-decoration: none; 
    transition: color 0.2s ease-in-out; 
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #f27508 ; 
}

.location-bold-title {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-brand-column{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}

.footer-logo-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo-img{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-logo-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand-title{
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-brand-subtitle{
    font-size: 16px;
    font-weight: 800;
    color: #f27508;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    color: #888888;
    font-size: 13px ;
    margin: 0;
}

@media (max-width: 992px){
    .footer-container{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-brand-column{
        justify-content: flex-start;
        width: 100%;
        margin-top: 20px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual-showcase {
        height: 520px;
    }
}
