/* Mobile-Only CSS - Clean and Simple */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #FFFFFF;
    padding-top: 120px; /* Account for fixed mobile navigation */
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    padding: 0 4px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mobile-logo img {
    width: auto;
    height: 40px;
    max-width: 120px;
}

.mobile-logo span {
    font-size: 1.1rem !important;
}

.mobile-cloud {
    width: 210px !important;
    height: auto;
    object-fit: contain;
}

.mobile-menu {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.mobile-menu a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.mobile-menu a:hover {
    text-decoration: underline;
}

.mobile-consultation-btn {
    background: #000000;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    align-self: center;
}

.mobile-consultation-btn:hover {
    background: #333333;
}

/* Mobile Hero */
.mobile-hero {
    padding: 40px 16px;
    text-align: center;
    background: #FFFFFF;
}

.mobile-clouds {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.mobile-cloud {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.mobile-hero h1 {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
}

.mobile-hero p {
    font-size: 18px;
    color: #000000;
}

/* Mobile What is Cloud Computing */
.mobile-what-is {
    padding: 40px 16px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-what-is h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.mobile-what-is p {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-align: left;
    margin-bottom: 24px;
}

.mobile-cta-button {
    background: #000000;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 12px;
}

.mobile-cta-button:hover {
    background: #333333;
}

/* Mobile Services */
.mobile-services {
    padding: 40px 16px;
    background: #FFFFFF;
}

.mobile-services h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 24px;
}

.mobile-service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-service-item {
    background: #FFFFFF;
    color: #000000;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-service-item:hover {
    background: #000000;
    color: #FFFFFF;
}

.mobile-service-item:hover .mobile-arrow-icon {
    filter: brightness(0) invert(1);
}

.mobile-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-service-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.mobile-arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.mobile-service-item.active .mobile-arrow-icon {
    transform: rotate(180deg);
}

.mobile-service-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-service-item.active .mobile-service-description {
    max-height: 500px;
}

.mobile-service-description p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 12px;
    margin-bottom: 0;
}



/* Mobile Statistics */
.mobile-stats {
    padding: 40px 16px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-stat-item {
    background: #F5F5F5;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.mobile-stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
}

.mobile-stat-text {
    font-size: 14px;
    color: #000000;
}

/* Mobile About */
.mobile-about {
    padding: 40px 16px;
    background: #F5F5F5;
    text-align: center;
}

.mobile-about h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.mobile-about p {
    font-size: 15px;
    line-height: 22px;
    color: #000000;
    text-align: left;
    margin-bottom: 16px;
}

/* Mobile Logo Animation */
.mobile-logo-animation {
    padding: 0;
    background: #FFFFFF;
}

.mobile-cloud-logo {
    width: 100%;
    height: 200px;
    background: url('../../assets/images/logos/logo-cloud-shape.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile Contact */
.mobile-contact {
    padding: 40px 16px;
    background: #000000;
    color: #FFFFFF;
}

.mobile-contact h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.mobile-contact > p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.mobile-contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.mobile-contact-info p {
    font-size: 15px;
    margin-bottom: 8px;
}

.mobile-contact-info a {
    color: #FFFFFF;
    text-decoration: underline;
}

.mobile-booking h3 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.mobile-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-form-group label {
    font-size: 14px;
    color: #FFFFFF;
}

.mobile-form-group input,
.mobile-form-group select,
.mobile-form-group textarea {
    background: #000000;
    border: 2px solid #fff;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 0;
}

.mobile-form-group small {
    font-size: 12px;
    color: #CCCCCC;
}

.mobile-phone-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-submit-btn {
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-submit-btn:hover {
    background: #333333;
}


