* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

:root {
    --primary-color: #071a2d;
    --blue-color: #00b4ff;
    --secondary-color: #f3961c;
    --white: #fff;
}

header {
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: relative;
}

.corner-logo {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    position: relative;
    transition: 0.3s;
}

.nav-menu a:hover {
    background: var(--blue-color);
    transform: translateY(-3px);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 60%;
}

.language-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 18px;
    border-radius: 8px;
}

.language-btn:hover {
    background: var(--blue-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
}

.contact-hero {
    height: 50vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(rgba(7,26,45,0.8), rgba(7,26,45,0.8)),
        url("luke-chesser-pJadQetzTkI-unsplash.jpg");

    background-size: cover;
    background-position: center;

    color: white;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-info {
    padding: 70px 8%;

    background:
        radial-gradient(circle at 20% 10%, rgba(0, 180, 255, 0.14), transparent 45%),
        radial-gradient(circle at 85% 90%, rgba(243, 150, 28, 0.08), transparent 40%),
        var(--primary-color);

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    padding: 30px;
    border-radius: 16px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 180, 255, 0.15);
}

.contact-card h3 {
    color: var(--white);
    margin: 4px 0 8px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-card i {
    font-size: 2rem;
    color: #00b4ff;
    margin-bottom: 15px;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 18px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 45%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.65s ease;
}

.contact-action-btn:hover::before {
    left: 125%;
}

.contact-action-btn i {
    font-size: 1rem;
    color: white;
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.contact-action-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.contact-action-btn:hover i {
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .contact-action-btn, .contact-action-btn::before, .contact-action-btn i {
        transition: none !important;
    }
}

.phone-btn {
    background: #071a2d;
}

.phone-btn:hover {
    background: #0d2d4d;
    box-shadow: 0 6px 16px rgba(7, 26, 45, 0.4);
}

.email-btn {
    background: #00b4ff;
}

.email-btn:hover {
    background: #0095d4;
    box-shadow: 0 6px 16px rgba(0, 180, 255, 0.35);
}

.location-btn {
    background: #f3961c;
}

.location-btn:hover {
    background: #d97f10;
    box-shadow: 0 6px 16px rgba(243, 150, 28, 0.35);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    transform: translateY(-3px) scale(1.03);
}

.contact-form-section {
    padding: 70px 8%;
    background: var(--primary-color);
}

.contact-form-container {
    max-width: 700px;
    margin: auto;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-container input,
.contact-form-container textarea {
    padding: 15px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: var(--white);

    font-size: 1rem;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-form-container button {
    padding: 15px;

    border: none;
    border-radius: 8px;

    background: #00b4ff;
    color: white;

    font-size: 1rem;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.contact-form-container button:hover {
    background: #0095d4;
    transform: translateY(-3px);
}

.location-section {
    padding: 60px 8%;
    text-align: center;
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.85);
}

.location-section h2 {
    color: var(--white);
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .contact-hero h1 {
        font-size: 2.2rem;
    }

}

.footer {
    background: #04111f;
    color: white;
    padding-top: 60px;
    margin-top: 0px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section a {
    word-break: break-word;
}

.footer-section h2,
.footer-section h3 {
    color: var(--blue-color);
    margin-bottom: 15px;
    text-align: left;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    word-break: break-word;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: var(--blue-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
   justify-content: flex-start;
    flex-wrap: wrap;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--blue-color);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.email {
    white-space: nowrap;
}

.location{
   white-space: nowrap;
}

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        padding: 0 10px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-section ul {
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding: 15px;
    }
}

@media (max-width: 768px) {

    .footer-section h2,
    .footer-section h3 {
        text-align: center;
    }

}

@media (max-width: 768px) {
    
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        display: none;

        position: absolute;
        top: 80px;
        right: 20px;

        width: 220px;

        flex-direction: column;
        align-items: center;

        background: #071a2d;

        padding: 20px;

        border-radius: 12px;

        box-shadow: 0 10px 25px rgba(0,0,0,0.3);

        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        width: 100%;
        display: block;
    }
}

html, body {
    overflow-x: hidden;
}

/* Windows XP Preloader Styling */
.xp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* XP Boot screen was black */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Tahoma", "Verdana", sans-serif;
    transition: opacity 0.7s ease;
}

.xp-wrapper {
    text-align: center;
    width: 300px;
}

.xp-logo {
    color: white;
    margin-bottom: 40px;
    position: relative;
}

.xp-brand {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: left;
    margin-left: 65px;
}

.xp-product {
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    letter-spacing: -1px;
}

.xp-product span {
    color: #ff6600;
    font-size: 1rem;
    vertical-align: top;
    margin-left: 5px;
    font-style: normal;
}

/* The Loading Track */
.xp-loader-container {
    width: 200px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 4px;
    margin: 0 auto;
    padding: 2px;
    position: relative;
    overflow: hidden;
}

/* The 3 blue blocks */
.xp-loader-bar {
    display: flex;
    gap: 2px;
    position: absolute;
    height: 14px;
    animation: xp-slide 2s linear infinite;
}

.xp-segment {
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, #2d68d2, #6597e8, #2d68d2);
    border-radius: 1px;
}

@keyframes xp-slide {
    0% { left: -50px; }
    100% { left: 210px; }
}

.xp-footer {
    position: absolute;
    bottom: 50px;
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
}

.xp-mini-logo {
    width: 30px;
    filter: grayscale(1) brightness(2); /* Makes logo white/silver for the dark screen */
    margin-bottom: 10px;
}

/* Windows XP Preloader with Logo Integration */
.xp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Tahoma", "Verdana", sans-serif;
    transition: opacity 0.7s ease;
}

.xp-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.xp-main-logo {
    width: 180px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px;
    /* Optional: Brightens the logo for the black background */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2)); 
}

.xp-brand-text {
    color: white;
    text-align: center;
}

.xp-brand {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.xp-product {
    font-size: 2.8rem;
    font-weight: bold;
    font-style: italic;
}

.xp-product span {
    color: #ff6600; /* The classic orange XP text */
    font-size: 1.2rem;
    vertical-align: top;
    font-style: normal;
}

/* Loader Bar Styling */
.xp-loader-container {
    width: 220px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    padding: 2px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.xp-loader-bar {
    display: flex;
    gap: 3px;
    position: absolute;
    height: 16px;
    animation: xp-slide 2s linear infinite;
}

.xp-segment {
    width: 12px;
    height: 100%;
    background: linear-gradient(to bottom, #2d68d2, #6597e8, #2d68d2);
    border-radius: 2px;
}

@keyframes xp-slide {
    0% { left: -60px; }
    100% { left: 230px; }
}

.xp-footer {
    position: absolute;
    bottom: 40px;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.5;
}

.offline-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #b45309;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10000;
    animation: slideDown 0.4s;
}

.offline-banner__dot {
    line-height: 1;
}

.offline-banner__text {
    line-height: 1.4;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}