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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #FFFFFF;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    height: 100px;
    padding: 32px 80px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.top-nav.visible {
    transform: translateY(0);
}

.logo-container {
    width: 238px;
    height: 46px;
    padding: 4px 0;
}

.logo-complete {
    width: 238px;
    height: 46px;
    background-image: url('../../assets/images/logos/logo-nav-bar.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 48px;
    gap: 8px;
}

.nav-button-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-item {
    padding: 12px 8px;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    transition: text-decoration 0.3s ease;
}

.nav-item:hover {
    text-decoration: underline;
}

.nav-button {
    background: #000000;
    color: #FFFFFF;
    width: 238px;
    height: 48px;
    padding: 12px 28px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: border-radius 0.3s ease;
}

.nav-button:hover {
    border-radius: 25px;
}

/* Hero Section */
.hero {
    padding: 200px 188px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.clouds-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1064px;
    height: 97px;
}

.clouds-image {
    width: 1064px;
    height: 97px;
    background-image: url('../../assets/images/backgrounds/clouds.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    width: 1064px;
    height: 93px;
}

.hero-title {
    font-weight: 800;
    font-size: 58px;
    line-height: 64px;
    text-align: right;
    color: #000000;
}

.hero-subtitle {
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    text-align: right;
    color: #000000;
}

/* What is Cloud Computing Section */
.what-is-section {
    padding: 80px 188px 120px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.what-is-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 630px;
}

.what-is-title {
    font-weight: 900;
    font-size: 44px;
    line-height: 53px;
    color: #000000;
}

.what-is-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.cta-button {
    background: #000000;
    color: #FFFFFF;
    padding: 12px 28px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 197px;
    height: 48px;
    transition: border-radius 0.3s ease;
}

.cta-button:hover {
    border-radius: 25px;
}

/* Services Section */
.services-section {
    padding: 60px 0 120px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.services-title {
    font-weight: 900;
    font-size: 44px;
    line-height: 53px;
    text-align: center;
    color: #000000;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 188px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-item:hover .service-title {
    color: #FFFFFF;
}

.service-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    transition: color 0.3s ease;
}

.service-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    width: 32px;
    height: 32px;
    background-image: url('../../assets/images/icons/button-dropdown-default.png');
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    filter: brightness(0);
    flex-shrink: 0;
}

.service-item .arrow-icon {
    filter: brightness(0);
}

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

.service-item.active .arrow-icon {
    background-image: url('../../assets/images/icons/button-dropdown-active.png');
    background-size: 24px 24px;
    filter: brightness(0);
}

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

.service-description {
    display: none;
    padding: 24px 188px;
    background: transparent;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.service-description p {
    margin-bottom: 20px;
}

.service-description.active {
    display: block;
}

/* Statistics Section */
.stats-section {
    width: 100%;
    height: 100px;
    padding: 20px 80px 120px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px;
    text-align: center;
}

.stat-number {
    font-weight: 800;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: #000000;
}

.stat-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}

/* About Section */
.about-section {
    padding: 80px 188px 120px 950px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.about-title {
    font-weight: 900;
    font-size: 44px;
    line-height: 53px;
    color: #000000;
    text-align: left;
}

.about-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    width: 455px;
    text-align: left;
}

/* Logo Animation Section */
.logo-animation-section {
    width: 100%;
    height: 544px;
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.logo-animation.revealed {
    background: url('../../assets/images/logos/logo-cloud-shape.png') no-repeat center center;
    background-size: 100% 100%;
    background-color: #000000;
}

/* Contact Section */
.contact-section {
    padding: 10px 0 120px;
    background: #000000;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 0px;
}

.contact-title {
    font-weight: 900;
    font-size: 44px;
    line-height: 53px;
    text-align: center;
    color: #FFFFFF;
}

.contact-subtitle {
    font-weight: 900;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #FFFFFF;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    width: 630px;
    height: 737px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 630px;
    height: 138px;
}

.contact-info-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
    width: 193px;
    height: 44px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 630px;
    height: 70px;
}

.contact-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 63px;
    width: 630px;
    height: 29px;
}

.contact-label {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}

.contact-value {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 630px;
}

.booking-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
    white-space: nowrap;
}

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 630px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 630px;
}

.message-group {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 335px;
    margin-left: auto;
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 63px;
    width: 630px;
    min-height: 39px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    width: 9px;
    height: 19px;
}

.label-text {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}

.form-input {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 10px 8px;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    width: 335px;
    height: 39px;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #FFFFFF;
}

.phone-input-group {
    display: flex;
    gap: 24px;
    width: 335px;
    height: 42px;
}

.country-select {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 10px 8px;
    font-weight: 300;
    font-size: 16px;
    width: 180px;
    height: 42px;
    box-sizing: border-box;
}

.phone-input {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 10px 8px;
    font-weight: 300;
    font-size: 16px;
    width: 131px;
    height: 39px;
    box-sizing: border-box;
}

.date-time-picker {
    position: relative;
    width: 335px;
}

.date-input {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 10px 8px;
    font-weight: 300;
    font-size: 16px;
    width: 100%;
    height: 39px;
    box-sizing: border-box;
    cursor: pointer;
}

.date-picker-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #FFFFFF;
    border-top: none;
    z-index: 1000;
    display: none;
    padding: 20px;
    box-sizing: border-box;
}

.date-picker-dropdown.show {
    display: block;
}

.booking-notice {
    color: #CCCCCC;
    font-size: 12px;
    margin-top: 5px;
    font-style: italic;
}

.date-picker-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: #FFFFFF;
}

/* Loading and Error States */
.loading, .no-availability, .error {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.loading {
    color: #007bff;
}

.error {
    color: #dc3545;
}

.no-availability {
    color: #ffc107;
}

.current-period {
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
}

.available-dates {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.available-date {
    padding: 8px 12px;
    text-align: left;
    cursor: pointer;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.available-date:hover {
    background: #333333;
}

.available-date.selected {
    background: #FF6B6B;
    color: #FFFFFF;
    border-color: #FF6B6B;
}

.available-date .date-info {
    font-weight: 500;
    font-size: 14px;
}

.available-date .time-info {
    font-size: 12px;
    color: #CCCCCC;
}

.time-slots-header {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: #FFFFFF;
    color: #000000;
}

.time-slot.selected {
    background: #FF6B6B;
    color: #FFFFFF;
    border-color: #FF6B6B;
}

.time-slot.disabled {
    color: #666666;
    border-color: #666666;
    cursor: not-allowed;
}

.time-slot.disabled:hover {
    background: transparent;
    color: #666666;
}

.message-input {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 10px 8px;
    font-weight: 300;
    font-size: 16px;
    width: 335px;
    height: 162px;
    resize: vertical;
    box-sizing: border-box;
}

.submit-button {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 335px;
    height: 43px;
    transition: border-radius 0.3s ease;
    box-sizing: border-box;
}

.submit-button:hover {
    border-radius: 25px;
}

/* Mobile styles removed - now using separate mobile.html file */

