/* Global 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: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header Styles */
.site-header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: -0.5px;
}

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

.nav-link-item {
    color: #555;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link-item:hover {
    color: #2c5f2d;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5f2d;
    transition: width 0.3s ease;
}

.nav-link-item:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section-banner {
    margin-top: 80px;
    height: 90vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title-main {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle-desc {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* About Section */
.about-section-content {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.section-container-box {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-heading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c5f2d;
    font-weight: 700;
}

.section-subtitle-text {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.about-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.card-title-label {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.card-description-para {
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services-section-display {
    padding: 6rem 2rem;
    background: white;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card-block {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card-block:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-image-frame {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content-area {
    padding: 2rem;
    background: white;
}

.service-title-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
    font-weight: 600;
}

.service-text-info {
    color: #666;
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section-showcase {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.gallery-item-photo {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item-photo:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-image-pic {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-photo:hover .gallery-overlay-layer {
    opacity: 1;
}

.overlay-text-caption {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section-reviews {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.testimonial-card-quote {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.quote-text-message {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-info-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-role-position {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section-form {
    padding: 6rem 2rem;
    background: white;
}

.contact-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-main {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-input-box,
.form-textarea-area {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-textarea-area {
    resize: vertical;
    min-height: 150px;
}

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

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Footer Section */
.footer-section-bottom {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column-block {

}

.footer-title-header {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-text-paragraph {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links-list {
    list-style: none;
}

.footer-link-anchor {
    color: #aaa;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-link-anchor:hover {
    color: white;
    padding-left: 5px;
}

.social-icons-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu-primary {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-subtitle-desc {
        font-size: 1.1rem;
    }

    .section-title-heading {
        font-size: 2rem;
    }

    .about-grid-layout,
    .services-grid-container,
    .gallery-grid-masonry,
    .testimonials-grid-list {
        grid-template-columns: 1fr;
    }

    .contact-form-main {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .header-container-wrap {
        padding: 0 1rem;
    }

    .hero-title-main {
        font-size: 2rem;
    }

    .hero-subtitle-desc {
        font-size: 1rem;
    }

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