* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.top-strip {
    background: #181731;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-strip-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.icon-text {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.icon-text:hover {
    opacity: 0.8;
}

.icon-text img {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

/* Navbar */
.main-navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    flex-wrap: wrap;
}

.scrolled .navbar-content {
    padding: 10px 20px;
}

.logo-placeholder {
    width: 220px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.logo-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Navigation Menu */
.main-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #233e7b;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d18141;
}

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

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

/* Phone section */
.phone-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-value {
    font-size: 1.1em;
    font-weight: 600;
    color: #d18141;
    display: flex;
    align-items: center;
}

/* Main content */
.main-content {
    padding: 60px 20px;
    background: #fff;
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.content-wrapper {
    text-align: center;
}

.content-wrapper h1 {
    color: #233e7b;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

/* Coming Soon Animation */
.coming-soon-container {
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-text {
    font-size: 3rem;
    font-weight: 700;
    color: #233e7b;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    margin: 0 2px;
}

.space {
    width: 20px;
    display: inline-block;
}

.dot {
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.pulse-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #d18141;
    border-radius: 50%;
}

/* Footer */
footer {
    background: #181731;
    color: #fff;
    padding: 60px 20px 20px;
}

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

.footer-section h3 {
    color: #d18141;
    margin-bottom: 15px;
}

.footer-section p, .footer-section li {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.6;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: #d18141;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

.social-icons a:hover {
    background: #d18141;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter-form button {
    width: 100%;
    background: #d18141;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
}

/* Copyright */
.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.copyright-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* ---------------- Responsive Breakpoints ---------------- */

/* Tablets */
@media (max-width: 992px) {
    .navbar-content {
        flex-direction: column;
        align-items: center;
    }

    .main-menu ul {
        gap: 20px;
    }

    .content-wrapper h1 {
        font-size: 2rem;
    }

    .coming-soon-text {
        font-size: 2.4rem;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .top-strip-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .main-menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .phone-section {
        align-items: center;
    }

    .logo-placeholder {
        width: 180px;
    }

    .coming-soon-text {
        font-size: 2rem;
        flex-direction: row;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .content-wrapper h1 {
        font-size: 1.6rem;
    }

    .coming-soon-text {
        font-size: 1.6rem;
    }

    .top-strip {
        font-size: 0.8em;
    }

    .logo-placeholder {
        width: 140px;
    }
}
