/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2c2c2c;
    --accent-gold: #d4af37;
    --light-gold: #f4e4bc;
    --dark-gold: #b8941f;
    --pure-white: #ffffff;
    --soft-white: #f8f8f8;
    --text-light: #cccccc;
    --text-medium: #999999;
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-dark: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--pure-white);
    background-color: var(--primary-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--pure-white);
}

h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-black);
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background: var(--light-gold);
    color: var(--primary-black);
    border-color: var(--light-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--dark-gold);
    color: var(--pure-white);
    border: 1px solid var(--dark-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.85rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-black);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-gold);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--off-black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background: var(--primary-black);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--tertiary-black) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.01"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.01"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
    color: var(--pure-white);
}

.hero-title {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-weight: 300;
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    display: none;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 40px;
}

.section-header h2 {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* About Us Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--secondary-black) 0%, var(--primary-black) 50%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.about-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
    letter-spacing: -0.02em;
    position: relative;
}

.about-header h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 2rem auto 0;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-description p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 300;
    position: relative;
    padding-left: 1.5rem;
}

.about-description p::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--accent-gold);
    font-size: 1rem;
    opacity: 0.6;
}

.about-stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--tertiary-black) 0%, rgba(44, 44, 44, 0.5) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(44, 44, 44, 0.6) 100%);
}

.stat-item h3 {
    color: var(--accent-gold);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.9;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.4);
}

.about-placeholder {
    width: 400px;
    height: 400px;
    background: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--accent-gold);
}

.about-placeholder::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--accent-gold);
    z-index: -1;
}

.about-placeholder i {
    font-size: 6rem;
    color: var(--pure-white);
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.space-card {
    background: var(--tertiary-black);
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
    position: relative;
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.space-image {
    height: 250px;
    background: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.space-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--accent-gold);
    z-index: -1;
}

.space-image i {
    font-size: 4rem;
    color: var(--pure-white);
}

.space-content {
    padding: 3rem 2.5rem;
}

.space-content h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 400;
}

.space-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.space-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.space-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.space-features i {
    color: var(--accent-gold);
    margin-right: 1rem;
    font-size: 0.9rem;
    width: 16px;
}

.space-price {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

/* Professionals Section */
.professionals-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.professional-card {
    background: var(--tertiary-black);
    border: 1px solid var(--border-gold);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.professional-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.professional-image {
    width: 100%;
    height: 320px;
    background: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.professional-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.professional-card:hover .professional-image::before {
    opacity: 1;
}

.professional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.professional-card:hover .professional-image img {
    transform: scale(1.05);
}

/* Lisley Image Zoom */
.lisley-image {
    overflow: hidden;
}

.lisley-image img {
    object-position: center top;
    transform: scale(1.5);
    transform-origin: center top;
}

.professional-card:hover .lisley-image img {
    transform: scale(1.55);
}

/* Lisley Profile Image (circular in hero section) */
.profile-image-wrapper.lisley-image img {
    object-position: center top;
    transform: scale(1.5);
    transform-origin: center top;
}

/* Micah Image Positioning */
.micah-image img {
    object-position: center;
}

.professional-image i {
    font-size: 4rem;
    color: var(--accent-gold);
    z-index: 2;
}

.professional-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.professional-content h3 {
    color: var(--pure-white);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 400;
}

.professional-specialty {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.professional-content > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 300;
    flex-grow: 1;
}

/* Professional Showcase Section */
.showcase-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.showcase-item {
    background: var(--tertiary-black);
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.showcase-image {
    height: 200px;
    background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.showcase-image i {
    font-size: 4rem;
    color: var(--pure-white);
    z-index: 2;
    position: relative;
}

.showcase-content {
    padding: 2.5rem;
}

.showcase-content h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 400;
}

.showcase-professional {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: var(--secondary-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.product-card {
    background: var(--tertiary-black);
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.product-image {
    height: 250px;
    background: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--accent-gold);
    z-index: -1;
}

.product-image i {
    font-size: 4rem;
    color: var(--pure-white);
}

.product-content {
    padding: 3rem 2.5rem;
}

.product-content h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-info h2 {
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-gold);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-item span {
    color: var(--text-light);
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px 20px;
    border: 1px solid var(--border-gold);
    background: var(--tertiary-black);
    color: var(--pure-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 1px var(--accent-gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-medium);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 2rem;
    color: var(--accent-gold);
    font-weight: 300;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--pure-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
    color: var(--text-medium);
    font-weight: 300;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--tertiary-black) 100%);
    text-align: center;
    color: var(--pure-white);
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.benefit-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--secondary-black);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: var(--tertiary-black);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-choose-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.why-choose-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-choose-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--secondary-black);
    text-align: center;
}

.cta-content h2 {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 300;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.category-card {
    background: var(--tertiary-black);
    border: 1px solid var(--border-gold);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.category-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-rating i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Professional Skills */
.professional-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: var(--tertiary-black);
    color: var(--accent-gold);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--border-gold);
}

/* Why Mellemeta Section */
.why-mellemeta-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.why-mellemeta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-mellemeta-item {
    text-align: center;
    padding: 2rem;
}

.why-mellemeta-icon {
    width: 80px;
    height: 80px;
    background: var(--tertiary-black);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-mellemeta-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.why-mellemeta-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-mellemeta-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--secondary-black);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.location-info h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.location-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-feature i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    width: 20px;
}

.location-feature span {
    color: var(--text-light);
    font-weight: 300;
}

.location-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--tertiary-black);
    border: 2px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-item {
    background: var(--tertiary-black);
    border: 1px solid var(--border-gold);
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.faq-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Detail Content */
.contact-detail-content h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.contact-detail-content span {
    color: var(--text-light);
    font-weight: 300;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--pure-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 3rem 0;
        border-top: 1px solid var(--border-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero {
        height: 100vh;
        padding: 0;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about-header {
        margin-bottom: 3rem;
        padding: 0 20px;
    }

    .about-header h2 {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
        margin-bottom: 3rem;
    }

    .about-stats-wrapper {
        padding: 0 20px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-stats::before {
        display: none;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .about-placeholder {
        width: 300px;
        height: 300px;
    }

    .about-placeholder i {
        font-size: 4rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .spaces-grid,
    .professionals-grid,
    .products-grid,
    .showcase-grid,
    .benefits-grid,
    .process-steps,
    .why-choose-grid,
    .categories-grid,
    .why-mellemeta-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

    .section-header {
        padding: 0 20px;
    }

    .footer-content {
        padding: 0 20px;
    }

    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .space-card,
    .professional-card,
    .product-card {
        margin: 0;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-placeholder {
        width: 250px;
        height: 250px;
    }

    .about-placeholder i {
        font-size: 3rem;
    }
}
