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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #2c3e50 100%);
    color: #e8eaf0;
    min-height: 100vh;
    line-height: 1.6;
    padding: 20px;
}

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

.hero {
    text-align: center;
    padding: 60px 20px 50px;
}

.logo {
    max-width: 240px;
    height: auto;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.05rem;
    color: #a8b2c4;
    max-width: 600px;
    margin: 0 auto 40px;
}

.loader {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.loader span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e63946;
    animation: bounce 1.4s infinite ease-in-out;
}

.loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.contact-main,
.branches {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 30px;
}

h2 {
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 35px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e63946;
    border-radius: 2px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    display: block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(230, 57, 70, 0.15);
    border-color: #e63946;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #e63946;
}

.card-label {
    font-size: 0.85rem;
    color: #a8b2c4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.card-value {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
    word-break: break-word;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.branch {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 22px;
    transition: all 0.3s ease;
}

.branch:hover {
    border-color: rgba(230, 57, 70, 0.5);
    transform: translateY(-2px);
}

.branch h3 {
    color: #e63946;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.branch .addr {
    font-size: 0.92rem;
    color: #c9d1e0;
    margin-bottom: 12px;
}

.branch .tel a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.branch .tel a::before {
    content: '\260E';
    color: #e63946;
}

.branch .tel a:hover {
    color: #e63946;
}

footer {
    text-align: center;
    padding: 30px 20px;
    color: #8590a6;
    font-size: 0.88rem;
}

footer .company {
    color: #c9d1e0;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.92rem;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .hero {
        padding: 40px 10px 30px;
    }
    .logo {
        max-width: 180px;
        padding: 15px 20px;
    }
    .contact-main,
    .branches {
        padding: 30px 18px;
    }
}
