:root {
    --primary-green: #2d5a27;
    --secondary-green: #4a7c59;
    --accent-green: #6b8e5a;
    --light-green: #e8f5e8;
    --white: #ffffff;
    --dark: #1a1a1a;
    --grey: #666666;
    --light-grey: #f8f9fa;
}

/* ========================================
   PORTFOLIO GALLERY SECTION
   ======================================== */

.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="plant-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e8f5e8" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23plant-pattern)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.portfolio .container {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 90, 39, 0.1);
    backdrop-filter: blur(10px);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.2);
}

.portfolio-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 15px 0 0;
}

.image-gallery {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-image.active {
    opacity: 1;
}

.image-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-btn {
    background: rgba(45, 90, 39, 0.9);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-family: 'Montserrat', sans-serif;
}

.gallery-btn:hover {
    background: rgba(45, 90, 39, 1);
    transform: translateY(-1px);
}

.gallery-btn.active {
    background: rgba(75, 124, 89, 1);
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.3);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.placeholder-icon {
    font-size: 3em;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.image-placeholder p {
    font-size: 1.1em;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1.4;
}

.portfolio-info {
    padding: 30px;
}

.portfolio-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8em;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 500;
}

.plant-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.plant-tag {
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2);
}

.portfolio-info p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.care-info {
    background: rgba(45, 90, 39, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-green);
}

.care-info strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.care-info span {
    color: var(--dark);
    font-style: italic;
}

.portfolio-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 90, 39, 0.1);
}

.portfolio-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2em;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 500;
}

.portfolio-cta p {
    color: var(--dark);
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Responsive Design */
@media (max-width: 768px) {
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        margin-bottom: 50px;
    }
    
    .portfolio-item {
        margin: 0 10px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .placeholder-icon {
        font-size: 2.5em;
        margin-bottom: 10px;
    }
    
    .image-placeholder p {
        font-size: 1em;
    }
    
    .portfolio-info {
        padding: 25px;
    }
    
    .portfolio-info h3 {
        font-size: 1.6em;
    }
    
    .plant-details {
        gap: 8px;
    }
    
    .plant-tag {
        font-size: 0.8em;
        padding: 5px 10px;
    }
    
    .portfolio-cta {
        padding: 40px 30px;
        margin: 0 10px;
    }
    
    .portfolio-cta h3 {
        font-size: 1.8em;
    }
    
    .portfolio-cta p {
        font-size: 1.1em;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Bar */
.language-bar {
    background: rgba(45, 90, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    transition: all 0.3s ease;
}

.language-switcher {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 6px 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.flag {
    font-size: 1.1em;
}

.lang-text {
    font-size: 0.9em;
}

/* Header Premium */
header {
    position: fixed;
    top: 40px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(45, 90, 39, 0.1);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2em;
    font-weight: 300;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--secondary-green);
}

.logo-signature {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65em;
    color: var(--dark);
    font-weight: 400;
    margin-top: -8px;
    text-align: right;
    width: 100%;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 400;
    font-size: 0.95em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--secondary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary-green);
}

.cta-nav {
    background: linear-gradient(145deg, var(--secondary-green), var(--primary-green));
    color: white !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
    color: white !important;
}

/* Hero Section Premium */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 60%, var(--accent-green) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -30%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5em;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero .tagline {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.95;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero .description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.05em;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 1.05em;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Services Section Premium */
.services {
    padding: 120px 0;
    background: var(--light-grey);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2em;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.3em;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.section-description {
    font-size: 1.1em;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--secondary-green);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scale(1.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, var(--secondary-green), var(--primary-green));
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    color: white;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-price {
    font-size: 1.3em;
    color: var(--secondary-green);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Premium Services Highlight */
.premium-highlight {
    background: linear-gradient(145deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.premium-highlight::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.premium-highlight h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2em;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.premium-highlight p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.premium-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.premium-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* ========================================
   PORTFOLIO GALLERY SECTION
   ======================================== */

.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="plant-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e8f5e8" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23plant-pattern)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.portfolio .container {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 90, 39, 0.1);
    backdrop-filter: blur(10px);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.2);
}

.portfolio-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.placeholder-icon {
    font-size: 3em;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.image-placeholder p {
    font-size: 1.1em;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1.4;
}

.portfolio-info {
    padding: 30px;
}

.portfolio-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8em;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 500;
}

.plant-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.plant-tag {
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2);
}

.portfolio-info p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.care-info {
    background: rgba(45, 90, 39, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-green);
}

.care-info strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.care-info span {
    color: var(--dark);
    font-style: italic;
}

.portfolio-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 90, 39, 0.1);
}

.portfolio-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2em;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 500;
}

.portfolio-cta p {
    color: var(--dark);
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Responsive Design */
@media (max-width: 768px) {
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        margin-bottom: 50px;
    }
    
    .portfolio-item {
        margin: 0 10px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .placeholder-icon {
        font-size: 2.5em;
        margin-bottom: 10px;
    }
    
    .image-placeholder p {
        font-size: 1em;
    }
    
    .portfolio-info {
        padding: 25px;
    }
    
    .portfolio-info h3 {
        font-size: 1.6em;
    }
    
    .plant-details {
        gap: 8px;
    }
    
    .plant-tag {
        font-size: 0.8em;
        padding: 5px 10px;
    }
    
    .portfolio-cta {
        padding: 40px 30px;
        margin: 0 10px;
    }
    
    .portfolio-cta h3 {
        font-size: 1.8em;
    }
    
    .portfolio-cta p {
        font-size: 1.1em;
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3em;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 400;
}

.founder-intro {
    background: rgba(45, 90, 39, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-green);
    margin-bottom: 25px;
}

.founder-intro p {
    font-size: 1.1em;
    font-style: italic;
    color: var(--dark);
    margin: 0;
    line-height: 1.6;
}

.founder-intro strong {
    color: var(--primary-green);
    font-weight: 600;
    font-style: normal;
}

.about-text p {
    font-size: 1.1em;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
    font-size: 1.2em;
}

.about-image {
    background: var(--light-green);
    border-radius: 20px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: var(--secondary-green);
    position: relative;
    overflow: hidden;
}

/* Contact Section Premium */
.contact {
    padding: 120px 0;
    background: var(--primary-green);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6em;
    margin-bottom: 30px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer Premium */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2em;
    color: var(--secondary-green);
    margin-bottom: 5px;
}

.footer-signature {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8em;
    color: #999;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: right;
    width: 100%;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.footer-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3em;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-green);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3em;
    color: white;
    font-weight: 300;
    animation: pulse 1.5s ease-in-out infinite;
    margin-bottom: 5px;
}

.loading-signature {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    color: var(--dark);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
    animation: pulse 1.5s ease-in-out infinite 0.3s;
    margin-top: 10px;
    text-align: right;
    width: 100%;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-bar {
        padding: 6px 0;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.8em;
    }
    
    .lang-text {
        display: none;
    }
    
    .flag {
        font-size: 1.2em;
    }
    
    .logo {
        font-size: 1.8em;
    }
    
    .logo-signature {
        font-size: 0.6em;
        margin-top: -5px;
    }
    
    .loading-text {
        font-size: 2.5em;
    }
    
    .loading-signature {
        font-size: 0.8em;
        color: var(--dark);
    }
    
    .footer-logo {
        font-size: 1.8em;
    }
    
    .footer-signature {
        font-size: 0.75em;
    }
    
    header {
        top: 32px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 32px);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero .tagline {
        font-size: 1.2em;
    }

    .hero .description {
        font-size: 1.1em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 2.5em;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .premium-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}