@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #e8c547;
    --gold-dark: #b8921e;
    --brown-light: #4a3f35;
    --brown-medium: #3d3531;
    --brown-dark: #2a2420;
    --brown-darker: #1f1b17;
    --text-light: #ffffff;
    --text-muted: #ffffff;
    --text-dim: #f0f0f0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(180deg, #2a2420 0%, #1f1b17 100%);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.2px;
}

/* Typing Effect Animations */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-right-color: transparent;
    }
}

.typing {
    overflow: hidden;
    border-right: 3px solid var(--gold);
    white-space: nowrap;
    animation: typing 3s steps(50, end), blink 0.75s step-end infinite;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(42, 36, 32, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 40px;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.nav-brand:hover {
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Hero Section with Video */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Animated Background - Generator Repair */
.hero-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #2a2420 0%, #1f1b17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.generator-animation {
    width: 100%;
    max-width: 500px;
    height: auto;
    opacity: 0.65;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.15));
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px);
        opacity: 0.95;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 16, 14, 0.75) 0%, rgba(42, 36, 32, 0.75) 50%, rgba(20, 16, 14, 0.75) 100%);
    z-index: 1;
    backdrop-filter: blur(3px);
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    padding: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 8px 16px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 6px 12px rgba(0, 0, 0, 0.9);
}

.hero-text {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 6px 12px rgba(0, 0, 0, 0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--brown-dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator span {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    color: var(--gold);
}

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1rem;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Journey section subtitle left aligned */
.journey-section .section-subtitle {
    text-align: left;
    font-family: 'Playfair Display', serif;
}

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(61, 53, 49, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.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 ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.service-card p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Gallery/Work Section */
.work {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: var(--brown-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 36, 32, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.cta p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: rgba(61, 53, 49, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

.contact-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.contact-card p {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--brown-darker);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 0;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-text {
    margin: 0;
}

.social-media-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-media-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid;
}

.social-media-links a i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Facebook */
.social-media-links a[href*="facebook"] {
    background: rgba(59, 89, 152, 0.1);
    border-color: rgba(59, 89, 152, 0.3);
    color: #3b5998;
}

.social-media-links a[href*="facebook"]:hover {
    background: #3b5998;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 89, 152, 0.4);
}

/* Instagram */
.social-media-links a[href*="instagram"] {
    background: linear-gradient(135deg, rgba(64, 93, 230, 0.1) 0%, rgba(131, 58, 180, 0.1) 50%, rgba(193, 53, 132, 0.1) 100%);
    border-color: rgba(131, 58, 180, 0.3);
    color: #833AB4;
}

.social-media-links a[href*="instagram"]:hover {
    background: linear-gradient(135deg, #405DE6 0%, #833AB4 50%, #c13584 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(131, 58, 180, 0.5);
}

/* WhatsApp */
.social-media-links a[href*="wa.me"] {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.social-media-links a[href*="wa.me"]:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Services Detail Page */
.services-hero,
.cert-hero,
.about-hero {
    min-height: 80vh;
    margin-top: 70px;
}

.services-details {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-detail {
    background: rgba(61, 53, 49, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-detail:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-6px);
}

.service-detail-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-detail h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.service-desc {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-list {
    list-style: none;
    color: #ffffff;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Service Process */
.service-process {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.process-steps {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.2s; }
.process-step:nth-child(5) { animation-delay: 0.3s; }
.process-step:nth-child(7) { animation-delay: 0.4s; }

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #d4af37, #e8c547);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.process-arrow {
    color: #d4af37;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    opacity: 0.4;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Service Action Gallery */
.service-action {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

/* Certifications Section */
.certifications {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-card {
    padding: 2rem;
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

.cert-card:nth-child(1) { animation-delay: 0.1s; }
.cert-card:nth-child(2) { animation-delay: 0.2s; }
.cert-card:nth-child(3) { animation-delay: 0.3s; }
.cert-card:nth-child(4) { animation-delay: 0.4s; }

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cert-card h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cert-card p {
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stats Banner */
.stats-banner {
    margin: 3rem 0;
    padding: 3rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    animation: slideInUp 0.8s ease-out;
}

.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.3s; }
.stat:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #e8c547);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #ffffff;
    margin-top: 0.5rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Completed Projects */
.completed-projects {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.project-content p {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.sector {
    color: #d4af37;
    font-weight: 600;
}

.duration {
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Companies We've Worked With */
.companies-worked {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.company-card {
    padding: 2rem;
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

.company-card:nth-child(1) { animation-delay: 0.1s; }
.company-card:nth-child(2) { animation-delay: 0.2s; }
.company-card:nth-child(3) { animation-delay: 0.3s; }
.company-card:nth-child(4) { animation-delay: 0.4s; }
.company-card:nth-child(5) { animation-delay: 0.5s; }
.company-card:nth-child(6) { animation-delay: 0.6s; }

.company-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.company-card h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.company-card p {
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.mission-card {
    background: rgba(61, 53, 49, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

.mission-card h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.mission-card p {
    color: #ffffff;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: rgba(61, 53, 49, 0.5);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.stat-label {
    font-size: 0.95rem;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.timeline-item {
    margin-bottom: 3rem;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 55%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--brown-dark);
    border-radius: 50%;
    top: 0;
}

.timeline-content {
    background: rgba(61, 53, 49, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
}

.timeline-year {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #ffffff;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Team Section */
.team-section {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: rgba(61, 53, 49, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
}

.team-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--brown-light), var(--brown-medium));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.team-role {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Workspace Section */
.workspace-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.workspace-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.workspace-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    animation: scaleIn 0.8s ease-out;
}

.workspace-item:nth-child(1) { animation-delay: 0.1s; }
.workspace-item:nth-child(2) { animation-delay: 0.2s; }
.workspace-item:nth-child(3) { animation-delay: 0.3s; }

.workspace-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workspace-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.workspace-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 16, 14, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workspace-item:hover .workspace-overlay {
    opacity: 1;
}

.workspace-overlay h4 {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Get In Touch */
.get-in-touch {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info {
    padding: 2rem;
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

.contact-info:nth-child(1) { animation-delay: 0.1s; }
.contact-info:nth-child(2) { animation-delay: 0.2s; }
.contact-info:nth-child(3) { animation-delay: 0.3s; }
.contact-info:nth-child(4) { animation-delay: 0.4s; }

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-info h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info p {
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #e8c547;
}

/* Modern Effects & Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Glassmorphism depth layer */
.glass-layer {
    background: rgba(42, 36, 32, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2) inset, 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Smooth transitions for all interactive elements */
button, a, .interactive {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
button:focus, a:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(42, 36, 32, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
        opacity: 1;
        overflow-y: auto;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .nav-menu a::before {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        margin-left: 60px !important;
        text-align: left !important;
    }

    .timeline-dot {
        left: 20px;
    }

    .services-grid,
    .gallery-grid,
    .contact-grid,
    .mission-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 20px;
    }
}

/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}

/* Scroll animation */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Process Image Container */
.process-image-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    margin: 2rem 0;
}

.process-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}
