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

:root {
    --midnight-navy: #0F1B2D;
    --graphite: #2A2E35;
    --neon-cyan: #39E0D0;
    --soft-sand: #F3F1EC;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--soft-sand);
    background-color: var(--midnight-navy);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--midnight-navy) 0%, var(--graphite) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.header {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--soft-sand);
}

.hero-contact .phone {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    border: 2px solid var(--neon-cyan);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-contact .phone:hover {
    background-color: var(--neon-cyan);
    color: var(--midnight-navy);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--soft-sand);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--soft-sand);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-item img {
    width: 32px;
    height: 32px;
}

.feature-item span {
    font-size: 14px;
    color: var(--neon-cyan);
    font-weight: 500;
}

.cta-button {
    background-color: var(--neon-cyan);
    color: var(--midnight-navy);
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2BC5B4;
    transform: translateY(-2px);
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.soundwave-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(57, 224, 208, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(57, 224, 208, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-sand);
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--soft-sand);
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background-color: var(--graphite);
}

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

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--soft-sand);
    opacity: 0.8;
}

.about-image,
.image-placeholder {
    background-color: var(--midnight-navy);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-weight: 500;
    overflow: hidden;
}

.room-image img,
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--graphite);
    border: 1px solid rgba(57, 224, 208, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.feature-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--soft-sand);
}

.feature-card p {
    color: var(--soft-sand);
    opacity: 0.8;
}

/* Rooms Section */
.rooms {
    background-color: var(--graphite);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: var(--midnight-navy);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    height: 200px;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--soft-sand);
}

.room-info p {
    color: var(--soft-sand);
    opacity: 0.8;
    margin-bottom: 15px;
}

.room-capacity {
    color: var(--neon-cyan);
    font-weight: 500;
    font-size: 14px;
}

/* Services Section */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--graphite);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(57, 224, 208, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
}

.service-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--soft-sand);
}

.service-content p {
    color: var(--soft-sand);
    opacity: 0.8;
}

/* Products Section */
.products {
    background-color: var(--graphite);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--midnight-navy);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--soft-sand);
}

.product-info p {
    color: var(--soft-sand);
    opacity: 0.8;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.product-btn {
    background-color: var(--neon-cyan);
    color: var(--midnight-navy);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #2BC5B4;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--graphite);
    border: 2px solid rgba(57, 224, 208, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--neon-cyan);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--neon-cyan);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--soft-sand);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

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

.pricing-card li {
    color: var(--soft-sand);
    opacity: 0.9;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pricing-card li:before {
    content: "✓";
    color: var(--neon-cyan);
    position: absolute;
    left: 0;
}

/* Analytics Section */
.analytics {
    background-color: var(--graphite);
}

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

.analytics-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--soft-sand);
}

.analytics-text p {
    color: var(--soft-sand);
    opacity: 0.9;
    margin-bottom: 30px;
}

.metrics {
    display: flex;
    gap: 40px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: var(--soft-sand);
    opacity: 0.8;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--soft-sand);
}

.location-info p {
    color: var(--soft-sand);
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.8;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-feature img {
    width: 24px;
    height: 24px;
}

.location-feature span {
    color: var(--neon-cyan);
    font-weight: 500;
}

.location-map {
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rounded-image {
    border-radius: 12px;
    border: 2px solid rgba(57, 224, 208, 0.2);
}

/* Contacts Section */
.contacts {
    background-color: var(--graphite);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-item img {
    width: 48px;
    height: 48px;
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--soft-sand);
}

.contact-info a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

.contact-info p {
    color: var(--soft-sand);
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--midnight-navy);
    border-top: 1px solid rgba(57, 224, 208, 0.2);
    padding: 40px 0 20px;
}

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

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

.footer-text p {
    color: var(--soft-sand);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(57, 224, 208, 0.1);
    border-bottom: 1px solid rgba(57, 224, 208, 0.1);
}

.footer-links a {
    color: var(--soft-sand);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: var(--soft-sand);
    opacity: 0.6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .about .container,
    .analytics-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats,
    .metrics {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .header {
        position: relative;
        margin-bottom: 20px;
        top: 20px;
    }
    
    .hero-contact .phone {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 15px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        max-width: 200px;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}