/*
 * Premium CSS file for East Bali Co-Working
 * Generated on 2025-04-23
 * DO NOT EDIT DIRECTLY - Edit the modules in css/modules/ and run combine-css.js
 */

/*
 * Base styles for East Bali Co-Working Premium Design
 */

:root {
    --primary-color: #32aa27; /* Terracotta/rust - from the sun in the logo */
    --primary-light: rgba(181, 97, 59, 0.1);
    --primary-dark: #9a4d2e;
    --secondary-color: #8a9a78; /* Sage green - from the water lines in the logo */
    --secondary-light: rgba(138, 154, 120, 0.1);
    --secondary-dark: #708061;
    --dark-color: #1a3524; /* Dark green - from the foliage in the logo */
    --dark-light: rgba(26, 53, 36, 0.1);
    --dark-transparent: rgba(26, 53, 36, 0.8);
    --light-color: #f8f2e2; /* Cream/beige - from the background of the logo */
    --white-color: #ffffff;
    --text-color: #2c2c2c;
    --text-muted: #6c6c6c;
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --box-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --section-padding: 120px 0;
    --container-width: 1280px;
    --overlay-gradient: linear-gradient(to right, rgba(26, 53, 36, 0.8), rgba(181, 97, 59, 0.6));
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.section-divider {
    position: relative;
    height: 100px;
    margin-top: -50px;
    margin-bottom: -50px;
    z-index: 10;
}

.divider-curve {
    position: absolute;
    width: 100%;
    height: 100%;
}

.scrolled .backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

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

.section-header h2 {
    font-size: 2.75rem;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 1.5rem auto 0;
}


/*
 * Buttons styles for East Bali Co-Working Premium Design
 */

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.95rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 8px 25px rgba(181, 97, 59, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(181, 97, 59, 0.35);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    box-shadow: 0 8px 25px rgba(138, 154, 120, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(138, 154, 120, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
    padding: 14px 34px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.btn-text {
    background: none;
    padding: 10px 0;
    position: relative;
    color: var(--primary-color);
    font-weight: 500;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/*
 * Header styles for East Bali Co-Working Premium Design
 */

header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: var(--box-shadow-sm);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.logo:hover .logo-img {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Coming Soon Bar */
.coming-soon-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-align: center;
    padding: 30px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: fixed;
    top: 86px; /* Height of the header */
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.coming-soon-bar p {
    padding-top: 0;
    margin: 0;
    font-size: 1.5rem;
    color: var(--white-color);
    font-weight: 500;
}

.coming-soon-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.coming-soon-bar span {
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.coming-soon-bar span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
    border-radius: 3px;
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 1001;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary-dark);
}


/*
 * Hero section styles for East Bali Co-Working Premium Design
 */

.hero {
    background: linear-gradient(rgba(26, 53, 36, 0.7), rgba(181, 97, 59, 0.6)), url('../images/hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    text-align: center;
    padding: 220px 0 180px;
    margin-top: 86px !important; /* Header height */
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--white-color), transparent);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1.2s ease;
    color: var(--white-color);
    line-height: 1.2;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--white-color);
    font-weight: 400;
    animation: fadeInDown 1.2s ease 0.1s forwards;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 45px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease 0.3s forwards;
    opacity: 0;
    color: var(--white-color);
}

.hero .btn {
    animation: fadeInUp 1.2s ease 0.6s forwards;
    opacity: 0;
    margin-top: 15px;
}


/*
 * About section styles for East Bali Co-Working Premium Design
 */

.about {
    background-color: var(--white-color);
    position: relative;
    padding-top: 150px;
}

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

.about-text {
    padding-right: 30px;
}

.about-text h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(181, 97, 59, 0.3), rgba(26, 53, 36, 0.3));
    z-index: 1;
}

.about-image img {
    display: block;
    transition: all 0.6s ease;
    transform: scale(1.02);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: var(--box-shadow-lg);
}

.about-image:hover img {
    transform: scale(1.05);
}


/*
 * Features section styles for East Bali Co-Working Premium Design
 */

.features {
    background-color: var(--light-color);
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(138, 154, 120, 0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.feature-card {
    background-color: var(--white-color);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: height 0.5s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-lg);
}

.feature-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.feature-card:hover i {
    transform: scale(1.2) translateY(-5px);
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}


/*
 * Signup section styles for East Bali Co-Working Premium Design
 */

.signup {
    background: var(--overlay-gradient), url('../images/hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    padding: 140px 0;
}

.signup::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.signup::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.signup-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.signup h2 {
    margin-bottom: 25px;
    font-size: 3rem;
    color: var(--white-color);
}

.signup p {
    margin-bottom: 50px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

#email-form {
    background-color: var(--white-color);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    text-align: left;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

#email-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #eaeaea;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(181, 97, 59, 0.2);
    outline: none;
    background-color: white;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

/* Enhanced checkbox styling */
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border: 2px solid #eaeaea;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin-right: 12px;
    position: relative;
    vertical-align: top;
    margin-top: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

input[type="checkbox"]:hover {
    border-color: var(--primary-color);
}

input[type="checkbox"]:checked {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

input[type="checkbox"]:checked::after {
    content: '\2714';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    line-height: 1;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.form-message {
    margin-top: 25px;
    padding: 18px;
    border-radius: var(--border-radius);
    display: none;
}

.success {
    background-color: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.error {
    background-color: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}


/*
 * Contact section styles for East Bali Co-Working Premium Design
 */

.contact {
    background-color: var(--white-color);
    position: relative;
    text-align: center;
    padding: 140px 0;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: var(--light-color);
    opacity: 0.3;
    z-index: 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-item {
    text-align: center;
    padding: 40px;
    border-radius: var(--border-radius);
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    width: 350px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: height 0.4s ease;
    z-index: -1;
}

.contact-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-lg);
}

.contact-item:hover::before {
    height: 100%;
    opacity: 0.05;
}

.contact-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.contact-item:hover i {
    transform: scale(1.2) translateY(-5px);
    color: var(--primary-dark);
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}


/*
 * Footer styles for East Bali Co-Working Premium Design
 */

footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 80px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: nowrap;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    margin-right: 18px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
    transform: rotate(10deg) scale(1.05);
}

.footer-logo h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.social-links a {
    color: var(--white-color);
    margin-left: 25px;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    opacity: 0.8;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
    opacity: 1;
}

.social-links-centered {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.social-links-centered a {
    color: var(--white-color);
    margin: 0 15px;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    opacity: 0.8;
}

.social-links-centered a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}


/*
 * Thank You section styles for East Bali Co-Working Premium Design
 */

.thank-you {
    background-color: var(--white-color);
    text-align: center;
    padding: 100px 0;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white-color);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.thank-you-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.thank-you-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}


/*
 * Survey page styles for East Bali Co-Working Premium Design
 */

.survey-section {
    background-color: var(--white-color);
    padding: 150px 0 100px;
    margin-top: 86px;
}

.survey-container {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.survey-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.survey-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(181, 97, 59, 0.2);
}

.survey-header h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.survey-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.survey-form .form-group {
    margin-bottom: 35px;
}

.survey-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.radio-options, .checkbox-options {
    margin-top: 12px;
}

.radio-option, .checkbox-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.radio-option label, .checkbox-option label {
    margin: 0 0 0 12px;
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-muted);
    padding-top: 2px;
}

/* Importance Grid Styles */
.importance-grid {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 12px;
    align-items: center;
    margin-bottom: 35px;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.importance-grid .item {
    padding: 10px 0;
    text-align: center;
    position: relative;
}

.importance-grid .item.radio-option {
    display: flex;
    justify-content: center;
    align-items: center;
}

.importance-grid .item:first-child {
    text-align: left;
    padding-left: 15px;
}

.importance-grid .header {
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-color);
}

.importance-grid .feature {
    text-align: left;
    font-weight: 500;
    color: var(--dark-color);
}

/* Enhanced radio button styling */
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #eaeaea;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin-right: 12px;
    position: relative;
    vertical-align: middle;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

input[type="radio"]:hover {
    border-color: var(--primary-color);
}

input[type="radio"]:checked {
    border-color: var(--primary-color);
    border-width: 2px;
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Base radio button styling for importance grid */
.importance-grid input[type="radio"] {
    width: 22px;
    height: 22px;
    margin-right: 0;
}

/* Mobile radio buttons in importance grid */
.importance-grid .radio-label input[type="radio"] {
    width: 35px;
    height: 35px;
    margin-bottom: 8px;
}

.importance-grid .radio-label input[type="radio"]:checked::after {
    width: 18px;
    height: 18px;
}

/* Desktop specific styles */
.importance-grid .item label {
    cursor: pointer;
    margin: 0;
    font-weight: normal;
}

.thank-you-survey {
    text-align: center;
    display: none;
    padding: 40px 0;
}

.thank-you-survey h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.thank-you-survey p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}


/*
 * Animations and responsive styles for East Bali Co-Working Premium Design
 */

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Fade-in animations for scroll */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.3rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 100px 0;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.1rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .contact-info {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .contact-item {
        width: calc(50% - 20px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .survey-container {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    h2 {
        text-align: center;
    }
    
    .hero {
        padding: 180px 0 120px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-text p {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact section mobile layout */
    .contact-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-item {
        width: 100%;
        padding: 30px 20px;
    }
    
    /* Footer mobile layout */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        margin-top: 30px;
    }
    
    .social-links a {
        margin: 0 12px;
    }
    
        /* Fixed checkbox size for mobile */
    input[type="checkbox"] {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
        flex-shrink: 0;
    }
    
    /* Mobile menu toggle */
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        padding: 30px;
        box-shadow: var(--box-shadow);
        display: none;
        z-index: 1000;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 15px 0;
        text-align: center;
    }
    
    /* Coming soon bar mobile styles */
    .coming-soon-bar {
        padding: 5px 5px;
        top: 111px;
    }
    
    .coming-soon-bar p {
        font-size: 1rem;
    }
    
    /* Survey importance grid mobile layout */
    .importance-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    /* Center submit button on survey page */
    .survey-form button[type="submit"] {
        display: block;
        margin: 0 auto;
    }
    
    .importance-grid .header {
        display: none;
    }
    
    /* Hide desktop radio buttons on mobile */
    .importance-grid .item:not(.feature) {
        display: none;
    }
    
    /* Improved mobile layout for ranking section */
    .importance-grid .feature {
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 10px;
        font-weight: 600;
        font-size: 1.05rem;
        color: var(--dark-color);
    }
    
    .importance-grid .radio-row {
        display: flex;
        justify-content: space-between;
        margin: 10px 0 25px 0;
        align-items: center;
        background-color: rgba(248, 242, 226, 0.5);
        padding: 15px 10px;
        border-radius: var(--border-radius);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .importance-grid .radio-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 20%;
        position: relative;
    }
    
    .importance-grid .radio-label span {
        font-size: 0.9rem;
        margin-top: 8px;
        font-weight: 600;
        color: var(--dark-color);
    }
    
    .importance-grid .radio-label input[type="radio"]:checked + span {
        color: var(--primary-color);
    }
    
    /* Mobile radio button labels */
    .importance-grid .radio-label span {
        position: relative;
        pointer-events: none; /* Let clicks pass through to the radio button */
    }
    
    .survey-container {
        padding: 40px 25px;
    }
    
    #email-form {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 160px 0 100px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    #email-form {
        padding: 35px 20px;
    }
    
    .survey-container {
        padding: 35px 20px;
    }
    
    .survey-header h1 {
        font-size: 2rem;
    }
    
    .thank-you-content {
        padding: 35px 20px;
    }
    
    .thank-you-content h2 {
        font-size: 2rem;
    }
}


