* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #eaeaea;
    overflow-x: hidden;
    background: var(--bg-light);
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('images/logo1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Creates parallax effect */
}

/* Optional: Overlay to improve text readability */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(218, 216, 216, 0.611);
    z-index: -1;
}



/* ========== MODERN HOME SECTION ========== */
.modern-home {
    position: relative;
    min-height: 100vh;
    padding: 100px 8% 80px;
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Elements */
.home-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.1), rgba(0, 221, 118, 0.05));
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0.1s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -50px;
    animation-delay: 0.2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 0.4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.home-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Home Content */
.home-content {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease 0.2s forwards;
}

.home-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 180, 0, 0.3);
}

.home-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-subtitle {
    font-size: 1.8em;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.home-description {
    font-size: 1.3em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Home Stats */
.home-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5em; /* Increased from 2em */
    font-weight: 800; /* Increased weight */
    color: rgb(0, 180, 0);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
}

/* Home Actions */
.home-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    box-shadow: 0 10px 30px rgba(0, 180, 0, 0.3);
}

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

.cta-button.secondary {
    background: transparent;
    color: rgb(0, 180, 0);
    border-color: rgb(0, 180, 0);
}

.cta-button.secondary:hover {
    background: rgba(0, 180, 0, 0.1);
    transform: translateY(-3px);
}

/* Home Visual */
.home-visual {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 1s ease 0.5s forwards;
}

.visual-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    position: relative;
    z-index: 2;
}

.main-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-visual:hover img {
    transform: scale(1.05);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(0, 180, 0, 0.1);
}

.card-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 1s;
}

.card-3 {
    bottom: -20px;
    right: 20px;
    animation-delay: 2s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1em;
}

.card-text {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #222;
    font-size: 0.9em;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .home-container {
        gap: 60px;
    }
    .home-title {
        font-size: 3.2em;
    }
    .home-stats {
        gap: 30px;
    }
    .stat-number {
        font-size: 2.2em; /* Adjusted for tablet */
    }
}

@media (max-width: 768px) {
    .modern-home {
        padding: 120px 5% 60px;
        min-height: auto;
    }
    .home-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .home-title {
        font-size: 2.8em;
    }
    .home-subtitle {
        font-size: 1.5em;
    }
    .home-description {
        margin: 0 auto 40px;
    }
    .home-stats {
        justify-content: center;
        gap: 25px;
    }
    .stat-number {
        font-size: 2em; /* Adjusted for mobile */
    }
    .home-actions {
        justify-content: center;
    }
    .floating-card {
        transform: scale(0.9);
    }
    .card-1 {
    top: -5px;
    right: -5px;
    animation-delay: 0s;
    }

.card-2 {
    bottom: 40px;
    left: -5px;
    animation-delay: 1s;
    }

.card-3 {
    bottom: -20px;
    right: 20px;
    animation-delay: 2s;
    }
}

@media (max-width: 480px) {
    .modern-home {
        padding: 100px 20px 50px;
    }
    .home-title {
        font-size: 2.2em;
    }
    .home-subtitle {
        font-size: 1.3em;
    }
    .home-description {
        font-size: 1.1em;
    }
    .home-stats {
        gap: 20px;
        flex-direction: column;
    }
    .stat-number {
        font-size: 2em; /* Adjusted for small mobile */
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .floating-card {
        transform: scale(0.8);
    }
}

.btn {
    display: inline-block;
    padding: 10px 28px;
    background: rgb(0, 180, 0);
    border: 2px solid rgb(0, 180, 0);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 180, 0, 0.451);
    font-size: 16px;
    letter-spacing: 1px;
    color: #eaeaea;
    text-decoration: none;
    font-weight: 600;
    transition: 0.5s;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: 2s;
}

.btn:hover {
    background: transparent;
    color: rgb(0, 180, 0);
}

/* KEYFRAMES ANIMATION */
@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-page {
    width: 100%;
    height: 100vh;
}

/* ========== MODERN WHO WE ARE SECTION ========== */
.modern-about {
    padding: 20px 8% 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Background Elements */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.1), rgba(0, 221, 118, 0.05));
    animation: float 8s ease-in-out infinite;
}

.about-circle.circle-1 {
    width: 400px;
    height: 400px;
    top: 150px;
    right: -150px;
    animation-delay: 0s;
}

.about-circle.circle-2 {
    width: 550px;
    height: 550px;
    bottom: 100px;
    left: -100px;
    animation-delay: 2s;
}

.about-circle.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 500px;
    left: 520px;
    animation-delay: 2s;
}

.about-circle.circle-4 {
    width: 250px;
    height: 250px;
    bottom: 50px;
    left: 510px;
    animation-delay: 2s;
}

.about-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 180, 0, 0.1) 2px, transparent 0),
        radial-gradient(circle at 80% 20%, rgba(0, 221, 118, 0.1) 2px, transparent 0),
        radial-gradient(circle at 40% 40%, rgba(0, 180, 0, 0.05) 1px, transparent 0);
    background-size: 50px 50px, 70px 70px, 30px 30px;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 180, 0, 0.3);
    animation: slideUp 1s ease 0.2s forwards;
    opacity: 0;
}

.about-header .section-title {
    font-size: 3.8em;
    color: #222;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: slideUp 1s ease 0.4s forwards;
    opacity: 0;
}

.about-header .section-subtitle {
    font-size: 1.4em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: slideUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* About Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Visual Section */
.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
}

.main-visual-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 180, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.main-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 180, 0, 0.15);
}

.image-container {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-visual-card:hover .main-image {
    transform: scale(1.05);
}

.main-visual-card:hover {
    opacity: 1;
}

.main-visual-card:hover {
    transform: scale(1);
}

.visual-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: rgb(0, 180, 0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.visual-badge i {
    font-size: 1.1em;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    bottom: -40px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.floating-stat-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 180, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.floating-stat-card.visible {
    transform: translateX(0);
    opacity: 1;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3em;
    flex-shrink: 0;
}

.stat-content .stat-number {
    font-size: 1.8em;
    font-weight: 800;
    color: #222;
    line-height: 1;
}

.stat-content .stat-label {
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
}

/* About Text Section */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Mission Highlight */
.mission-highlight {
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.05), rgba(0, 221, 118, 0.02));
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 180, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
}

.mission-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 180, 0, 0.1);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8em;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 180, 0, 0.3);
}

.mission-content h3 {
    font-size: 1.9em;
    color: #222;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-content p {
    font-size: 1.3em;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* Modern Features Grid */
.features-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-card-modern {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 180, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 180, 0, 0.15);
}

.feature-card-modern:hover::before {
    transform: scaleY(1);
}

.feature-icon-modern {
    flex-shrink: 0;
    color: rgb(0, 180, 0);
}

.icon-bg {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.1), rgba(0, 221, 118, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 180, 0);
    font-size: 1.6em;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .icon-bg {
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    transform: scale(1.1);
}

.feature-content-modern h4 {
    font-size: 1.4em;
    color: #222;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-content-modern p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 3px;
    transition: width 1.5s ease;
}

.feature-progress span {
    font-size: 0.85em;
    color: #666;
    font-weight: 500;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.05), rgba(0, 221, 118, 0.02));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 180, 0, 0.1);
    text-align: center;
}

.cta-content h4 {
    font-size: 1.6em;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.0em;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary-a {
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    box-shadow: 0 10px 30px rgba(0, 180, 0, 0.3);
}

.cta-btn.primary-a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 0, 0.4);
}

.cta-btn.secondary-a {
    background: transparent;
    color: rgb(0, 180, 0);
    box-shadow: 0 10px 30px rgba(0, 180, 0, 0.3);
}

.cta-btn.secondary-a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 0, 0.4);
}

.cta-btn.primary-b {
    background: white;
    border: solid 2px linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: rgb(0, 180, 0);
    box-shadow: 0 10px 30px rgba(0, 180, 0, 0.3);
}

.cta-btn.primary-b:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.67);
}

.cta-btn.secondary-b {
    background: transparent;
    border: solid 2px #eaeaea;
    color: #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 180, 0, 0.3);
}

.cta-btn.secondary-b:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.67);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        gap: 60px;
    }
    
    .about-header .section-title {
        font-size: 3.2em;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .floating-stats {
        position: relative;
        bottom: 0;
        right: 0;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
    }
    
    .floating-stat-card {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .modern-about {
        padding: 80px 5% 60px;
    }
    
    .about-header .section-title {
        font-size: 2.5em;
    }
    
    .about-header .section-subtitle {
        font-size: 1.2em;
    }
    
    .mission-highlight {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .feature-card-modern {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .floating-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-stat-card {
        min-width: 200px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modern-about {
        padding: 60px 20px 40px;
    }
    
    .about-header .section-title {
        font-size: 2em;
    }
    
    .about-header .section-subtitle {
        font-size: 1.1em;
    }
    
    .image-container {
        height: 300px;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .mission-content h3 {
        font-size: 1.5em;
    }
    
    .feature-content-modern h4 {
        font-size: 1.2em;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
}

/* ========== ENHANCED PROCESS STEPS DESIGN ========== */
.modern-process {
    padding: 20px 8% 100px;
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.process-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.process-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.08), rgba(0, 221, 118, 0.04));
    animation: float 12s ease-in-out infinite;
    filter: blur(1px);
}

.pc-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.pc-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 8%;
    animation-delay: 4s;
}

.pc-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 8s;
}

.process-particle {
    position: absolute;
    background: rgba(0, 180, 0, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.particle-1 {
    width: 20px;
    height: 20px;
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.particle-2 {
    width: 15px;
    height: 15px;
    top: 70%;
    left: 20%;
    animation-delay: 3s;
}

.particle-3 {
    width: 25px;
    height: 25px;
    bottom: 30%;
    right: 25%;
    animation-delay: 5s;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 1;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.process-main-title {
    font-size: 3.5em;
    color: #222;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-subtitle {
    font-size: 1.3em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    margin-bottom: 60px;
}

.process-track {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
}

/* Process Step */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    opacity: 0.3;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    position: relative;
}

.process-step.active {
    opacity: 1;
    transform: translateX(0);
}

.process-step.in-view {
    opacity: 0.7;
    transform: translateX(-20px);
}

/* Step Visual */
.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    position: relative;
}

.step-icon-wrapper {
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2em;
    box-shadow: 0 10px 30px rgba(0, 180, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    transform: scale(1);
}

.process-step.active .step-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 180, 0, 0.4);
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 180, 0, 0.3);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
}

.process-step.active .step-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.step-connector {
    width: 4px;
    height: 120px;
    background: #e0e0e0;
    margin-top: 20px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.connector-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 2px;
    transition: height 1.5s ease 0.5s;
}

.process-step.active .connector-progress {
    height: 100%;
}

.process-step:last-child .step-connector {
    display: none;
}

/* Step Content */
.step-content {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 180, 0, 0.1);
    transition: all 0.6s ease;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    transform: scaleY(0);
    transition: transform 0.6s ease 0.3s;
}

.process-step.active .step-content {
    box-shadow: 0 25px 60px rgba(0, 180, 0, 0.15);
    transform: translateY(-5px);
}

.process-step.active .step-content::before {
    transform: scaleY(1);
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    grid-column: 1 / -1;
    justify-self: start;
    box-shadow: 0 5px 15px rgba(0, 180, 0, 0.3);
}

.step-title {
    font-size: 2.2em;
    color: black;
    margin-bottom: 20px;
    grid-column: 1;
    line-height: 1.3;
}

.step-visual-content {
    grid-column: 2;
    grid-row: 2 / 4;
}

.step-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.step-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.step-image:hover img {
    transform: scale(1.05);
}

.step-image:hover {
    opacity: 1;
}

.step-details {
    grid-column: 1;
}

.step-details p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #111;
    margin-bottom: 25px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.step-features li {
    padding: 10px 0;
    font-size: 1em;
    color: #111;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.step-features li:hover {
    color: rgb(0, 180, 0);
    transform: translateX(5px);
}

.step-features li i {
    color: rgb(0, 180, 0);
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.step-features li:hover i {
    transform: scale(1.2);
}

.step-progress {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-progress-bar {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.step-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 3px;
    transition: width 1.5s ease 0.8s;
    width: 0% !important;
}

.process-step.active .step-progress-fill {
    width: 100% !important;
}

.step-progress span {
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
}

/* Enhanced Navigation Dots */
.process-navigation {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.nav-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 20px;
    border-radius: 20px;
    min-width: 100px;
    position: relative;
}

.nav-dot:hover {
    background: rgba(0, 180, 0, 0.05);
    transform: translateY(-5px);
}

.nav-dot.active {
    background: rgba(0, 180, 0, 0.1);
}

.dot-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-number {
    width: 60px;
    height: 60px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
    transition: all 0.4s ease;
    font-size: 1.3em;
    position: relative;
    z-index: 2;
}

.nav-dot.active .dot-number {
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 180, 0, 0.4);
}

.dot-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 180, 0, 0.2);
    border-radius: 50%;
    opacity: 0;
}

.nav-dot.active .dot-ripple {
    animation: dotRipple 2s infinite;
}

@keyframes dotRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.dot-label {
    font-size: 1em;
    color: #999;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-dot.active .dot-label {
    color: rgb(0, 180, 0);
}

/* Process Completion */
.process-completion {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 180, 0, 0.1);
    text-align: center;
}

.completion-track {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.completion-progress {
    height: 100%;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 4px;
    transition: width 0.8s ease;
    width: 0%;
}

.completion-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1em;
    color: #666;
    font-weight: 600;
}

.completion-percentage {
    color: rgb(0, 180, 0);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .step-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-visual-content {
        grid-column: 1;
        grid-row: auto;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-navigation {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-process {
        padding: 80px 5% 60px;
    }
    
    .process-main-title {
        font-size: 2.8em;
    }
    
    .process-step {
        margin-left: 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .step-visual {
        flex-direction: row;
        min-width: auto;
        justify-content: center;
        gap: 20px;
    }
    
    .step-connector {
        width: 120px;
        height: 4px;
        margin-top: 0;
    }
    
    .step-content {
        padding: 30px 25px;
    }
    
    .step-title {
        font-size: 1.8em;
    }
    
    .process-navigation {
        gap: 20px;
    }
    
    .nav-dot {
        min-width: 80px;
        padding: 15px;
    }
    
    .dot-number {
        width: 50px;
        height: 50px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .modern-process {
        padding: 60px 20px 40px;
    }
    
    .process-main-title {
        font-size: 2.2em;
    }
    
    .process-subtitle {
        font-size: 1.1em;
    }
    
    .step-content {
        padding: 25px 20px;
    }
    
    .step-title {
        font-size: 1.6em;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .process-navigation {
        gap: 15px;
    }
    
    .nav-dot {
        min-width: 70px;
        padding: 12px;
    }
    
    .dot-number {
        width: 45px;
        height: 45px;
        font-size: 1em;
    }
    
    .dot-label {
        font-size: 0.9em;
    }
}

/* ========== ENHANCED SUSTAINABLE FURNITURE SECTION ========== */
.modern-products {
    padding: 20px 5% 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.products-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.product-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.08), rgba(0, 221, 118, 0.04));
    animation: float 10s ease-in-out infinite;
    filter: blur(1px);
}

.p-circle-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.p-circle-2 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 3%;
    animation-delay: 3s;
}

.p-circle-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 15%;
    animation-delay: 6s;
}

.product-particle {
    position: absolute;
    background: rgba(0, 180, 0, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.p-particle-1 {
    width: 15px;
    height: 15px;
    top: 40%;
    left: 10%;
    animation-delay: 2s;
}

.p-particle-2 {
    width: 20px;
    height: 20px;
    top: 80%;
    right: 20%;
    animation-delay: 4s;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 180, 0, 0.3);
}

.section-header h2 {
    font-size: 3.5em;
    color: #222;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.4em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Products Intro */
.products-intro {
    text-align: center;
    margin-bottom: 50px;
}

.products-intro h3 {
    font-size: 2.2em;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.products-intro p {
    font-size: 1.2em;
    color: #666;
}

/* Enhanced Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 180, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.product-card.featured {
    border-color: rgba(0, 180, 0, 0.3);
    box-shadow: 0 25px 60px rgba(0, 180, 0, 0.15);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 180, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(0, 180, 0, 0.4);
}

.product-image {
    height: 350px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}



.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.product-content {
    padding: 35px;
}

.product-content h3 {
    font-size: 1.8em;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.product-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 1em;
    font-weight: 500;
}

.product-features i {
    color: rgb(0, 180, 0);
    font-size: 0.9em;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.price {
    font-size: 2.2em;
    font-weight: 800;
    color: rgb(0, 180, 0);
}

.original-price {
    font-size: 1.3em;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
}

.product-actions {
    display: flex;
    margin-bottom: 20px;
}

.btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 180, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 180, 0, 0.5);
}

.btn-secondary-gideon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.05), rgba(0, 221, 118, 0.02));
    color: rgb(0, 180, 0);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1.5px 3px rgba(0, 180, 0, 0.4);
}

.btn-secondary-gideon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 180, 0, 0.5);
}


.urgency-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 12px;
    color: #856404;
    font-size: 0.9em;
    font-weight: 600;
}

.urgency-note i {
    color: #fdcb6e;
    font-size: 1em;
}

/* Bundle Section */
.bundle-section {
    margin-bottom: 80px;
}

.bundle-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.bundle-header h3 {
    font-size: 2.5em;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.bundle-header p {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 20px;
}

.bundle-savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.bundle-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 180, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bundle-card.popular {
    border-color: rgba(0, 180, 0, 0.3);
    box-shadow: 0 25px 60px rgba(0, 180, 0, 0.15);
}

.bundle-card.value {
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 25px 60px rgba(255, 107, 107, 0.15);
}

.bundle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 180, 0, 0.2);
}

.bundle-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 700;
    z-index: 2;
}

.bundle-card.value .bundle-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.bundle-content {
    text-align: center;
}

.bundle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.1), rgba(0, 221, 118, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: rgb(0, 180, 0);
    font-size: 2em;
}

.bundle-card h4 {
    font-size: 1.6em;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.bundle-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.bundle-includes {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.bundle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.bundle-item:last-child {
    border-bottom: none;
}

.item-name {
    color: #555;
    font-weight: 500;
}

.item-price {
    color: #666;
    font-weight: 500;
}

.bundle-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px dashed #dee2e6;
}

.total-label {
    color: #666;
    font-weight: 600;
}

.total-price {
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.bundle-price {
    margin-bottom: 25px;
}

.bundle-final-price {
    font-size: 2.5em;
    font-weight: 800;
    color: rgb(0, 180, 0);
    display: block;
    margin-bottom: 8px;
}

.bundle-savings {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1em;
}

.bundle-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bundle-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bundle-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9em;
    font-weight: 500;
}

.bundle-features i {
    color: rgb(0, 180, 0);
    font-size: 0.8em;
}

/* Custom Order Section */
.custom-order-section {
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.05), rgba(0, 221, 118, 0.02));
    border: 2px solid rgba(0, 180, 0, 0.1);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 80px;
}

.custom-order-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.custom-order-text h3 {
    font-size: 2.2em;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.custom-order-text p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.custom-benefits {
    list-style: none;
    padding: 0;
}

.custom-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    font-size: 1.1em;
}

.custom-benefits i {
    color: rgb(0, 180, 0);
    font-size: 1em;
}

.custom-order-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.custom-order-actions a{
    display: flex;
    text-align: center;
    text-decoration: none;
}

.btn-primary.large {
    padding: 20px 35px;
    font-size: 1.2em;
    min-width: 200px;
}

/* Enhanced Trust Signals */
.trust-signals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    padding: 50px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 180, 0, 0.1);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(0, 180, 0, 0.05);
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2.5em;
    color: rgb(0, 180, 0);
    margin-bottom: 8px;
}

.trust-item span {
    font-weight: 700;
    color: #222;
    font-size: 1.2em;
}

.trust-item small {
    color: #666;
    font-size: 0.9em;
}

/* Enhanced Bottom CTA */
.bottom-cta {
    text-align: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 25px;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 180, 0, 0.3);
}

.cta-content h3 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.4em;
    color: #222;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

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

.stat-number-c {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 5px;
    color:white;
}

.stat-label {
    font-size: 1em;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 35px;
    background: white;
    color: rgb(0, 180, 0);
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 35px;
    background: transparent;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-secondary:hover {
    background: white;
    color: rgb(0, 180, 0);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
    
    .custom-order-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .modern-products {
        padding: 80px 30px 60px;
    }
    
    .section-header h2 {
        font-size: 2.8em;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bundle-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-signals {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 30px;
    }
    
    .bottom-cta {
        padding: 60px 30px;
    }
    
    .cta-content h3 {
        font-size: 2.2em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modern-products {
        padding: 60px 20px 40px;
    }
    
    .section-header h2 {
        font-size: 2.2em;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        padding: 25px 20px;
    }
    
    .bundle-card {
        padding: 30px 20px;
    }
    
    .custom-order-section {
        padding: 30px 20px;
    }
    
    .trust-signals {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 25px;
    }
}

/* ========== ENHANCED WHY CHOOSE GOGI SECTION ========== */
.enhanced-why-gogi {
    padding: 20px 5%;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.gogi-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 0, 0.1) 0%, rgba(0, 221, 118, 0.05) 70%);
    animation: floatOrb 8s ease-in-out infinite;
    filter: blur(1px);
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.orb-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.orb-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 15%;
    animation-delay: 6s;
}

.floating-particle {
    position: absolute;
    background: rgba(0, 180, 0, 0.15);
    border-radius: 50%;
    animation: floatParticle 12s ease-in-out infinite;
}

.particle-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.particle-2 {
    width: 15px;
    height: 15px;
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.particle-3 {
    width: 25px;
    height: 25px;
    top: 70%;
    left: 10%;
    animation-delay: 5s;
}

@keyframes floatOrb {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    33% { 
        transform: translateY(-20px) rotate(120deg) scale(1.05);
    }
    66% { 
        transform: translateY(10px) rotate(240deg) scale(0.95);
    }
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translate(20px, -15px) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translate(-10px, -25px) scale(0.9);
        opacity: 0.8;
    }
    75% { 
        transform: translate(-20px, 10px) scale(1.05);
        opacity: 0.9;
    }
}

/* Feature Showcase */
.gogi-features-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.showcase-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 180, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.showcase-card:hover::before {
    left: 100%;
}

.showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 180, 0, 0.15);
    border-color: rgba(0, 180, 0, 0.3);
}

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 180, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-card:hover .feature-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.feature-icon-b {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: rgb(0, 180, 0);
    font-size: 2em;
    box-shadow: 0 10px 25px rgba(0, 180, 0, 0.3);
    transition: transform 0.3s ease;
}

.showcase-card:hover .feature-icon-b {
    transform: scale(1.1) rotate(5deg);
}

.showcase-card h3 {
    font-size: 1.8em;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.showcase-card p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: rgba(0, 180, 0, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(0, 180, 0, 0.1);
}

.stat-number {
    font-size: 2.5em;
    font-weight: 800;
    color: rgb(0, 180, 0);
    line-height: 1;
}

.stat-label {
    font-size: 1em;
    font-weight: 600;
    color: #222;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

.feature-benefits li:last-child {
    border-bottom: none;
}

.feature-benefits i {
    color: rgb(0, 180, 0);
    font-size: 0.9em;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Stats Panel */
.stats-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 255, 248, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 180, 0, 0.15);
    height: fit-content;
}

.panel-header {
    text-align: center;
    margin-bottom: 40px;
}

.panel-header h4 {
    font-size: 1.8em;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
}

.panel-header p {
    color: #666;
    font-size: 1.1em;
}

.impact-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 180, 0, 0.1);
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateX(5px);
}

.stat-visual {
    position: relative;
    width: 80px;
    height: 80px;
}

.stat-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(rgb(0, 180, 0) 0%, #f0f0f0 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-circle::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
}

.stat-value {
    position: relative;
    z-index: 2;
    font-size: 1.4em;
    font-weight: 700;
    color: rgb(0, 180, 0);
}

.stat-info h5 {
    font-size: 1.2em;
    color: #222;
    margin-bottom: 5px;
    font-weight: 600;
}

.stat-info p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.4;
    margin: 0;
}

/* Feature Comparison */
.feature-comparison {
    background: white;
    border-radius: 25px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 180, 0, 0.1);
    margin-bottom: 80px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-header h3 {
    font-size: 2.5em;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.comparison-header p {
    font-size: 1.2em;
    color: #666;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-item {
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
}

.comparison-item.traditional {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #e0e0e0;
}

.comparison-item.gogi {
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.05), rgba(0, 221, 118, 0.03));
    border: 2px solid rgba(0, 180, 0, 0.2);
}

.comparison-item h4 {
    font-size: 1.6em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.comparison-item.traditional h4 {
    color: #666;
}

.comparison-item.gogi h4 {
    color: rgb(0, 180, 0);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li.negative {
    color: #666;
}

.comparison-list li.positive {
    color: #222;
}

.comparison-list li i {
    font-size: 1em;
    width: 20px;
    text-align: center;
}

.comparison-list li.negative i {
    color: #ff6b6b;
}

.comparison-list li.positive i {
    color: rgb(0, 180, 0);
}

/* Enhanced CTA */
.enhanced-gogi-cta {
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    color: white;
    box-shadow: 0 25px 60px rgba(0, 180, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: ctaOrb 15s linear infinite;
}

.cta-orb:nth-child(1) {
    top: -100px;
    left: -100px;
}

.cta-orb:nth-child(2) {
    bottom: -100px;
    right: -100px;
    animation-delay: -7.5s;
}

@keyframes ctaOrb {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.enhanced-gogi-cta h3 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.enhanced-gogi-cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature i {
    font-size: 1.2em;
}

.cta-feature span {
    font-weight: 600;
    font-size: 1.1em;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn.primary {
    background: white;
    color: rgb(0, 180, 0);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

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

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: rgb(0, 180, 0);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gogi-features-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-showcase-grid {
        order: 2;
    }
    
    .stats-panel {
        order: 1;
    }
}

@media (max-width: 768px) {
    .enhanced-why-gogi {
        padding: 80px 20px;
    }
    
    .feature-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .enhanced-gogi-cta {
        padding: 60px 30px;
    }
    
    .enhanced-gogi-cta h3 {
        font-size: 2.2em;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .cta-feature {
        padding: 12px 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .enhanced-why-gogi {
        padding: 60px 15px;
    }
    
    .showcase-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .impact-stat {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .enhanced-gogi-cta h3 {
        font-size: 1.8em;
    }
    
    .enhanced-gogi-cta p {
        font-size: 1.1em;
    }
}

/* ========== MODERN TESTIMONIALS SECTION ========== */
.modern-testimonials {
    padding: 100px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
    position: relative;
    overflow: hidden;
}

.modern-testimonials .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.modern-testimonials .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 180, 0, 0.3);
}

.modern-testimonials .section-header h2 {
    font-size: 3.5em;
    color: #222;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.modern-testimonials .section-header p {
    font-size: 1.4em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Floating Background Elements */
.testimonials-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.testimonial-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.1), rgba(0, 221, 118, 0.05));
    animation: float 8s ease-in-out infinite;
}

.testimonial-circle.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.testimonial-circle.circle-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 10%;
    animation-delay: 2s;
}

.testimonial-circle.circle-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 8%;
    animation-delay: 4s;
}

.testimonial-circle.circle-4 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 5%;
    animation-delay: 6s;
}

.floating-leaf,
.floating-recycle {
    position: absolute;
    font-size: 2em;
    color: rgba(0, 180, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-leaf {
    top: 80%;
    left: 15%;
    animation-delay: 1s;
}

.floating-recycle {
    top: 15%;
    right: 15%;
    animation-delay: 3s;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 180, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 180, 0, 0.15);
}

.testimonial-card.student-story {
    border-top: 4px solid #00b874;
}

.testimonial-card.eco-impact {
    border-top: 4px solid #00d476;
}

.testimonial-card.family-story {
    border-top: 4px solid #00a85e;
}

.impact-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgb(0, 180, 0);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: rgb(0, 180, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6em;
    border: 2px solid white;
}

.family-avatar {
    border-color: #00a85e;
}

.family-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #00a85e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7em;
    border: 2px solid white;
}

.author-info h4 {
    font-size: 1.3em;
    color: #222;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 3px;
}

.university {
    font-size: 0.8em;
    color: rgb(0, 180, 0);
    font-weight: 500;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.1), rgba(0, 221, 118, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 180, 0);
    font-size: 1.2em;
}

.testimonial-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-left: 20px;
    font-style: italic;
}

/* Stats and Features */
.testimonial-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 180, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 180, 0, 0.1);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat .number {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: rgb(0, 180, 0);
    line-height: 1;
}

.stat .label {
    font-size: 0.8em;
    color: #666;
    font-weight: 500;
}

.eco-impact-stats {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 180, 0, 0.1);
    border-radius: 20px;
    font-size: 0.9em;
    color: #555;
    font-weight: 500;
}

.impact-item i {
    color: rgb(0, 180, 0);
    font-size: 0.9em;
}

.family-features {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 6px 12px;
    background: rgba(0, 180, 0, 0.1);
    border-radius: 15px;
    font-size: 0.8em;
    color: #555;
    font-weight: 500;
    border: 1px solid rgba(0, 180, 0, 0.2);
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #ffc107;
    font-size: 0.9em;
}

.purchase-info,
.timeline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8em;
    color: #666;
    font-weight: 500;
}

.purchase-info i,
.timeline i {
    color: rgb(0, 180, 0);
    font-size: 0.9em;
}

/* Trust Metrics */
.trust-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 180, 0, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 180, 0, 0.1);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.1), rgba(0, 221, 118, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: rgb(0, 180, 0);
    font-size: 1.5em;
}

.metric-number {
    font-size: 2.2em;
    font-weight: 700;
    color: rgb(0, 180, 0);
    margin-bottom: 5px;
    line-height: 1;
}

.metric-label {
    font-size: 1em;
    color: #666;
    font-weight: 500;
}

/* Testimonials CTA */
.testimonials-cta {
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 180, 0, 0.3);
    position: relative;
    z-index: 2;
}

.testimonials-cta h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.testimonials-cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonials-cta .cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.testimonials-cta .cta-btn.primary {
    background: white;
    color: rgb(0, 180, 0);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.testimonials-cta .cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.testimonials-cta .cta-btn.secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.testimonials-cta .cta-btn.secondary:hover {
    background: white;
    color: rgb(0, 180, 0);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .modern-testimonials .section-header h2 {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .modern-testimonials {
        padding: 80px 30px;
    }
    
    .modern-testimonials .section-header h2 {
        font-size: 2.5em;
    }
    
    .modern-testimonials .section-header p {
        font-size: 1.2em;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-cta {
        padding: 50px 30px;
    }
    
    .testimonials-cta h3 {
        font-size: 2em;
    }
    
    .testimonials-cta p {
        font-size: 1.1em;
    }
    
    .testimonials-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-cta .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modern-testimonials {
        padding: 60px 20px;
    }
    
    .modern-testimonials .section-header h2 {
        font-size: 2.2em;
    }
    
    .modern-testimonials .section-header p {
        font-size: 1.1em;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .trust-metrics {
        grid-template-columns: 1fr;
    }
    
    .testimonials-cta {
        padding: 40px 25px;
    }
    
    .testimonials-cta h3 {
        font-size: 1.8em;
    }
    
    .testimonials-cta p {
        font-size: 1em;
    }
}

/* Contact Modal Styles */
.contact-modal, .quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 0;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: #222;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
}

.close-modal, .close-quick-view {
    font-size: 2em;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover, .close-quick-view:hover {
    color: #222;
}

.modal-body {
    padding: 0 30px 30px;
}

.modal-body p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 25px 0;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-option {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-option:hover {
    background: #25D366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.sms-option {
    background: rgba(0, 180, 0, 0.1);
    color: rgb(0, 180, 0);
    border-color: rgba(0, 180, 0, 0.3);
}

.sms-option:hover {
    background: rgb(0, 180, 0);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 180, 0, 0.3);
}

.call-option {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.3);
}

.call-option:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.contact-option i {
    font-size: 1.3em;
    width: 24px;
    text-align: center;
}

.order-summary {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.order-summary h4 {
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

#order-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9em;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

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

.order-item .label {
    color: #666;
    font-weight: 500;
}

.order-item .value {
    color: #222;
    font-weight: 600;
}

.order-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #e9ecef;
    font-weight: 700;
    color: rgb(0, 180, 0);
}

/* Quick View Modal Styles */
.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.quick-view-image {
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
}

.quick-view-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.quick-view-details h3 {
    font-size: 1.8em;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.quick-view-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quick-view-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.quick-view-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 500;
}

.quick-view-features i {
    color: rgb(0, 180, 0);
    font-size: 0.9em;
}

.quick-view-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.quick-view-price .price {
    font-size: 2.2em;
    font-weight: 800;
    color: rgb(0, 180, 0);
}

.quick-view-price .original-price {
    font-size: 1.3em;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.quick-view-actions {
    display: flex;
    gap: 15px;
}

.quick-view-actions .btn-primary {
    flex: 1;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-left: 4px solid rgb(0, 180, 0);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.4s ease;
}

.cart-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-weight: 600;
}

.notification-content i {
    color: rgb(0, 180, 0);
    font-size: 1.3em;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 25px 0;
    }
    
    .modal-body {
        padding: 0 25px 25px;
    }
    
    .contact-option {
        padding: 15px;
    }
    
    .quick-view-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-view-image img {
        height: 250px;
    }
    
    .quick-view-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .modal-header h3 {
        font-size: 1.3em;
    }
    
    .contact-option {
        padding: 12px;
        font-size: 0.9em;
    }
    
    .quick-view-details h3 {
        font-size: 1.5em;
    }
    
    .quick-view-price .price {
        font-size: 1.8em;
    }
}

/* Centered Modal Content - FIXED */
.modal-body.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px !important;
}

.centered .contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

.centered .contact-option {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin: 8px 0;
}

.centered .order-summary {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.centered #order-details {
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.centered .order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.centered .order-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.centered .order-item .label {
    color: #666;
    font-weight: 500;
    text-align: left;
}

.centered .order-item .value {
    color: #222;
    font-weight: 600;
    text-align: right;
}

.centered .order-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
    font-weight: 700;
    color: rgb(0, 180, 0);
}

/* Enhanced Product Specifications - CENTERED */
.centered .product-specs {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.centered .spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
    text-align: left;
}

.centered .spec-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.centered .spec-label {
    color: #666;
    font-weight: 500;
    flex: 1;
}

.centered .spec-value {
    color: #222;
    font-weight: 600;
    flex: 1;
    text-align: right;
}

/* Quick View Centered Styles - FIXED */
.quick-view-modal .modal-body.centered {
    text-align: center;
    display: block;
    padding: 30px !important;
}

.quick-view-content.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quick-view-content.centered .quick-view-image {
    margin: 0 auto 20px;
    max-width: 400px;
    width: 100%;
}

.quick-view-content.centered .quick-view-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.quick-view-content.centered .quick-view-details {
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.quick-view-content.centered .quick-view-details h3 {
    text-align: center;
    margin-bottom: 15px;
}

.quick-view-content.centered .quick-view-details p {
    text-align: center;
    margin-bottom: 20px;
}

.quick-view-content.centered .quick-view-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.quick-view-content.centered .quick-view-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.quick-view-content.centered .quick-view-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

/* Design Options in Quick View - CENTERED */
.design-selection, .color-selection, .size-selection {
    text-align: center;
    margin: 20px 0;
    width: 100%;
}

.design-selection h4, .color-selection h4, .size-selection h4 {
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.design-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.design-option {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
    min-width: 120px;
}

.design-option.active {
    border-color: rgb(0, 180, 0);
    background: rgba(0, 180, 0, 0.1);
    color: rgb(0, 180, 0);
}

.design-option:hover {
    border-color: rgb(0, 180, 0);
    transform: translateY(-2px);
}

/* Color Options in Quick View - CENTERED */
.color-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.color-option.active {
    background: rgba(0, 180, 0, 0.1);
}

.color-swatch {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.color-option.active .color-swatch {
    border-color: #222;
    transform: scale(1.1);
}

.color-name {
    font-size: 0.8em;
    color: #666;
    font-weight: 500;
}

/* Size Options in Quick View - CENTERED */
.size-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.size-option {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
    text-align: center;
    min-width: 150px;
}

.size-option.active {
    border-color: rgb(0, 180, 0);
    background: rgba(0, 180, 0, 0.1);
    color: rgb(0, 180, 0);
}

.size-option:hover {
    border-color: rgb(0, 180, 0);
}

/* Modal Header Centering */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 0;
    margin-bottom: 0;
    text-align: center;
}

.modal-header h3 {
    flex: 1;
    text-align: center;
    color: #222;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
}

.close-modal, .close-quick-view {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 2em;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    z-index: 1;
}

.close-modal:hover, .close-quick-view:hover {
    color: #222;
}

/* Ensure modal content is properly centered */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.quick-view-modal .modal-content {
    max-width: 800px;
}

/* Text centering for all modal content */
.modal-body.centered p {
    text-align: center;
    margin: 10px 0;
}

.modal-body.centered h4 {
    text-align: center;
    margin: 15px 0;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-body.centered {
        padding: 20px !important;
    }
    
    .design-options, .color-options, .size-options {
        flex-direction: column;
        align-items: center;
    }
    
    .design-option, .size-option {
        width: 100%;
        max-width: 250px;
    }
    
    .quick-view-content.centered .quick-view-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .quick-view-content.centered .quick-view-actions .btn-primary,
    .quick-view-content.centered .quick-view-actions .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 20px 20px 0;
    }
    
    .modal-body.centered {
        padding: 15px !important;
    }
    
    .close-modal, .close-quick-view {
        right: 15px;
        top: 15px;
    }
}

.nav-link-gideon-home {
    color: rgb(0, 180, 0);
}

/* ========== CIRCULAR PARTNERS SECTION ========== */
.gogi-partners-circular {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gogi-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.gogi-partners-header {
    text-align: center;
    margin-bottom: 100px;
}

.gogi-header-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.gogi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color, rgb(0, 180, 0)), var(--primary-light, rgb(0, 221, 118)));
    animation: gogi-dot-bounce 2s ease-in-out infinite;
}

.gogi-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.gogi-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.gogi-partners-title {
    font-size: 3.5rem;
    color: var(--text-dark, #222);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark, #222), var(--primary-color, rgb(0, 180, 0)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gogi-partners-subtitle {
    font-size: 1.3rem;
    color: var(--text-light, #666);
    max-width: 400px;
    margin: 0 auto;
    font-weight: 500;
}

/* Circular Layout */
.gogi-partners-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
}

/* Partner Orb */
.gogi-partner-orb {
    position: relative;
    flex: 0 0 auto;
}

.gogi-orb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gogi-partner-orb:hover .gogi-orb-container {
    transform: translateY(-10px);
}

/* Orb Logo - Large Circle */
.gogi-orb-logo {
    position: relative;
    width: 200px; /* Larger circle */
    height: 200px; /* Larger circle */
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9),
        0 0 0 5px rgba(0, 180, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.gogi-partner-orb:hover .gogi-orb-logo {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95),
        0 0 0 8px rgba(0, 180, 0, 0.25);
}

/* Logo Image - Cover entire circle */
.gogi-logo-circle {
    width: 100%; /* Cover entire circle */
    height: 100%; /* Cover entire circle */
    border-radius: 50%;
    object-fit: cover; /* Ensure image covers circle properly */
    object-position: center;
    filter: grayscale(100%) brightness(1.1);
    opacity: 0.95;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.gogi-partner-orb:hover .gogi-logo-circle {
    filter: grayscale(0%) brightness(1.05);
    opacity: 1;
    transform: scale(1.05);
}

/* Orb Glow Effect */
.gogi-orb-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(0, 180, 0, 0.15),
        rgba(0, 221, 118, 0.25),
        rgba(255, 255, 255, 0.1),
        rgba(0, 180, 0, 0.15)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gogi-glow-rotate 4s linear infinite;
    z-index: 1;
}

.gogi-partner-orb:hover .gogi-orb-glow {
    opacity: 1;
}

/* Ripple Effect */
.gogi-orb-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 0, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 3;
}

.gogi-orb-logo:hover .gogi-orb-ripple {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
}

/* Orb Info */
.gogi-orb-info {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    padding: 10px 15px;
}

.gogi-partner-orb:hover .gogi-orb-info {
    opacity: 1;
    transform: translateY(0);
}

.gogi-orb-name {
    font-size: 1.4rem;
    color: darkgreen;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.gogi-orb-desc {
    font-size: 0.9rem;
    color: var(--text-light, #666);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Connection Line */
.gogi-partners-connection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.3;
}

.gogi-connection-line {
    width: 500px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color, rgb(0, 180, 0)), transparent);
    animation: gogi-line-pulse 3s ease-in-out infinite;
}

.gogi-connection-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color, rgb(0, 180, 0));
    transform: translate(-50%, -50%);
    animation: gogi-dot-move 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 180, 0, 0.5);
}

/* Background Circles */
.gogi-bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gogi-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 0, 0.04) 0%, transparent 70%);
    animation: gogi-float 8s ease-in-out infinite;
    border: 1px solid rgba(0, 180, 0, 0.05);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 350px;
    height: 350px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

/* Keyframe Animations */
@keyframes gogi-dot-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes gogi-glow-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gogi-line-pulse {
    0%, 100% {
        opacity: 0.3;
        width: 500px;
    }
    50% {
        opacity: 0.6;
        width: 550px;
    }
}

@keyframes gogi-dot-move {
    0%, 100% {
        transform: translate(-50%, -50%) translateX(-250px);
    }
    50% {
        transform: translate(-50%, -50%) translateX(250px);
    }
}

@keyframes gogi-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    33% {
        transform: translateY(-30px) scale(1.05);
    }
    66% {
        transform: translateY(15px) scale(0.95);
    }
}

/* Ripple Animation */
@keyframes gogi-ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Logo Shine Effect */
@keyframes gogi-logo-shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Scroll Animation */
.gogi-partner-orb {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gogi-partner-orb.gogi-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered Animation */
.gogi-partner-orb:nth-child(1) {
    transition-delay: 0.1s;
}

.gogi-partner-orb:nth-child(2) {
    transition-delay: 0.2s;
}

.gogi-partner-orb:nth-child(3) {
    transition-delay: 0.3s;
}

/* Logo Enhancement Overlay */
.gogi-logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 180, 0, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gogi-partner-orb:hover .gogi-logo-overlay {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gogi-partners-circle {
        gap: 60px;
    }
    
    .gogi-orb-logo {
        width: 180px;
        height: 180px;
    }
    
    .gogi-connection-line {
        width: 450px;
    }
}

@media (max-width: 992px) {
    .gogi-partners-circle {
        gap: 50px;
    }
    
    .gogi-orb-logo {
        width: 160px;
        height: 160px;
    }
    
    .gogi-connection-line {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .gogi-partners-circular {
        padding: 80px 0;
    }
    
    .gogi-partners-title {
        font-size: 2.8rem;
    }
    
    .gogi-partners-subtitle {
        font-size: 1.1rem;
    }
    
    .gogi-partners-circle {
        gap: 50px;
        flex-direction: column;
    }
    
    .gogi-orb-logo {
        width: 180px;
        height: 180px;
    }
    
    .gogi-orb-name {
        font-size: 1.3rem;
    }
    
    .gogi-connection-line {
        width: 300px;
        height: 1px;
    }
    
    .gogi-connection-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .gogi-partners-title {
        font-size: 2.2rem;
    }
    
    .gogi-partners-circle {
        gap: 40px;
    }
    
    .gogi-orb-logo {
        width: 160px;
        height: 160px;
    }
    
    .gogi-orb-name {
        font-size: 1.2rem;
    }
    
    .gogi-orb-desc {
        font-size: 0.85rem;
    }
    
    .gogi-orb-info {
        padding: 12px 16px;
        min-width: 160px;
    }
    
    .gogi-connection-line {
        width: 250px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .gogi-orb-info {
        opacity: 1;
        transform: translateY(0);
    }
    
    .gogi-partner-orb:hover .gogi-orb-container {
        transform: none;
    }
    
    .gogi-partner-orb:hover .gogi-orb-logo {
        transform: none;
    }
    
    .gogi-orb-logo:active {
        transform: scale(0.95);
    }
}

/* High-resolution display optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gogi-logo-circle {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .gogi-partner-orb,
    .gogi-orb-container,
    .gogi-orb-logo,
    .gogi-logo-circle,
    .gogi-orb-glow,
    .gogi-orb-ripple,
    .gogi-orb-info {
        transition: none !important;
        animation: none !important;
    }
    
    .gogi-partner-orb {
        opacity: 1;
        transform: none;
    }
    
    .gogi-orb-info {
        opacity: 1;
        transform: none;
    }
}