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

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

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

/* Hero Section with Background */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
}

/* When hero image is available, uncomment and use this:
.hero-background {
    background: url('../assets/hero-bg.jpg') center center no-repeat;
    background-size: cover;
}
*/

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Subtle overlay for when background image is added */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo-placeholder {
    width: 100%;
    max-width: 500px;
    height: 120px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-placeholder:hover {
    box-shadow: 0 0 30px rgba(255,255,255,0.05);
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.logo-placeholder:hover .logo-image {
    filter: brightness(1);
}

.tagline {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 200;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 20px;
    opacity: 0.9;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: #000000;
}

.section-alt {
    background-color: #0a0a0a;
}

/* About Section */
.about-section {
    padding: 120px 20px;
    background-color: #000000;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.about-item h3 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: justify;
}

/* Contact Form Section */
.contact-section {
    padding: 120px 20px;
    background-color: #0a0a0a;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 18px;
    color: #999999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-container {
    width: 100%;
    margin-top: 60px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 60px;
    border-radius: 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #888;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group select {
    cursor: pointer;
    padding-right: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select option {
    background: #000;
    color: #888;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: #888;
}

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

.submit-btn {
    margin-top: 40px;
    padding: 20px 60px;
    background: #1a9b9e;
    border: none;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

.submit-btn:hover {
    background: #22c1c5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26,155,158,0.3);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-btn .btn-loading {
    display: inline-block;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.5s ease;
}

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

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

/* Services Section */
.services-section {
    padding: 100px 20px;
    background-color: #0a0a0a;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 80px;
}

.services-intro h2 {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #ffffff;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.stats-section {
    padding: 120px 20px;
    background-color: #000000;
    position: relative;
}

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

.stats-header {
    text-align: center;
    margin-bottom: 80px;
}

.stats-header h2 {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 72px;
    font-weight: 200;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999999;
    font-weight: 300;
}

/* Services Details */
.services-details {
    text-align: center;
}

.services-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Instagram Showcase Section */
.instagram-section {
    padding: 120px 20px;
    background-color: #0a0a0a;
}

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

.instagram-header {
    text-align: center;
    margin-bottom: 80px;
}

.instagram-header h2 {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.instagram-header p {
    font-size: 18px;
    color: #999999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.instagram-account {
    background: #000000;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.instagram-account:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.instagram-account img {
    width: 100%;
    height: auto;
    display: block;
}

/* Brand Partnerships Section */
.partnerships-section {
    padding: 120px 20px;
    background-color: #000000;
}

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

.partnerships-header {
    text-align: center;
    margin-bottom: 80px;
}

.partnerships-header h2 {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    align-items: center;
}

.brand-logo {
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0.8);
    padding: 20px;
}

.brand-logo:hover {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1.1);
}

.brand-logo img {
    max-width: 150px;
    height: auto;
    filter: invert(1);
}

.brand-logo span {
    font-size: 16px;
    color: #cccccc;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 15px;
}

/* Section Titles */
.section-title {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #999999;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

/* Accent Color */
.accent {
    color: #1a9b9e;
}

/* Why Work With Us Section */
.why-section {
    padding: 120px 20px;
    background-color: #000000;
}

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-item {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}

.why-item .icon {
    font-size: 48px;
    color: #1a9b9e;
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffffff;
}

.why-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 60px 20px;
    }

    .logo-placeholder {
        height: 80px;
    }

    .tagline {
        letter-spacing: 1px;
    }

    .description {
        font-size: 14px;
    }

    .contact-header h2 {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .form-container {
        border: 1px solid #222;
        padding: 30px 20px;
        box-shadow: none;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group label {
        font-size: 11px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px 30px;
    }
    
    .form-message {
        font-size: 13px;
        padding: 12px 15px;
    }

    /* Services mobile styles */
    .services-intro h3 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 0;
    }

    .stat-number {
        font-size: 36px;
    }

    .partner-logos {
        gap: 15px 25px;
    }

    .partner-logos span {
        font-size: 12px;
    }

    .media-partners {
        padding: 30px 20px;
    }
}