/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
}

.btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline:hover {
    background-color: #007bff;
    color: white;
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand .logo {
    height: 40px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007bff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Landing Showcase */
.landing-showcase {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    height: calc(100vh - 70px);
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    padding: 0 2rem;
}

.showcase-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-statement {
    text-align: left;
}

.brand-tag {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #667eea;
    font-weight: 300;
}

.brand-statement h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin: 1rem 0;
    letter-spacing: -2px;
}

.brand-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 1.5rem 0;
}

.mission {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b8c5d6;
    margin: 0;
}

.showcase-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.featured-project {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.project-hero {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.project-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.8);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.project-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
}

.project-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.3;
}

.showcase-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 4rem 0;
}

.quick-facts {
    text-align: right;
}

.fact-item {
    margin-bottom: 2rem;
}

.fact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.fact-label {
    font-size: 0.9rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-quick {
    text-align: right;
}

.btn-modern {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.contact-info {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #b8c5d6;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #b8c5d6;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #667eea;
    margin: 0.5rem auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat p {
    font-weight: 500;
    color: #333;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Blog Section */
.blog {
    padding: 80px 0;
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #007bff;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #007bff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.cookie-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-label input[type="checkbox"] {
    margin: 0;
}

.cookie-label span {
    font-weight: 500;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
    margin-left: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .about h2,
    .services h2,
    .testimonials h2,
    .blog h2,
    .contact h2 {
        font-size: 2rem;
    }

    .nav {
        padding: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* NEW MODERN LAYOUT STYLES */

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.philosophy-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 2.8rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-weight: 700;
}

.vision-points {
    space-y: 2rem;
}

.vision-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.vision-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.vision-item h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.vision-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-elements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 300px;
}

.element-card {
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: white;
    transition: transform 0.3s ease;
}

.element-card:hover {
    transform: translateY(-5px);
}

.element-card.modern {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.element-card.traditional {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.element-card.sustainable {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    grid-column: 1 / -1;
}

/* Expertise Section */
.expertise-section {
    padding: 100px 0;
    background: #1a1a2e;
    color: white;
}

.expertise-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.expertise-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.expertise-header p {
    font-size: 1.2rem;
    color: #b8c5d6;
}

.expertise-panels {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.panel {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.panel:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    border-color: #667eea;
}

.panel-number {
    font-size: 1rem;
    color: #667eea;
    font-weight: 300;
    letter-spacing: 2px;
}

.panel h3 {
    font-size: 1.8rem;
    margin: 1rem 0 2rem;
    line-height: 1.3;
}

.panel-detail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.panel-detail p {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.panel-detail ul {
    list-style: none;
    padding: 0;
}

.panel-detail li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.panel-detail li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
}

/* Stories Section */
.stories-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.stories-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stories-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.stories-intro h2 {
    font-size: 2.8rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stories-intro p {
    font-size: 1.2rem;
    color: #666;
}

.stories-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-featured {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-image {
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-badge {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.story-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-client strong {
    color: #1a1a2e;
    display: block;
}

.story-client span {
    color: #666;
    font-size: 0.9rem;
}

.story-list {
    space-y: 1.5rem;
}

.story-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.story-location {
    font-size: 0.8rem;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-item h4 {
    color: #1a1a2e;
    margin: 0.5rem 0;
}

.story-item p {
    font-style: italic;
    color: #666;
    margin-bottom: 0.5rem;
}

.story-item cite {
    font-size: 0.9rem;
    color: #999;
}

/* Knowledge Section */
.knowledge-section {
    padding: 100px 0;
    background: #1a1a2e;
    color: white;
}

.knowledge-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.knowledge-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.knowledge-header p {
    font-size: 1.2rem;
    color: #b8c5d6;
}

.knowledge-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.knowledge-featured {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.featured-article {
    position: relative;
}

.featured-article img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-content {
    padding: 2rem;
}

.article-category {
    font-size: 0.8rem;
    color: #667eea;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-content h3 {
    font-size: 1.8rem;
    margin: 1rem 0;
    line-height: 1.3;
}

.featured-content h3 a {
    color: white;
    text-decoration: none;
}

.featured-content p {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-date {
    font-size: 0.9rem;
    color: #999;
}

.knowledge-articles {
    space-y: 1rem;
}

.article-compact {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.article-compact:hover {
    background: rgba(255,255,255,0.1);
}

.article-compact img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.article-info {
    flex-grow: 1;
}

.category {
    font-size: 0.7rem;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-info h4 {
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.3;
}

.article-info h4 a {
    color: white;
    text-decoration: none;
}

.date {
    font-size: 0.8rem;
    color: #999;
}

/* Collaboration Section */
.collaboration-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.collaboration-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-content h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 700;
}

.info-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.method-item {
    margin-bottom: 2rem;
}

.method-label {
    display: block;
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.method-value {
    font-size: 1.1rem;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 500;
}

.method-value:hover {
    color: #667eea;
}

.office-hours h4 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.office-hours p {
    color: #666;
    margin: 0;
}

.collaboration-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    margin: 0;
}

.form-fields {
    space-y: 1.5rem;
}

.field-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.field-group input,
.field-group textarea,
.field-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
    outline: none;
    border-color: #667eea;
}

.field-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.field-group input:focus + label,
.field-group textarea:focus + label,
.field-group input:not(:placeholder-shown) + label,
.field-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-2rem) scale(0.8);
    color: #667eea;
    background: white;
    padding: 0 0.5rem;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive Design for New Layout */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        height: auto;
        padding: 2rem 1rem;
    }
    
    .brand-statement h1 {
        font-size: 2.5rem;
    }
    
    .philosophy-layout,
    .collaboration-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-panels {
        grid-template-columns: 1fr;
    }
    
    .stories-showcase,
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-elements {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .element-card.sustainable {
        grid-column: 1;
    }
}
