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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0d1f0d 0%, #1a3d1a 50%, #0a150a 100%);
    min-height: 100vh;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 31, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(13, 31, 13, 0.98);
    box-shadow: 0 2px 20px rgba(34, 197, 94, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ffffff;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content Container */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #65a30d, #4d7c0f);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #15803d, #166534);
    border-radius: 20px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #84cc16, #65a30d);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #059669, #047857);
    border-radius: 0 50% 50% 50%;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Page Sections */
.page-section {
    padding: 4rem 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Cards and Grid Layouts */
.grid-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 0 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #22c55e;
    color: #22c55e;
}

.btn-outline:hover {
    background: #22c55e;
    color: #ffffff;
}

/* Footer */
.footer {
    background: rgba(13, 31, 13, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: #22c55e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #22c55e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    margin-top: 2rem;
    color: #718096;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.2);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 31, 13, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

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

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo-img {
        height: 40px;
    }

    .container {
        padding: 1rem;
    }

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

    .grid-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .page-section {
        padding: 2rem 0;
    }

    .footer-content {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        height: 35px;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .card {
        padding: 1.5rem;
    }
}

/* Home Page Specific Styles */
.hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.logo-section {
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 200px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    margin-bottom: 2rem;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.5));
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #22c55e, #16a34a, #15803d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.logo-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    margin: 0 auto;
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

.hero-text {
    margin-top: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.8;
}

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

/* Service Items */
.service-item {
    text-align: center;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: #22c55e;
}

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

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

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: #cbd5e0;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Feature Items */
.feature-item {
    text-align: center;
}

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

.feature-icon i {
    font-size: 2.5rem;
    color: #22c55e;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-item p {
    color: #a0aec0;
    line-height: 1.6;
}

/* Contact Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 2rem;
    color: #22c55e;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-card .contact-link {
    display: block;
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-card .contact-link:hover {
    color: #16a34a;
}

.contact-card p {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1rem auto;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input::placeholder {
    color: #a0aec0;
}

.newsletter-input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-privacy {
    color: #718096;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* About Page Specific Styles */
.page-hero {
    padding: 8rem 0 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.mission-card,
.vision-card {
    text-align: center;
    padding: 3rem 2rem;
}

.mission-icon,
.vision-icon {
    margin-bottom: 1.5rem;
}

.mission-icon i,
.vision-icon i {
    font-size: 3rem;
    color: #22c55e;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.mission-card p,
.vision-card p {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Values Section */
.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 2.5rem;
    color: #22c55e;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-item p {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
}

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

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    border: 3px solid #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: #22c55e;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.member-role {
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

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

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

.stat-icon {
    margin-bottom: 1rem;
}

.stat-icon i {
    font-size: 2.5rem;
    color: #22c55e;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a0aec0;
    font-size: 1rem;
    font-weight: 500;
}

/* Call to Action */
.cta-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* About Page Mobile Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem 0;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

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

/* Portfolio Page Styles */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: #22c55e;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
}

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

.portfolio-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #22c55e;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .image-placeholder {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 31, 13, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.view-details-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.view-details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

.portfolio-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.portfolio-category {
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.portfolio-category i {
    margin-right: 0.5rem;
}

.portfolio-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.portfolio-meta {
    display: flex;
    gap: 1.5rem;
    color: #718096;
    font-size: 0.85rem;
}

.portfolio-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.portfolio-meta i {
    color: #22c55e;
}

/* Reviews Page Styles */
.review-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

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

.star-display {
    margin-top: 0.5rem;
    color: #fbbf24;
    font-size: 1.2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.review-card {
    padding: 2rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reviewer-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.review-event {
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 500;
}

.review-rating {
    color: #fbbf24;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-rating i {
    margin: 0 1px;
}

.review-body {
    margin-top: 1rem;
}

.review-text {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-date {
    color: #718096;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-date i {
    color: #22c55e;
}

.testimonial-highlight {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight-card {
    text-align: center;
    padding: 3rem 2.5rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #22c55e;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
}

.highlight-author h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.highlight-author p {
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-container {
    padding: 3rem 2.5rem;
}

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

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

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

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #718096;
}

.form-group select {
    cursor: pointer;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #22c55e;
}

.checkbox-label a {
    color: #22c55e;
    text-decoration: underline;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    width: 100%;
    font-size: 1.05rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-question i {
    color: #22c55e;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.faq-answer {
    margin-top: 1rem;
    padding-left: 2.2rem;
}

.faq-answer p {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Social Section */
.social-section {
    text-align: center;
    padding: 0 2rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.social-link-large {
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
}

.social-link-large i {
    font-size: 2.5rem;
    color: #22c55e;
    transition: transform 0.3s ease;
}

.social-link-large:hover i {
    transform: scale(1.2);
}

.social-link-large span {
    font-weight: 500;
    font-size: 1rem;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .portfolio-filters {
        padding: 0 1rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .review-stats-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .social-links-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-image {
        height: 200px;
    }

    .image-placeholder {
        font-size: 3rem;
    }

    .portfolio-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .highlight-card {
        padding: 2rem 1.5rem;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        font-size: 1rem;
    }
}