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

:root {
    --sunflower: #FFCC33;
    --slate: #2B2F36;
    --mint: #A6E3C1;
    --cloud: #F4F5F7;
    --white: #ffffff;
    --black: #000000;
    
    --gradient-primary: linear-gradient(135deg, var(--sunflower) 0%, #FFD700 100%);
    --gradient-secondary: linear-gradient(135deg, var(--mint) 0%, #B8EBC8 100%);
    --gradient-background: linear-gradient(135deg, var(--cloud) 0%, #ffffff 100%);
    
    --shadow-soft: 0 4px 20px rgba(43, 47, 54, 0.1);
    --shadow-medium: 0 8px 30px rgba(43, 47, 54, 0.15);
    --shadow-strong: 0 12px 40px rgba(43, 47, 54, 0.2);
    
    --border-radius: 12px;
    --border-radius-large: 20px;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --line-height-body: 1.6;
    --line-height-heading: 1.3;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-body);
    color: var(--slate);
    background: var(--gradient-background);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: var(--line-height-heading);
    font-weight: 700;
    color: var(--slate);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: rgba(43, 47, 54, 0.8);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--slate);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--white);
    color: var(--slate);
    border: 2px solid var(--sunflower);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--sunflower);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1000;
}

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

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

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate);
}

.header-contact .phone {
    font-weight: 600;
    color: var(--slate);
    font-size: 1.1rem;
}

/* Logo Container Link */
.logo-container a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

/* Product Pricing */
.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sunflower);
    margin: 15px 30px 10px;
    text-align: center;
}

/* Rounded Images */
.rounded-image {
    border-radius: var(--border-radius);
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

/* Equipment and Space Images */
.equipment-image .rounded-image,
.space-image .rounded-image {
    height: 250px;
}

.product-image .rounded-image {
    height: 200px;
}

.hero-image .rounded-image {
    max-height: 400px;
}

.about-image .rounded-image,
.contact-map .rounded-image {
    height: 300px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cloud) 0%, var(--white) 50%, var(--mint) 100%);
    padding: 80px 0;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--slate) 0%, var(--slate) 70%, var(--sunflower) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(43, 47, 54, 0.7);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.hero-image .rounded-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* Image Placeholders */
.image-placeholder {
    background: var(--white);
    border: 2px dashed var(--mint);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-placeholder img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.image-placeholder p {
    color: rgba(43, 47, 54, 0.6);
    font-style: italic;
    margin: 0;
}

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

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

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.features-list img {
    width: 24px;
    height: 24px;
}

/* Services Section */
.services {
    background: var(--cloud);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

/* Equipment Section */
.equipment {
    background: var(--white);
}

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

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

.equipment-image {
    margin-bottom: 25px;
}

.equipment-image .image-placeholder {
    min-height: 250px;
}

/* Studio Spaces */
.studio-spaces {
    background: var(--cloud);
}

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

.space-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.space-image .image-placeholder {
    border-radius: 0;
    border: none;
    min-height: 200px;
}

.space-card h3,
.space-card p {
    padding: 0 30px;
}

.space-card ul {
    padding: 20px 30px 30px;
    list-style: none;
}

.space-card li {
    padding: 8px 0;
    color: rgba(43, 47, 54, 0.8);
    position: relative;
    padding-left: 20px;
}

.space-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: bold;
}

/* Features Section */
.features {
    background: var(--white);
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 50px;
    height: 50px;
}

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

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    padding-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image .image-placeholder {
    border-radius: 0;
    border: none;
    min-height: 200px;
}

.product-card h3,
.product-card p {
    padding: 0 30px;
}

.product-card ul {
    padding: 20px 30px;
    list-style: none;
}

.product-card li {
    padding: 5px 0;
    color: rgba(43, 47, 54, 0.8);
    position: relative;
    padding-left: 20px;
}

.product-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sunflower);
    font-weight: bold;
}

.product-card .btn {
    margin: 20px 30px 0;
    width: calc(100% - 60px);
}

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

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 30px;
    height: 30px;
}

.contact-details h3 {
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.contact-details a {
    color: var(--slate);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--sunflower);
}

.contact-map .image-placeholder {
    min-height: 400px;
}

/* Footer */
.footer {
    background: var(--slate);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-container .brand-name {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-contact h4,
.footer-address h4 {
    color: var(--sunflower);
    margin-bottom: 15px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a:hover {
    color: var(--sunflower);
}

.footer-address p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4 {
    color: var(--sunflower);
    margin-bottom: 15px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    padding: 2px 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 47, 54, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    border-radius: var(--border-radius-large);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.modal-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--slate);
}

.close:hover {
    color: var(--sunflower);
}

.modal-body {
    padding: 20px 30px 30px;
}

.phone-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sunflower);
    text-decoration: none;
    margin: 10px 0;
}

.modal-actions {
    padding: 0 30px 30px;
    display: flex;
    gap: 15px;
}

.modal-actions .btn {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .hero-cta .btn {
        min-width: 200px;
    }
    
    .services-grid,
    .equipment-grid,
    .spaces-grid,
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}