/* ========== MODERN GALLERY STYLES ========== */

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

:root {
    --primary-color: rgb(0, 180, 0);
    --primary-dark: rgb(0, 150, 0);
    --primary-light: rgb(0, 221, 118);
    --accent-color: #ff6b6b;
    --text-dark: #222;
    --text-light: #666;
    --bg-white: #ffffff;
    --bg-light: #f8fff8;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

/* Marketable Header */
.marketable-header {
    background: #e8f5e8;
    color: #444;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.marketable-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    opacity: 0.1;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    position: relative;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.badge-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    margin-left: 10px;
}

.header-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.header-title-b {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: rgb(0, 180, 0);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.header-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Floating Contact Circles Section */
.floating-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.floating-circles {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
}

.contact-circle {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.circle-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    transition: var(--transition);
}

.contact-circle i {
    font-size: 2.5rem;
    margin-bottom: 8px;
    transition: var(--transition);
}

.circle-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

/* Circle Colors */
.whatsapp-circle {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.call-circle {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.sms-circle {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

/* Enhanced Hover Effects */
.contact-circle:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact-circle:hover i {
    transform: scale(1.2);
    color: white;
}

.contact-circle:hover .circle-inner {
    color: white;
}

.contact-circle:hover .circle-text {
    color: white;
}

/* Individual Circle Hover Colors */
.whatsapp-circle:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.call-circle:hover {
    background: linear-gradient(135deg, var(--primary-dark), #006400);
}

.sms-circle:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
}

/* Floating Animation */
.contact-circle {
    animation: float 3s ease-in-out infinite;
}

.whatsapp-circle {
    animation-delay: 0s;
}

.call-circle {
    animation-delay: 1s;
}

.sms-circle {
    animation-delay: 2s;
}

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

/* Pulse Animation */
.circle-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0;
    animation: pulse 2s ease-out infinite;
}

.whatsapp-circle .circle-pulse {
    border-color: #25D366;
}

.call-circle .circle-pulse {
    border-color: var(--primary-color);
}

.sms-circle .circle-pulse {
    border-color: #007bff;
}

/* Enhanced pulse colors on hover */
.whatsapp-circle:hover .circle-pulse {
    border-color: #128C7E;
}

.call-circle:hover .circle-pulse {
    border-color: var(--primary-dark);
}

.sms-circle:hover .circle-pulse {
    border-color: #0056b3;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.contact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1rem;
}

.contact-note i {
    color: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 0, 0.3);
}

/* Modern Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-white);
    box-shadow: var(--card-shadow);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* Different grid positions for varied layout */
.gallery-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 1;
}

.gallery-item:nth-child(2) {
    grid-column: span 6;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(6) {
    grid-column: span 8;
    grid-row: span 1;
}

.gallery-item:nth-child(7) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(8) {
    grid-column: span 6;
    grid-row: span 1;
}

.gallery-item:nth-child(9) {
    grid-column: span 6;
    grid-row: span 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.9), rgba(0, 221, 118, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.view-details {
    padding: 12px 30px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.view-details:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 25px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.category-tag {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.gallery-info h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.price {
    font-size: 1.3rem;
    color: var(--primary-light);
    font-weight: 800;
    margin-bottom: 8px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 10px;
}

.bundle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Impact Section */
.impact-section-gogi {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.impact-section-gogi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="%2300b464" d="M500,100 C700,100 900,250 900,500 C900,750 700,900 500,900 C300,900 100,750 100,500 C100,250 300,100 500,100 Z"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.impact-content-gogi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.impact-text-gogi h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-text-gogi > p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 400;
}

.impact-features-gogi {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-gogi {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 180, 100, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-gogi:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 180, 100, 0.15);
    border-color: rgba(0, 180, 100, 0.3);
}

.feature-gogi i {
    font-size: 2.5rem;
    color: #00b464;
    margin-top: 5px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-gogi:hover i {
    transform: scale(1.2);
    color: #00dd76;
}

.feature-content-gogi h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-content-gogi p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Sustainability Circle */
.impact-visual-gogi {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sustainability-circle-gogi {
    position: relative;
    width: 450px;
    height: 450px;
}

.circle-ring-gogi {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.outer-ring-gogi {
    width: 100%;
    height: 100%;
    border: 3px dashed #00b464;
    opacity: 0.4;
    animation-name: rotate-circle-gogi;
}

.middle-ring-gogi {
    width: 320px;
    height: 320px;
    border: 2px solid #00dd76;
    opacity: 0.6;
    animation-name: rotate-circle-reverse-gogi;
    animation-duration: 15s;
}

.inner-ring-gogi {
    width: 200px;
    height: 200px;
    border: 1px solid #00b464;
    opacity: 0.8;
    animation-name: rotate-circle-gogi;
    animation-duration: 10s;
}

.circle-core-gogi {
    text-align: center;
    color: #00b464;
    font-weight: 800;
    letter-spacing: 3px;
}

.circle-core-gogi span {
    display: block;
    font-size: 1.4rem;
    line-height: 1.2;
}

.circle-core-gogi span:first-child {
    margin-bottom: 5px;
}

.circle-points-gogi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.point-gogi {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #00dd76;
    color: #00b464;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulse-point-gogi 2s ease-in-out infinite;
}

.point-gogi:hover {
    transform: scale(1.3);
    background: #00b464;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 180, 100, 0.4);
}

.point-1-gogi {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.point-2-gogi {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.point-3-gogi {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.point-4-gogi {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

/* Animations */
@keyframes rotate-circle-gogi {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-circle-reverse-gogi {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes pulse-point-gogi {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        box-shadow: 0 15px 40px rgba(0, 180, 100, 0.3);
    }
}

/* Point-specific animations */
.point-2-gogi,
.point-4-gogi {
    animation-name: pulse-point-horizontal-gogi;
}

@keyframes pulse-point-horizontal-gogi {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 15px 40px rgba(0, 180, 100, 0.3);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.modal-header p {
    color: var(--text-light);
}

.order-summary {
    margin-bottom: 30px;
}

.product-preview {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.product-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.order-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.whatsapp-order {
    background: #25D366;
    color: white;
}

.whatsapp-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.sms-order {
    background: var(--primary-color);
    color: white;
}

.sms-order:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.call-order {
    background: #007bff;
    color: white;
}

.call-order:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.order-note {
    text-align: center;
}

.order-note p {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.order-note i {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .impact-content-gogi {
        gap: 60px;
    }
   
    .sustainability-circle-gogi {
        width: 400px;
        height: 400px;
    }
   
    .middle-ring-gogi {
        width: 280px;
        height: 280px;
    }
   
    .inner-ring-gogi {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-auto-rows: 250px;
    }
   
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2) {
        grid-column: span 4;
    }
   
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: span 4;
    }
   
    .gallery-item:nth-child(6) {
        grid-column: span 8;
    }
   
    .gallery-item:nth-child(7) {
        grid-column: span 4;
    }
   
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9) {
        grid-column: span 4;
    }
   
    .impact-content-gogi {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }
   
    .impact-text-gogi h2 {
        font-size: 2.5rem;
    }
   
    .sustainability-circle-gogi {
        width: 350px;
        height: 350px;
    }
   
    .middle-ring-gogi {
        width: 250px;
        height: 250px;
    }
   
    .inner-ring-gogi {
        width: 150px;
        height: 150px;
    }
   
    .point-gogi {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header-title {
        font-size: 2.5rem;
    }
   
    .header-subtitle {
        font-size: 1.1rem;
    }
   
    .header-stats {
        gap: 30px;
    }
   
    .stat-number {
        font-size: 2rem;
    }
   
    .floating-circles {
        gap: 30px;
    }
   
    .contact-circle {
        width: 120px;
        height: 120px;
    }
   
    .contact-circle i {
        font-size: 2rem;
    }
   
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 200px;
        gap: 15px;
    }
   
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9) {
        grid-column: span 3;
    }
   
    .section-title {
        font-size: 2.2rem;
    }
   
    .impact-text-gogi h2 {
        font-size: 2rem;
    }
   
    .feature-gogi {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
   
    .sustainability-circle-gogi {
        width: 300px;
        height: 300px;
    }
   
    .middle-ring-gogi {
        width: 200px;
        height: 200px;
    }
   
    .inner-ring-gogi {
        width: 120px;
        height: 120px;
    }
   
    .point-gogi {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
   
    .header-title {
        font-size: 2rem;
    }
   
    .header-subtitle {
        font-size: 1rem;
    }
   
    .header-stats {
        gap: 20px;
    }
   
    .stat-number {
        font-size: 1.5rem;
    }
   
    .stat-label {
        font-size: 0.8rem;
    }
   
    .floating-circles {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
   
    .contact-circle {
        width: 140px;
        height: 140px;
    }
   
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
   
    .gallery-item:nth-child(n) {
        grid-column: 1;
    }
   
    .gallery-filters {
        gap: 10px;
    }
   
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
   
    .impact-text-gogi h2 {
        font-size: 1.8rem;
    }
   
    .impact-text-gogi > p {
        font-size: 1.1rem;
    }
   
    .sustainability-circle-gogi {
        width: 250px;
        height: 250px;
    }
   
    .middle-ring-gogi {
        width: 170px;
        height: 170px;
    }
   
    .inner-ring-gogi {
        width: 100px;
        height: 100px;
    }
   
    .circle-core-gogi span {
        font-size: 1.1rem;
    }
   
    .point-gogi {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
   
    .modal-content {
        width: 95%;
    }
   
    .modal-body {
        padding: 30px 20px;
    }
   
    .product-preview {
        flex-direction: column;
        text-align: center;
    }
}