/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0B2C4D;
    --accent-color: #F57C00;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
}

.logo-bubble {
    background: var(--white);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 4px solid var(--bg-light);
    transition: var(--transition);
}

.logo-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.logo-img {
    height: 85px;
    width: 85px;
    display: block;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    white-space: nowrap;
    line-height: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    line-height: 1;
}

.header-phone:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: url('/images/hero-bg-main.jpg') center/cover no-repeat;
    margin-top: 90px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,44,77,0.92) 0%, rgba(11,44,77,0.75) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e67000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,124,0,0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

/* ==================== SECTIONS ==================== */
.services-section,
.about-preview,
.gallery-preview {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
}

/* ==================== SERVICES ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 16px;
    border: 2px solid #e8e8e8;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), #164a7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==================== ABOUT PREVIEW ==================== */
.about-preview {
    background: var(--bg-light);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-preview-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-preview-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.about-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== GALLERY ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-cta {
    text-align: center;
    margin-top: 64px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #164a7a 100%);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}

/* ==================== CALL FLOAT ==================== */
.call-float {
    position: fixed;
    bottom: 108px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(245,124,0,0.4);
    z-index: 999;
    transition: var(--transition);
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(245,124,0,0.5);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-preview-grid {
        gap: 48px;
    }
    
    .logo-bubble {
        width: 120px;
        height: 120px;
    }
    
    .logo-img {
        height: 85px;
        width: 85px;
    }
    
    .nav {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .header-phone {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #0B2C4D;
        transition: 0.3s;
    }
    
    .logo-bubble {
        width: 110px;
        height: 110px;
        top: 10px;
    }
    
    .logo-img {
        height: 80px;
        width: 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #164a7a 100%);
    padding: 100px 0 60px;
    margin-top: 40px;
    text-align: center;
}

.page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -1px;
    text-align: center;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    text-align: center;
}

/* ==================== ABOUT PAGE ==================== */
.about-content {
    padding: 100px 0;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.content-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.content-text-large {
    font-size: 22px;
    color: var(--text-gray);
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.content-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.content-subtitle:first-child {
    margin-top: 0;
}

.content-text {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    font-size: 17px;
    color: var(--text-gray);
    padding: 12px 0 12px 32px;
    position: relative;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== WHY CHOOSE ==================== */
.why-choose {
    background: var(--bg-light);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.2;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==================== ABOUT GALLERY ==================== */
.about-gallery {
    padding: 100px 0;
}

/* ==================== SERVICES LIST ==================== */
.services-list {
    padding: 100px 0;
}

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detailed-card:nth-child(even) {
    direction: rtl;
}

.service-detailed-card:nth-child(even) > * {
    direction: ltr;
}

.service-detailed-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    aspect-ratio: 4/3;
}

.service-detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detailed-card:hover .service-detailed-image img {
    transform: scale(1.05);
}

.service-detailed-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-detailed-desc {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detailed-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.service-detailed-list li {
    font-size: 16px;
    color: var(--text-gray);
    padding: 10px 0 10px 28px;
    position: relative;
}

.service-detailed-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

/* ==================== GALLERY PAGE ==================== */
.gallery-page {
    padding: 100px 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.gallery-masonry .gallery-item {
    aspect-ratio: auto;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item svg {
    flex-shrink: 0;
    color: var(--accent-color);
    margin-top: 4px;
}

.contact-info-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-info-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-text a:hover {
    color: var(--accent-color);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
}

/* ==================== SERVICE DETAIL PAGE ==================== */
.service-detail-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #164a7a 100%);
    padding: 180px 0 100px;
    margin-top: 90px;
}

.service-detail-content {
    padding: 100px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-detail-main h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 48px 0 24px;
}

.service-detail-main h2:first-child {
    margin-top: 0;
}

.service-detail-main p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-main ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.service-detail-main ul li {
    font-size: 17px;
    color: var(--text-gray);
    padding: 12px 0 12px 32px;
    position: relative;
}

.service-detail-main ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.service-detail-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: var(--bg-light);
    padding: 36px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sidebar-services {
    list-style: none;
}

.sidebar-services li {
    margin-bottom: 12px;
}

.sidebar-services a {
    display: block;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-services a:hover,
.sidebar-services a.active {
    background: var(--primary-color);
    color: var(--white);
}

.sidebar-cta {
    text-align: center;
}

.sidebar-cta-text {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ==================== RESPONSIVE UPDATES ==================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-detailed-card:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 40px;
    }
    
    .content-title {
        font-size: 36px;
    }
    
    .service-detailed-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
}


/* ==================== MOBILE MENU ==================== */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        padding: 30px 24px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 18px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: left;
        font-size: 17px;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-link.active {
        color: var(--accent-color);
        font-weight: 700;
    }
    
    .header-phone {
        display: none;
    }
    
    .mobile-menu-toggle {
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}


/* ==================== FOOTER LOGO ==================== */
.footer-logo-container {
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 100px;
    width: 100px;
    object-fit: contain;
}


/* ==================== CITIES SECTION ==================== */
.cities-section {
    padding: 100px 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.city-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    text-align: center;
    transition: var(--transition);
}

.city-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.city-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), #164a7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
}

.city-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.city-desc {
    font-size: 14px;
    color: var(--text-gray);
}

/* ==================== SERVICES OVERVIEW ==================== */
.services-overview {
    background: var(--bg-light);
    padding: 80px 0;
}

.services-list-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-item-simple {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.service-item-simple svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

/* ==================== DISTRICTS SECTION ==================== */
.districts-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.district-btn {
    padding: 16px 24px;
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.district-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    padding: 20px 0;
    background: var(--bg-light);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item::after {
    content: '/';
    color: var(--text-gray);
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-link {
    color: var(--primary-color);
}

.breadcrumb-link:hover {
    color: var(--accent-color);
}

.breadcrumb-current {
    color: var(--text-gray);
}


/* ==================== CITY CONTENT ==================== */
.city-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
}

.content-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    margin-top: 48px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 32px 0 16px;
}

.content-wrapper p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}
