:root {
    /* Color Palette */
    --primary-dark: #001f1f;
    --primary-light: #112f3d;
    --premium-accent: #c5b299;
    --premium-light: #e8ddd4;
    --premium-dark: #9a8775;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #495057;
    --success: #27ae60;
    --danger: #e74c3c;
    
    /* Typography */
    --font-serif: 'DM Serif Text', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 31, 31, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 31, 31, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 31, 31, 0.2);
    --shadow-xl: 0 15px 35px rgba(0, 31, 31, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--primary-dark);
    background: var(--white);
}

/* Header */
.header {
    background: transparent;
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--premium-accent);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--premium-accent);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

/* Admin Controls */
.admin-controls {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 999;
    display: none;
}

.admin-btn {
    background: linear-gradient(45deg, var(--premium-accent), var(--premium-light));
    color: var(--primary-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.admin-btn:hover {
    background: linear-gradient(45deg, var(--premium-dark), var(--premium-accent));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.login-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    z-index: 1001;
    display: none;
    border: 2px solid var(--premium-accent);
}

.login-form h3 {
    font-family: var(--font-serif);
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 31, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 31, 31, 0.6), rgba(17, 47, 61, 0.4)), 
                url('https://res.cloudinary.com/dsbx1hsp0/image/upload/v1730063996/LAA_4685_2645faaf05.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(197, 178, 153, 0.1) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    color: var(--premium-accent);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.cta-button {
    background: linear-gradient(45deg, var(--premium-accent), var(--premium-light));
    color: var(--primary-dark);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(45deg, var(--premium-light), var(--white));
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--premium-accent), var(--premium-light));
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--premium-accent);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--premium-accent);
}

.project-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    position: relative;
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.project-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-meta {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
}

/* Page Hero Sections */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 91, 81, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-serif); 
    font-size: 3.5rem; 
    margin-bottom: 1.5rem; 
    color: var(--premium-accent);
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About Page Specific Styles */
.about-story-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-story-card {
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--premium-accent);
    margin-bottom: 4rem;
}

.about-story-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.about-founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-founder-avatar {
    text-align: center;
}

.about-founder-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-dark), var(--premium-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 3rem;
    box-shadow: var(--shadow-lg);
}

.about-founder-name {
    font-family: var(--font-serif);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.about-founder-title {
    color: var(--medium-gray);
    font-weight: 500;
}

.about-founder-experience {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.about-founder-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-growth-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--premium-accent);
}

.about-growth-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.value-card:hover {
    border-color: var(--premium-accent);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--premium-accent), var(--premium-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.value-title {
    font-family: var(--font-serif);
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--medium-gray);
}

/* Mission Statement */
.mission-statement {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--white);
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.mission-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--premium-accent);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Showcase */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::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;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.barbora-profile {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    padding: 4rem;
    border-radius: 24px;
    margin: 4rem 0;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
    position: relative;
}

.barbora-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
}

.barbora-image {
    width: 200px;
    height: 200px;
    background: url('https://media.licdn.com/dms/image/v2/C4D03AQGlqqRy1C_PAg/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1563277470817?e=2147483647&v=beta&t=DK_jeCxo6wIzsqUAyn8ix5bt7y3-xQ_OcT-QtyTnoSI');
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    box-shadow: var(--shadow-lg);
}

.barbora-text h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.barbora-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--premium-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-intro {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.contact-intro h3 {
    font-family: var(--font-serif);
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact-specialties {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--premium-accent);
    color: black;
}

.contact-specialties h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-specialties ul {
    list-style: none;
    padding: 0;
}

.contact-specialties li {
    margin-bottom: 0.5rem;
}

/* Editable Content */
.editable {
    position: relative;
    transition: all var(--transition-normal);
    border-radius: 4px;
}

.edit-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--premium-accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 14px;
    display: none;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.editable:hover .edit-btn {
    display: block;
}

/* Service Management Styles */
.remove-service-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--danger);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
    display: none;
}

.remove-service-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.add-service-container {
    display: none;
}

.service-card {
    position: relative;
}

.service-card[contenteditable="true"] {
    outline: 2px solid var(--premium-accent);
    border-radius: 8px;
    padding: 8px;
    transition: all var(--transition-fast);
}

.service-card[contenteditable="true"]:focus {
    outline: 2px solid var(--primary-dark);
    background: rgba(197, 178, 153, 0.1);
}

/* Placeholder styles for contenteditable elements */
[contenteditable="true"]:empty:before {
    content: attr(placeholder);
    color: var(--medium-gray);
    font-style: italic;
}

[contenteditable="true"]:focus:empty:before {
    color: var(--premium-accent);
}

/* Enhanced inline editing styles */
.editable[contenteditable="true"] {
    transition: all var(--transition-fast);
    border-radius: 4px;
    padding: 2px 4px;
}

.editable[contenteditable="true"]:focus {
    outline: 2px solid var(--premium-accent);
    background: rgba(197, 178, 153, 0.1);
    box-shadow: 0 0 0 3px rgba(197, 178, 153, 0.2);
}

.save-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--success);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    cursor: pointer;
    z-index: 20;
    transition: all var(--transition-fast);
}

.save-btn:hover {
    background: #229954;
    transform: scale(1.1);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 31, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gold);
    max-height: 90%;
    overflow-y: auto;
}

.modal-content h3 {
    font-family: var(--font-serif);
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color var(--transition-normal);
    font-family: var(--font-sans);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.actionButtons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: fixed;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer p {
    opacity: 0.8;
}

/* Contact Form Styles */
.contact-form-container {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color var(--transition-normal);
    font-family: var(--font-sans);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--premium-accent);
    box-shadow: 0 0 0 3px rgba(197, 178, 153, 0.1);
}

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

/* Image Upload Styles */
.image-upload-container {
    margin-top: 1rem;
}

.image-upload-area {
    border: 2px dashed var(--light-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    background: var(--white);
    cursor: pointer;
    position: relative;
}

.image-upload-area:hover {
    border-color: var(--premium-accent);
    background: rgba(197, 178, 153, 0.05);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-icon {
    font-size: 2rem;
    color: var(--medium-gray);
}

.upload-hint {
    font-size: 0.9rem;
    color: var(--medium-gray);
    opacity: 0.7;
}

.upload-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.upload-btn {
    background: var(--premium-accent);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.upload-btn:hover {
    background: var(--premium-dark);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left var(--transition-normal);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        display: block;
        text-align: center;
        border-radius: 8px;
        transition: all var(--transition-normal);
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .barbora-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .upload-actions {
        flex-direction: column;
    }

    .upload-btn {
        width: 100%;
    }

    .about-founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .about-story-card {
        padding: 2rem;
    }

    .about-growth-card {
        padding: 1.5rem;
    }
}

/* Page Navigation */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Luxury Accents */
.luxury-accent {
    position: relative;
}

.luxury-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}