:root {
    --primary: #F04E30;
    --primary-hover: #d63b1f;
    --text: #58595B;
    --text-dark: #454545;
    --black: #000000;
    --white: #FFFFFF;
    --bg-back: #F6F6F6;
    --border: #e5e7eb;
    --shadow-card: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
input, select, textarea, button { font-family: 'Montserrat', sans-serif; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header {
    background: var(--white);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-top { padding: 12px 0; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

/* Logo */
.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1002;
}
.logo span { color: var(--primary); }
.logo i { font-size: 20px; color: var(--primary); }

/* Search Bar */
.search-wrapper {
    flex: 1;
    max-width: 450px;
    margin: 0 20px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 45px 10px 20px;
    border: 2px solid var(--bg-back);
    background: var(--bg-back);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    transition: 0.3s;
}

.search-input:focus {
    background: var(--white);
    border-color: var(--primary);
    outline: none;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Actions Area */
.actions-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.desktop-lang {
    position: relative;
    display: flex;
    align-items: center;
}

.lang_opt {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #dee2e6 !important; 
    border-radius: 25px;
    padding: 8px 30px 8px 12px;
    font-size: 13px;
    color: #F04E30; 
    font-weight: 500;
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
}

.lang_opt:hover {
    border-color: #aaa;
}

.btn-quote {
    background: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}
.btn-quote:hover { background: var(--primary-hover); transform: translateY(-1px); }

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--black);
    z-index: 1002;
}

/* --- NAVIGATION (DESKTOP) --- */
.nav-bar-wrapper {
    background: var(--white);
    border-top: 1px solid #f1f1f1;
    position: relative;
    z-index: 999;
}

.ms-menu-inner .main-menu {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list-item { position: relative; }

.nav-list-item > .nav-link, 
.nav-list-item > .has-arrow > .nav-link {
    display: flex;
    align-items: center;
    padding: 15px 0;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.nav-list-item:hover > .nav-link, 
.nav-list-item:hover > .has-arrow > .nav-link {
    color: var(--primary);
}

/* Level 2 Dropdown */
.nav-list-item .drop-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary);
    z-index: 1000;
    padding: 0;
    list-style: none;
}

.nav-list-item:hover > .drop-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

.drop-submenu {
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.drop-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
    width: 100%;
}

.drop-submenu:hover > .has-arrow > .drop-link,
.drop-link:hover {
    background: #fdfdfd;
    color: var(--primary);
}

/* Level 3 Dropdown */
.drop-menu .drop-menu.submenu-right {
    top: 0;
    left: 100%;
    margin-top: 0;
    display: none;
    border-top: 3px solid var(--primary);
    height: auto;
    min-height: 100%;
}

.drop-submenu:hover > .drop-menu.submenu-right {
    display: block;
}

.drop-menu li a:not(.drop-link) {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f9f9f9;
}

.drop-menu li a:not(.drop-link):hover {
    color: var(--primary);
    background: #fff5f5;
}

.fa-chevron-down { font-size: 10px; margin-top: 2px; }
.fa-chevron-right { font-size: 10px; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- MOBILE MENU --- */
.mobile-nav-overlay {
    display: none; 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.5); z-index: 1005; 
}
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--white); z-index: 1010; transition: 0.4s ease;
    padding: 20px; overflow-y: auto;
}
.mobile-menu.active { right: 0; }

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

#mobile-cloned-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}
#mobile-cloned-menu .nav-list-item {
    border-bottom: 1px solid #f1f1f1;
}
#mobile-cloned-menu .nav-link {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
}
#mobile-cloned-menu .drop-menu,
#mobile-cloned-menu .drop-menu.submenu-right {
    position: static;
    width: 100%;
    box-shadow: none;
    border-top: none;
    display: none;
    background: #fcfcfc;
    padding-left: 15px;
}
#mobile-cloned-menu .drop-link {
    font-weight: 600;
    color: #444;
    padding: 12px 0;
}

.has-arrow.open > .nav-link,
.has-arrow.open > .drop-link {
    color: var(--primary);
}
.has-arrow.open .fa-chevron-down,
.has-arrow.open .fa-chevron-right {
    transform: rotate(90deg);
    transition: 0.3s;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    background: url('https://images.unsplash.com/photo-1638202993928-7267aad84c31?q=80&w=1974&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #FFFFFF 35%, rgba(255,255,255,0.85) 55%, rgba(255,255,255,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-left {
    max-width: 50%;
    padding-left: 10px;
}

.hero-left h1 {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}
.hero-left h1 span { color: var(--primary); }

.hero-left p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-right { width: 450px; max-width: 100%; }

.quote-card1 {
    background: rgba(255, 255, 255, 0.98);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--white);
}

.quote-card1 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
}

.custom-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-back);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    transition: 0.3s;
}
.custom-input:focus {
    background: var(--white);
    border-color: var(--primary);
    outline: none;
}

.phone-flex { display: flex; gap: 10px; margin-bottom: 15px; }

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(240, 78, 48, 0.2);
}
.submit-btn:hover { background: var(--black); transform: translateY(-2px); }

/* --- FOOTER SECTION --- */
.main-footer {
    background-color: #003B73; 
    color: var(--white);
    padding: 60px 0 30px;
    font-size: 14px;
    position: relative;
}

.main-footer a {
    color: #B0CBE6;
    text-decoration: none;
    transition: 0.3s;
}
.main-footer a:hover {
    color: var(--primary);
    padding-left: 5px; 
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.address-col {
    grid-column: span 1.5; 
}

.address-block {
    margin-bottom: 15px;
}
.address-block strong {
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}
.address-block p {
    color: #B0CBE6;
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact-card {
    background: linear-gradient(90deg, #D9EAF7 0%, #CDE3F5 100%);
    border-radius: 16px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 40px;
    color: #333;
}

.contact-info-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.c-icon {
    width: 50px; height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.whatsapp-bg { color: #25D366; }

.c-text { display: flex; flex-direction: column; }
.c-text span { font-size: 12px; font-weight: 600; color: #666; }
.c-text a { 
    color: #003B73; 
    font-weight: 700; 
    font-size: 16px; 
    padding-left: 0 !important; 
}

.c-sep { width: 1px; height: 40px; background: #aaa; }

.gptw-badge {
    background: #F04E30;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.1;
    border-radius: 4px;
    position: relative;
}
.certified-strip {
    background: #003B73;
    font-size: 10px;
    padding: 2px;
    margin-top: 5px;
}

.social-group { display: flex; gap: 10px; }
.s-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white !important;
    font-size: 18px;
    padding: 0 !important;
    transition: transform 0.3s;
}
.s-icon:hover { transform: translateY(-3px); }

.yt { background: #FF0000; }
.in { background: #0077B5; }
.fb { background: #1877F2; }
.ig { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

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

.disclaimer {
    font-size: 11px;
    color: #8AA8C7;
    margin-bottom: 15px;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #B0CBE6;
}

.dmca-badge {
    background: #85C039;
    color: #000;
    padding: 2px 6px;
    font-weight: 700;
    font-size: 10px;
    border-radius: 2px;
}

#scrollTopBtn {
    display: none; 
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #F04E30;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

#scrollTopBtn:hover {
    background-color: #d63b1f;
    transform: translateY(-3px);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    /* Hide Desktop Elements */
    .desktop-nav-wrapper, .desktop-lang, .search-wrapper, .btn-quote { 
        display: none; 
    }
    .hamburger { display: block; }
    
    header { padding: 0 10px; }
    
    /* Hero */
    .hero { margin-top: 0px; padding: 30px 0; text-align: center; }
    .hero::before { background: linear-gradient(to bottom, rgba(255,255,255,1) 25%, rgba(255,255,255,0.6)); }
    .hero-content { flex-direction: column; gap: 40px; }
    
    .hero-left { max-width: 100%; }
    .hero-left h1 { font-size: 36px; }
    .hero-right { width: 100%; }

    /* Footer */
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .address-col { grid-column: span 3; }
    
    .footer-contact-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .contact-info-group { flex-direction: column; gap: 15px; }
    .c-sep { display: none; }
}

@media (max-width: 600px) {
    .footer-links-grid { grid-template-columns: 1fr; text-align: center; }
    .address-col { grid-column: span 1; }
    .copyright-row { flex-direction: column; gap: 10px; }
}