:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --navy: #001f3f;
    --light-gray: #f8f9fa;
    --text: #333;
    --text-light: #666;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    color: #333;
}

/* Shared Top Header & Navbar styles (same as services page) */
.top-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    z-index: 1040;
    position: relative;
}
.top-header.scrolled { box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.top-header .info-group { gap: 40px; }
.top-header .info-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.top-header .info-item i { color: #007bff; font-size: 16px; }
.top-header .info-text small { display: block; font-size: 12px; color: #888; }
.top-header .info-text strong, .top-header .info-text a strong { font-size: 15px; color: #333; }
.top-header .info-text a { color: inherit; text-decoration: none; }
.top-header .social-icons a { color: #555; font-size: 18px; margin-left: 15px; transition: color 0.3s; }
.top-header .social-icons a:hover { color: #007bff; }
.top-header .dashed-divider { height: 35px; width: 1px; background: repeating-linear-gradient(to bottom, transparent 0px, transparent 4px, #ddd 4px, #ddd 8px); }

.main-navbar {
    background: transparent;
    transition: all 0.4s ease;
    padding: 20px 0;
    z-index: 1030;
    position: fixed;
    top: 0; left: 0; right: 0;
}
.main-navbar.scrolled {
    background: #001f3f;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.main-navbar .navbar-brand h2 { color: #fff; font-size: 32px; font-weight: bold; margin: 0; }
.main-navbar .nav-link { color: #fff !important; font-size: 16px; font-weight: 500; padding: 0.5rem 1rem !important; border-radius: 8px; transition: background 0.3s; }
.main-navbar .nav-link:hover, .main-navbar .nav-link.active { background: rgba(255,255,255,0.15); }
.main-navbar .navbar-toggler { border: none; }
.main-navbar .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

#lang-toggle { border: 1px solid rgba(255,255,255,0.5); color: white; font-weight: bold; transition: all 0.3s; }
#lang-toggle:hover { background: rgba(255,255,255,0.2); }
.main-navbar.scrolled #lang-toggle { border-color: #fff; }

/* Hero (same style as other pages) */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('https://plus.unsplash.com/premium_photo-1663047022624-2e573ccd0682?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OXx8Y2xlYW5pbmclMjBzZXJ2aWNlc3xlbnwwfHwwfHx8MA%3D%3D') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.hero-content .eyebrow { font-size: 18px; letter-spacing: 6px; text-transform: uppercase; opacity: 0.8; margin-bottom: 20px; }
.hero-content h1 { font-size: 90px; font-weight: 800; letter-spacing: 3px; margin: 0; }
.hero-content .tagline { font-size: 28px; margin: 30px 0 40px; opacity: 0.9; max-width: 800px; }
.hero .scroll-hint { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); font-size: 16px; opacity: 0.7; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* Contact Section Specific */
.contact-section { padding: 100px 0; background-color: #f8f9fa; }
.contact-info-list strong { font-size: 1.1rem; color: var(--navy); }
.contact-info-list a { color: var(--text); text-decoration: none; }
.contact-info-list a:hover { color: var(--primary); }
.contact-form { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-form .form-control { border-radius: 8px; padding: 12px 16px; }
.contact-form .btn-primary { background: var(--primary); border: none; }

/* Footer - EXACT SAME AS SERVICES PAGE */
footer {
    background: var(--navy);
    color: #ddd;
    padding: 80px 0 30px;
}
footer a {
    color: #ddd;
    text-decoration: none;
}
footer a:hover {
    color: var(--primary);
}
footer h5 {
    color: #fff;
    position: relative;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}
footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}
footer .social-icons a {
    font-size: 1.4rem;
    margin-right: 1rem;
    color: #fff;
}
footer .social-icons a:hover {
    color: var(--primary);
    transform: translateY(-4px);
}
.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .top-header .info-group { flex-direction: column; gap: 15px; align-items: center; }
    .top-header .dashed-divider { display: none; }
    .top-header .social-icons { margin-top: 15px; }
    .hero-content h1 { font-size: 60px; }
}