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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f2f2f2;
    color: #333;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

/* ===== Header ===== */
.header {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.header .container {
    display: flex;
    align-items: center;
    height: 70px;
}

.logo {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav {
    margin-left: auto;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-size: 19px;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e60000;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #e60000;
}

.nav a:hover::after {
    width: 100%;
}

.nav a.active {
    color: #e60000;
    font-weight: bold;
}

.nav a.active::after {
    width: 100%;
}

/* ===== Mega Menu ===== */
.nav-dropdown {
    display: inline-block;
    position: relative;
    margin-left: 20px;
}

.nav-dropdown-trigger {
    margin-left: 0 !important;
    cursor: pointer;
}

.mega-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #e60000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 200;
    padding: 30px 0 35px;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-trigger {
    color: #e60000;
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
    width: 100%;
}

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-img {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mega-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mega-col:hover .mega-img img {
    transform: scale(1.05);
}

.mega-cat-title {
    font-size: 16px;
    font-weight: 800;
    color: #222;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.mega-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e60000, #ff6666);
    border-radius: 1px;
    margin-bottom: 12px;
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-links a {
    margin-left: 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #555 !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease, padding-left 0.2s ease;
    padding: 2px 0;
}

.mega-links a::after {
    display: none !important;
}

.mega-links a:hover {
    color: #e60000 !important;
    padding-left: 5px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 60px 0;
    background: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Left Form */
.contact-form-container {
    flex: 1;
    padding: 50px 40px;
    background: #fff;
}

.contact-form-container h2 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 12px;
}

.contact-form-container .subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder {
    color: #c43c3c;
}

.form-group input:focus {
    border-bottom-color: #2b5797;
}

.form-group .icon {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #999;
}

.message-group {
    margin-bottom: 25px;
}

.message-group textarea {
    width: 100%;
    height: 100px;
    padding: 15px 15px 15px 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    resize: vertical;
    outline: none;
    font-family: inherit;
}

.message-group textarea::placeholder {
    color: #999;
}

.message-group textarea:focus {
    border-color: #2b5797;
}

.message-group {
    position: relative;
}

.message-group .icon {
    position: absolute;
    left: 12px;
    top: 18px;
    width: 20px;
    height: 20px;
    fill: #999;
}

.submit-btn {
    display: block;
    margin-left: auto;
    padding: 12px 30px;
    background: #9f0b29;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1e4275;
}

/* Right Info Card */
.contact-info-container {
    width: 350px;
    background: #9f0b29;
    color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.info-header {
    margin-bottom: 25px;
}

.info-header .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.info-header h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.info-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.info-list {
    margin-top: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.info-item .icon-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item .icon-circle svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.info-item .text {
    font-size: 14px;
    line-height: 1.4;
}

/* Quote Section */
.quote-section {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-mark {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 10px;
}

.quote-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* ===== Footer ===== */
.footer {
    background: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col a,
.footer-col p {
    display: block;
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 12px;
    color: #888;
}