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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.logo-text {
    display: inline-block;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/images/Modern-Green-Home-ft-1.jpg');
    background-size: cover;
    background-position: center;
    background-color: #000;
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 300;
}

/* About Hero Section */
.about-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background-color: #eee;
}

.about-hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.about-hero-text {
    padding-right: 2rem;
}

.about-hero-heading {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #333;
    letter-spacing: -1px;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.philosophy-point {
    padding-left: 2rem;
    text-indent: -2rem;
    margin-left: 2rem;
}

.philosophy-point strong {
    text-indent: 0;
}

.about-hero-image {
    width: 100%;
    height: 100%;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Partners Section */
.partners-section {
    padding: 6rem 2rem;
    background-color: #e8e4dc;
}

.partners-heading {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #333;
    letter-spacing: -1px;
}

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

.partner-card {
    width: 100%;
}

.partner-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.partner-card:hover .partner-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.partner-info {
    padding: 1.5rem 0;
}

.partner-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.partner-role {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

/* Contact Hero Section */
.contact-hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-hero-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/ocean-pro-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    z-index: -1;
}

/* Hero Text Overlay */
.hero-text-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem 4rem;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 2rem;
}

/* Featured Projects */
.featured-projects {
    width: 100%;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.project-card {
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.project-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem 0;
}

.project-info h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #000;
}

.project-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Content Section */
.content-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: transparent;
}

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

.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

/* Contact Page */
.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-info > p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.info-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-block {
    margin-bottom: 1rem;
    background-color: rgba(50, 50, 50, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.info-block p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.7;
}

.info-block a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #000;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: rgba(50, 50, 50, 0.8);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: white;
}

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

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

.submit-btn {
    background-color: #000;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: #fff;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero-text {
        padding-right: 0;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .info-blocks {
        grid-template-columns: 1fr;
    }
    
    .project-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text-overlay {
        padding: 2rem 2rem;
        margin: 0 1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
        background-color: rgba(50, 50, 50, 0.8);
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.15rem;
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text-overlay {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

