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

body {
    font-family: 'Calibri', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #006034;
}

/* Navigation */
.navbar {
    background: rgb(7, 97, 55);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #019652;
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #006034 0%, #019652 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #059980;
    color: white;
    border-color: #059980;
}

.btn-primary:hover {
    background: transparent;
    color: #059980;
    border-color: #059980;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(32, 201, 151, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #006034;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #F8F9FA;
}

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

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

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.feature-card p {
    color: #6C757D;
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: white;
}

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

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

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

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    color: #6C757D;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #059980;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #006034;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #6C757D;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

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

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #059980 0%, #17A085 100%);
    text-align: center;
}

.cta-content {
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: #059980;
    border-color: white;
}

.cta .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Footer */
.footer {
    background: #016034;
    color: white;
    padding: 60px 0 20px;
    font-weight: 500;
}

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

.footer-section h3,
.footer-section h4 {
    color: #019652;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #B8C5D1;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #059980;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #006034;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}

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

.hero-content,
.feature-card,
.service-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #059980;
    outline-offset: 2px;
}


/* Services Page Styles */
.page-header {
    background: linear-gradient(135deg, #006034 0%, #019652 100%);
    padding: 150px 0 100px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detail {
    padding: 100px 0;
}

.service-section {
    margin-bottom: 100px;
}

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

.service-content-wrapper.reverse {
    direction: rtl;
}

.service-content-wrapper.reverse > * {
    direction: ltr;
}

.service-text h2 {
    font-size: 2.5rem;
    color: #006034;
    margin-bottom: 1.5rem;
}

.service-text > p {
    font-size: 1.1rem;
    color: #6C757D;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 10px;
    border-left: 4px solid #059980;
}

.feature-item h4 {
    color: #006034;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #6C757D;
    line-height: 1.6;
    margin: 0;
}

.pricing-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-info h4 {
    color: #059980;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #F8F9FA;
}

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

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

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #059980;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #006034;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: #6C757D;
    line-height: 1.6;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .service-content-wrapper,
    .service-content-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .service-text h2 {
        font-size: 2rem;
    }
    
    .service-image img {
        height: 250px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-text h2 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .pricing-info {
        padding: 1.5rem;
    }
}


/* About Page Styles */
.about-content {
    padding: 100px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 80px;
}

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

.about-text p {
    font-size: 1.1rem;
    color: #6C757D;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-values {
    margin-top: 3rem;
}

.value-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 10px;
    border-left: 4px solid #019652;
}

.value-item h4 {
    color: #006034;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.value-item p {
    color: #6C757D;
    line-height: 1.6;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #059980 0%, #17A085 100%);
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    margin-bottom: 1.5rem;
}

.placeholder-avatar {
    width: 100px;
    height: 100px;
    background: #059980;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto;
}

.team-member h3 {
    color: #006034;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: #019652;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #6C757D;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* History Section */
.history {
    padding: 100px 0;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #059980;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #059980;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 15px;
    margin: 0 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #006034;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #6C757D;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for About */
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .timeline-year {
        min-width: 60px;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .timeline-content {
        margin-left: 2rem;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .placeholder-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
        margin-left: 1rem;
    }
}


/* Contact Page Styles */
.contact-content {
    padding: 100px 0;
}

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

.contact-form-section h2 {
    font-size: 2.5rem;
    color: #006034;
    margin-bottom: 1rem;
}

.contact-form-section > p {
    color: #6C757D;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #059980;
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #DC3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

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

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.faq-preview {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3,
.faq-preview h3 {
    color: #006034;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-card > p {
    color: #6C757D;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

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

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: #F8F9FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #006034;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: #6C757D;
    margin: 0;
    line-height: 1.4;
}

.response-time {
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 10px;
    border-left: 4px solid #059980;
}

.response-time h4 {
    color: #006034;
    margin-bottom: 0.5rem;
}

.response-time p {
    color: #6C757D;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Preview */
.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E9ECEF;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    color: #006034;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.faq-item p {
    color: #6C757D;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #DC3545;
}

.error-message {
    color: #DC3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Success Message */
.success-message {
    background: #D4EDDA;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #C3E6CB;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info-card,
    .faq-preview {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        margin-bottom: 0.5rem;
    }
}


/* Portfolio Page Styles */
.portfolio-filter {
    padding: 50px 0;
    background: #F8F9FA;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #E9ECEF;
    background: white;
    color: #6C757D;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #059980;
    color: white;
    border-color: #059980;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

.portfolio-grid {
    padding: 100px 0;
}

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

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.portfolio-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.book-cover {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
}

.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.book-cover h3,
.book-cover p {
    position: relative;
    z-index: 2;
    margin: 0;
}

.book-cover h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.book-cover p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Book Cover Backgrounds */
.fiction-cover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fiction-cover-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.non-fiction-cover {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.non-fiction-cover-2 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.business-cover {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.business-cover-2 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.memoir-cover {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.memoir-cover-2 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    color: #006034;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.author {
    color: #059980;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.genre {
    color: #019652;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description {
    color: #6C757D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: #F8F9FA;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #6C757D;
    font-weight: 600;
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.success-story {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.success-story:hover {
    transform: translateY(-5px);
}

.success-quote {
    margin-bottom: 2rem;
}

.success-quote p {
    font-style: italic;
    color: #6C757D;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.success-quote p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #059980;
    font-family: serif;
}

.success-author strong {
    color: #006034;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.success-author span {
    color: #6C757D;
    display: block;
    margin-bottom: 1rem;
}

.success-result {
    background: linear-gradient(135deg, #059980 0%, #17A085 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design for Portfolio */
@media (max-width: 768px) {
    .portfolio-items {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .portfolio-content {
        padding: 1.5rem;
    }
    
    .portfolio-stats {
        justify-content: center;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .success-story {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .book-cover {
        padding: 1.5rem;
    }
    
    .book-cover h3 {
        font-size: 1.3rem;
    }
    
    .portfolio-content {
        padding: 1.5rem;
    }
    
    .success-story {
        padding: 1.5rem;
    }
    
    .success-quote p {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
}

