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

body {
    font-family: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #ff9933, #138808);
    border-image-slice: 1;
}

.navbar {
    padding: 1.25rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo img:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 153, 51, 0.3));
}

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

.nav-links a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9933, #138808);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ff9933;
}

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

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(255, 153, 51, 0.15), rgba(19, 136, 8, 0.15)),
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('images/hero-background.jpg') center/cover;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 153, 51, 0.2), transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    width: 100%;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #ffd699;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease;
}

.subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.4s ease;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff9933, #ff8800);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1.6s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 153, 51, 0.5);
    background: linear-gradient(135deg, #ff8800, #ff9933);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff9933, #138808);
    border-radius: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 153, 51, 0.3), rgba(19, 136, 8, 0.3));
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(19, 136, 8, 0.2));
    border-radius: 16px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text .intro {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff9933;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.9;
    color: #3d3d3d;
}

/* Background Section */
.background {
    padding: 6rem 0;
    background: #ffffff;
}

.content-card {
    background: linear-gradient(135deg, #fff5eb 0%, #f0f8ee 100%);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 153, 51, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.content-card h3 {
    color: #138808;
    font-size: 2rem;
    margin-bottom: 1.75rem;
    font-weight: 700;
}

.content-card p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.9;
    color: #3d3d3d;
}

/* Connection Section */
.connection {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fffaf5 0%, #f5fef5 100%);
    position: relative;
}

.connection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.3), rgba(19, 136, 8, 0.3), transparent);
}

.connection-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.connection-text h3 {
    color: #138808;
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.connection-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.9;
    color: #3d3d3d;
}

.connection-image {
    position: relative;
}

.connection-image::before {
    content: '';
    position: absolute;
    top: 15px;
    right: -15px;
    left: 15px;
    bottom: -15px;
    background: linear-gradient(135deg, rgba(19, 136, 8, 0.2), rgba(255, 153, 51, 0.2));
    border-radius: 16px;
    z-index: -1;
}

.connection-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.connection-image:hover img {
    transform: scale(1.02);
}

/* Vision Section */
.vision {
    padding: 6rem 0;
    background: #ffffff;
}

.vision-intro {
    text-align: center;
    font-size: 1.25rem;
    max-width: 950px;
    margin: 0 auto 4rem;
    line-height: 1.9;
    color: #4a4a4a;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.vision-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9933, #138808);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.vision-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2);
}

.vision-card h3 {
    color: #ff9933;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.vision-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.vision-statement {
    background: linear-gradient(135deg, #ff9933 0%, #ff8800 50%, #138808 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.25);
    position: relative;
    overflow: hidden;
}

.vision-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

.vision-statement p {
    font-size: 1.4rem;
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

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

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(19, 136, 8, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff5eb 0%, #f0f8ee 100%);
}

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

.contact-info h3,
.contact-form h3 {
    color: #ff9933;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-item {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border-left: 3px solid #138808;
}

.info-item strong {
    color: #138808;
    font-weight: 700;
}

.social-links {
    margin-top: 2.5rem;
}

.social-links h4 {
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
}

.social-icon {
    display: inline-block;
    background: linear-gradient(135deg, #ff9933, #ff8800);
    color: white;
    padding: 0.75rem 1.75rem;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.25);
}

.social-icon:hover {
    background: linear-gradient(135deg, #138808, #0f6606);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(19, 136, 8, 0.3);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9933;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 153, 51, 0.15);
}

.submit-button {
    background: linear-gradient(135deg, #138808, #0f6606);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(19, 136, 8, 0.3);
    letter-spacing: 0.5px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #0f6606, #138808);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(19, 136, 8, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #ff9933, #138808);
    border-image-slice: 1;
}

footer p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    margin-top: 0.75rem;
    color: #ffd699;
    font-style: italic;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .logo img {
        height: 70px;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        min-height: 550px;
    }

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

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1.15rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .about,
    .background,
    .connection,
    .vision,
    .gallery,
    .contact {
        padding: 4rem 0;
    }

    .about-content,
    .connection-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image::before,
    .connection-image::before {
        display: none;
    }

    .connection-text {
        order: 2;
    }

    .connection-image {
        order: 1;
    }

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

    .vision-statement {
        padding: 2rem;
    }

    .vision-statement p {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-card {
        padding: 2.5rem;
    }
}

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

    .hero-content h2 {
        font-size: 1.25rem;
    }

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

    .vision-card,
    .content-card {
        padding: 2rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
    }

    .submit-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
