@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #099366;
    --secondary-color: #2A2A2A;
    --background-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --overlay-gradient: linear-gradient(to right, rgba(42, 42, 42, 0.95), rgba(9, 147, 102, 0.85));
    --light-overlay-gradient: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(9, 147, 102, 0.1));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    width: 100%;
}

/* Header & Navigation */
header {
    background-color: var(--background-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

header.scrolled {
    padding: 0.5rem 0;
}

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

.logo a,
.footer-logo a {
    display: block;
    text-decoration: none;
    text-align: left;
}

.logo a span {
    display: block;
    line-height: 1.2;
}

.logo img {
    height: 140px; /* Reduced from 180px */
    transition: height var(--transition-speed) ease;
    max-width: 100%;
    object-fit: contain;
}

header.scrolled .logo img {
    height: 60px; /* Final size when scrolled */
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus {
    outline: none;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        position: relative;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 2rem 2rem;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--secondary-color);
        padding: 1rem 0;
        margin: 0;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav-links a:active {
        background-color: rgba(0, 0, 0, 0.05);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        position: relative;
    }

    .logo img {
        height: 80px;
    }


}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 3;
    position: relative;
}

.hero-text h1 {
    margin-top: 200px;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.celebration-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-shadow: none;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}



.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--text-color);
    font-size: 1.2rem;
    position: relative;
    z-index: 5;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 100%;
}

.service-card {
    position: relative;
    overflow: visible;
    background: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    opacity: 0.2;
    z-index: -1;
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 2rem;
    color: var(--primary-color);
    padding: 1.5rem;
    margin: 0;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-list {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-list i {
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    position: relative;
    color: white;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(42, 42, 42, 0.85), rgba(9, 147, 102, 0.75)), url('assets/4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 5;
}

.features .section-header h2 {
    color: white;
    position: relative;
    z-index: 5;
}

.features .section-header p {
    color: white;
    position: relative;
    z-index: 5;
}

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

.feature-card {
    opacity: 1; /* Start visible by default */
    transform: translateY(0); /* Start in final position */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    opacity: 0.2;
    z-index: -1;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card p {
    color: black;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background-color: var(--background-color);
    position: relative;
}

.projects .container {
    position: relative;
    z-index: 5;
}

.projects .section-header {
    position: relative;
    z-index: 5;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 5;
    max-width: 100%;
}

.project-card {
    opacity: 1; /* Start visible by default */
    transform: translateY(0); /* Start in final position */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

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

.project-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(42, 42, 42, 0.9);
    color: white;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    position: relative;
    color: white;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(42, 42, 42, 0.85), rgba(9, 147, 102, 0.75)), url('assets/handyman-7-res-4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 5;
}

.testimonials .section-header h2 {
    color: white;
    position: relative;
    z-index: 5;
}

.testimonials .section-header p {
    color: white;
    position: relative;
    z-index: 5;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 5;
    max-width: 100%;
}

.testimonial-card {
    opacity: 1; /* Start visible by default */
    transform: translateY(0); /* Start in final position */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
}

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

.testimonial-card .customer-name {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card h3,
.testimonial-card p {
    color: black;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-overlay-gradient), url('assets/handyman-7-res-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98));
    z-index: 1;
}

.contact .section-header {
    margin-bottom: 4rem;
}

.contact .section-header h2 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    z-index: 5;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.contact-details {
    background: rgba(255, 255, 255, 0.98);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-details::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    opacity: 0.1;
    z-index: 0;
}

.contact-image-container {
    position: relative;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.contact-text h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-info-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info-group i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-text a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all var(--transition-speed) ease;
    padding: 0.5rem 0;
}

.contact-text a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
}

.pay-invoice {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    background-color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
    padding: 1rem 2rem !important;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    text-align: center;
    width: 100%;
    gap: 0.75rem;
}

.pay-invoice:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--box-shadow);
    background-color: #017350;
}

@media (max-width: 768px) {
    .contact .section-header h2 {
        font-size: 3rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contact-image-container {
        max-height: 300px;
        overflow: hidden;
    }

    .contact-text {
        text-align: center;
    }

    .contact-info-group {
        justify-content: center;
    }

    .contact-text a {
        justify-content: center;
    }
}

/* Footer */
footer {
    background: linear-gradient(rgba(42, 42, 42, 0.55), rgba(42, 42, 42, 0.67)), url('assets/footerbg-min.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.8;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.8;
}

.footer-logo a {
    text-align: center;
}

.footer-logo img {
    height: 100px;
    filter: brightness(1.1);
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    padding: 5px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.social-links {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all var(--transition-speed) ease;
    opacity: 0.9;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.9rem;
}

.footer-info {
    text-align: center;
    margin: 1rem 0;
}

.footer-info p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 30px;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-logo img {
        height: 80px;
    }
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: var(--light-overlay-gradient), url('assets/5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.guarantee-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 1200px;
    width: calc(100% - 2rem);
    margin: 0 auto;
}

.guarantee-text {
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.guarantee-text p:last-child {
    margin-bottom: 0;
}

.guarantee-text strong {
    color: var(--primary-color);
    font-weight: 700;
}



/* Curved Section Dividers */
.section-divider {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .contact-details {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-text {
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero,
    .features,
    .guarantee,
    .testimonials,
    .contact {
        background-attachment: scroll;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.8rem;
    }



    .logo img {
        height: 100px; /* Reduced from 120px */
    }
    
    header.scrolled .logo img {
        height: 40px; /* Smaller final size on mobile */
    }

    .footer-logo img {
        height: 80px; /* Increased from default for mobile */
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Headers */
.features .section-header h2::after,
.projects .section-header h2::after,
.testimonials .section-header h2::after {
    background-color: var(--primary-color);
    z-index: 6;
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

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

/* Cards */
.feature-card,
.project-card,
.testimonial-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed), opacity var(--transition-speed);
    position: relative;
    z-index: 2;
}

/* Animation styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-speed),
                transform var(--transition-speed);
}

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

/* Section specific styles */
.features-section,
.projects-section,
.testimonials-section {
    position: relative;
    z-index: 1;
    background: var(--background-color);
    padding: 4rem 0;
}

.features-section::before,
.projects-section::before,
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
    z-index: -1;
}

/* Grid layouts */
.features-grid,
.projects-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #017350;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top i {
    font-size: 1.5rem;
    line-height: 0;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.team-section {
    margin-top: 3rem;
}

.team-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.team-member h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member .quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: white;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Payments Section */
.payments {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-method {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform var(--transition-speed) ease;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-method i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-method h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-method p {
    color: var(--text-color);
    line-height: 1.6;
}

.payment-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.payment-cta h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.payment-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Responsive styles for new sections */
@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .payment-method {
        padding: 1.5rem;
    }
    
    .about-section h3 {
        font-size: 1.3rem;
    }
    
    .team-section h3 {
        font-size: 2rem;
    }
}
