/* Base Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* ===== NAVIGATION STYLES ===== */

/* Header Container */
.site-header {
    background-color: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-footer {
    background-color: #2c3e50;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
}

.site-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Desktop Navigation */
.site-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.site-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.site-link:hover {
    color: #5B9BD5;
}

/* Right Side: Phone + Languages */
.site-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-btn {
    background-color: white;
    color: #2c3e50;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.phone-btn:hover {
    background-color: #f0f0f0;
}

.lang-switcher {
    display: flex;
    gap: 15px;
}

.lang-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.lang-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-link.active {
    background-color: #5B9BD5;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 62, 80, 0.98);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #5B9BD5;
}

/* ===== EXISTING STYLES ===== */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Section Heading - Always Full Width */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: #000;
}

.section-heading p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* Section Content */
.section-content {
    width: 100%;
}

/* Layout: Multi Column */
.two-column,
.three-column {
    display: grid;
    gap: 40px;
}

.two-column {
    grid-template-columns: 1fr 1fr;
}

.three-column {
    grid-template-columns: repeat(3, 1fr);
}

.column {
    flex: 1;
}

.two-column>.column {
    max-width: 600px;
}

/* Typography */
h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: #000;
}

h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: #000;
}

p {
    font-size: 16px;
    margin: 0 0 30px;
}

.brand {
    color: #5B9BD5;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 15px;
}

.buttons-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    box-sizing: border-box;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.9;
}

.cta-primary {
    background-color: #2c3e50;
    color: white;
}

.cta-secondary {
    background-color: #d4d4d4;
    color: #333;
}

.cta-finally {
    background-color: #4A90E2;
    color: white;
}

/* Images */
.image-wrapper {
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Cards Grid - Flexible centering layout */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.dynamic-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    flex: 0 1 calc(33.333% - 14px);
    min-width: 280px;
    max-width: 400px;
}

.dynamic-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.dynamic-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

.static-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: left;
    flex: 0 1 calc(33.333% - 14px);
    min-width: 280px;
}

.static-card img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.static-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

/* Icon */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #4A90E2;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* List Grid */
.list-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}


.list-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

.list-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.list-content {
    flex: 1;
}

.list-content p {
    margin-bottom: 0;
}

/* List Images */
.list-images {
    display: grid;
    gap: 2px;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.list-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.list-images.images-1 {
    grid-template-columns: 1fr;
}

.list-images.images-1 img {
    height: 200px;
}

.list-images.images-2 {
    grid-template-columns: repeat(2, 1fr);
}

.list-images.images-3 {
    grid-template-columns: repeat(3, 1fr);
}

.list-images.images-4 {
    grid-template-columns: repeat(2, 1fr);
}

/* Info Block */
.info-block {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-block>div {
    margin-top: 8px;
}

.info-block h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.info-block p {
    margin-bottom: 0;
}

/* Iframe */
iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: 8px;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .site-container {
        padding: 0 30px;
    }

    .site-nav {
        gap: 25px;
    }

    .site-link {
        font-size: 15px;
    }

    .site-right {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .two-column,
    .three-column {
        grid-template-columns: 1fr;
    }

    /* Navigation Mobile */
    .site-container {
        padding: 0 20px;
        height: 70px;
        flex-wrap: wrap;
        position: relative;
    }

    .logo {
        margin: 0 auto;
    }

    .logo img {
        height: 40px;
    }

    .site-nav {
        display: none;
    }

    .phone-btn {
        width: 200px;
        text-align: center;
    }

    .lang-switcher {
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Content Styles */
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 1.75rem;
    }

    .buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .dynamic-card,
    .static-card {
        padding: 35px 25px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper img {
        width: 40px;
        height: 40px;
    }

    .list-grid {
        grid-template-columns: 1fr;
    }

    .list-card {
        padding: 20px;
    }

    .list-images img {
        height: 120px;
    }

    .list-images.images-1 img {
        height: 180px;
    }

    .info-block {
        padding: 25px;
    }

    .info-block h2 {
        font-size: 20px;
    }
}
