/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.company-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-main {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-text-sub {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.logo-since {
    font-size: 10px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.nav-link:hover {
    color: #1e3a8a;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 20px;
}


/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #4b5563;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
    color: #1e3a8a;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 2px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 2px;
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 500;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.lang-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.lang-btn.active {
    background: white;
    color: #1e3a8a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1d1d1f;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}


.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 24px;
    letter-spacing: -2px;
    margin-top: 0;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 520px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #4b5563;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.guarantee-text {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 140px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: white;
    color: #1e3a8a;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #1e3a8a;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
    position: relative;
}

.hero-visual-gallery {
    position: relative;
    width: 100%;
    height: 500px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
}

.hero-image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
}

.hero-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.image-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.image-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.image-4 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.image-5 {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    animation: floatCard 6s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -20%;
    animation-delay: 2s;
}

.card-3 {
    top: 10%;
    right: 10%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.card-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.central-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.cleaning-dashboard {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 280px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.progress-item span {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 3px;
    transition: width 2s ease;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@media (max-width: 768px) {
    .floating-card {
        display: none;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Remove old hero visual styles - replaced with modern cards */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 21px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 2px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-color: #1e3a8a;
    transform: translateY(-5px);
}

.service-card:hover .service-icon svg {
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.service-card p {
    color: #6e6e73;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    color: #6e6e73;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 600;
}

/* Services List Style */
.services-list {
    max-width: 1000px;
    margin: 0 auto;
}

.service-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 122, 255, 0.2);
}

.service-bullet {
    color: #007aff;
    font-size: 24px;
    font-weight: bold;
    margin-right: 16px;
    margin-top: 4px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-item:hover .service-bullet {
    background: rgba(0, 122, 255, 0.2);
    color: #0056b3;
    transform: scale(1.1);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-content p {
    color: #6e6e73;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f5f7fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-lead {
    font-size: 21px;
    color: #6e6e73;
    margin-bottom: 40px;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    gap: 30px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #1e3a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.feature p {
    color: #6e6e73;
    line-height: 1.5;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #6e6e73;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #1d1d1f;
    color: white;
}

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

.contact-info h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.contact-info p {
    font-size: 21px;
    color: #a1a1a6;
    margin-bottom: 40px;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    width: 40px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    color: #a1a1a6;
    margin: 0;
    font-size: 16px;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.quote-form h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #f5f7fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1d1d1f;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 24px;
}

.footer-section h4 {
    font-size: 18px;
}

.footer-section p {
    color: #a1a1a6;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #a1a1a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #a1a1a6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* iPhone 6.1" and smaller devices */
@media (max-width: 430px) {
    .nav-container {
        padding: 0 16px;
        height: 70px;
    }

    .nav-logo {
        gap: 8px;
        flex: 1;
        min-width: 0;
    }

    .company-logo {
        height: 36px;
        flex-shrink: 0;
    }

    .logo-text-main {
        font-size: 12px;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .logo-text-sub {
        font-size: 9px;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .logo-since {
        font-size: 7px;
    }

    .nav-actions {
        gap: 8px;
        margin-right: 16px;
    }

    .language-switcher {
        padding: 1px;
        gap: 1px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 11px;
    }


    .hamburger {
        display: flex;
        width: 24px;
        height: 20px;
    }

    .bar {
        width: 20px;
        height: 2px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 8px 0;
        margin-top: 8px;
    }

    .dropdown-menu a {
        padding: 8px 16px;
        font-size: 14px;
        color: #6b7280;
    }
}

/* Responsive Design */
@media (max-width: 768px) and (min-width: 431px) {
    .hamburger {
        display: flex;
    }

    .company-logo {
        height: 44px;
    }

    .logo-text-main {
        font-size: 14px;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .logo-text-sub {
        font-size: 10px;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .logo-since {
        font-size: 8px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff;
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 24px 0;
        gap: 24px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        order: -1;
        margin-bottom: 16px;
        gap: 12px;
        margin-right: 18px;
    }


    .hero {
        padding: 120px 0 80px;
    }
}

@media (max-width: 430px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-visual-gallery {
        height: 300px;
        margin-top: 20px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 12px;
        padding: 16px;
    }

    .image-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .image-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .image-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .image-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .image-5 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }


    .cleaning-dashboard {
        min-width: 180px;
        padding: 14px;
    }

    .dashboard-header {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .progress-item {
        gap: 4px;
    }

    .progress-item span {
        font-size: 10px;
    }

    .progress-bar {
        height: 3px;
    }

    .status-indicator {
        width: 6px;
        height: 6px;
    }


    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .hero-features {
        margin-bottom: 32px;
    }

    .hero-buttons {
        align-items: center;
        margin-bottom: 32px;
    }


    .hero-visual-gallery {
        height: 350px;
        margin-top: 40px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .image-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .image-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .image-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .image-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .image-5 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }


    .cleaning-dashboard {
        min-width: 200px;
        padding: 16px;
    }

    .dashboard-header {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .progress-item span {
        font-size: 11px;
    }

    .progress-bar {
        height: 4px;
    }

    .section-header h2 {
        font-size: 36px;
    }

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

    .service-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 16px;
    }

    .service-bullet {
        font-size: 20px;
        width: 28px;
        height: 28px;
        margin-right: 12px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 14px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .contact-content {
        justify-content: center;
        align-items: center;
    }

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

    .container {
        padding: 0 15px;
    }
}

/* iPhone 14 Pro and similar devices */
@media (max-width: 430px) and (min-width: 390px) {
    .navbar {
        height: 70px;
        padding: 0 16px;
    }

    .nav-logo {
        gap: 8px;
    }

    .company-logo {
        height: 38px;
    }

    .logo-text-main {
        font-size: 13px;
    }

    .logo-text-sub {
        font-size: 10px;
    }

    .logo-since {
        font-size: 8px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-visual-gallery {
        height: 320px;
        padding: 14px;
        gap: 10px;
    }

    .service-items {
        gap: 16px;
    }

    .service-item {
        padding: 14px;
    }

    .service-bullet {
        font-size: 18px;
        width: 26px;
        height: 26px;
    }

    .service-content h3 {
        font-size: 15px;
    }

    .service-content p {
        font-size: 13px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-item {
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 16px;
        min-width: 140px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 18px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-bullet {
        font-size: 18px;
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .about-stats {
        flex-direction: column;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .hero-visual {
        height: 250px;
    }

    .cleaning-illustration {
        width: 200px;
        height: 200px;
    }

    .building-1 {
        width: 20px;
        height: 45px;
    }

    .building-2 {
        width: 25px;
        height: 60px;
    }

    .building-3 {
        width: 18px;
        height: 35px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .company-logo {
        height: 36px;
    }
}
