/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header styles */
.header {
    background: linear-gradient(135deg, #000000, #1f1f1f);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: #1f8570;
    font-size: 2rem;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero section - Enhanced */
.hero {
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn.primary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.primary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-btn.secondary {
    background: rgba(0,0,0,0.8);
    color: white;
    border: 2px solid rgba(0,0,0,0.3);
}

.hero-btn.secondary:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Responsive hero section */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero h3 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 80%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Network hub section */
.network-hub {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.network-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(31,133,112,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>') repeat;
}

.network-hub .container {
    position: relative;
    z-index: 2;
}

.network-hub h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.network-hub-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category {
    margin-bottom: 5rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(31, 133, 112, 0.1);
    transition: all 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: rgba(31, 133, 112, 0.2);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.category h3 {
    font-size: 2rem;
    color: #000000;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.category h3 i {
    color: #1f8570;
    font-size: 2.2rem;
}

.special-badge {
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 1rem;
}

.category-main-link {
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 133, 112, 0.3);
    font-size: 0.9rem;
}

.category-main-link:hover {
    background: linear-gradient(135deg, #176b5a, #1f8570);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 133, 112, 0.4);
    color: white;
}

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

/* Site card styles */
.site-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.site-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-color: #1f8570;
}

.site-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1f8570, #000000);
}

.card-icon {
    font-size: 3rem;
    color: #1f8570;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.site-card:hover .card-icon {
    transform: scale(1.05);
    color: #000000;
}

.site-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.site-card p {
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.card-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #bdc3c7;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.site-card:hover .card-link {
    color: #3498db;
    transform: scale(1.2);
}

/* Store banner */
.store-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 3rem 0;
    margin: 2rem 0;
}

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

.banner-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #e74c3c;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: #f8f9fa;
}

/* About section */
.about {
    padding: 4rem 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact section */
.contact {
    padding: 3rem 0;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 2rem;
}

.footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-info a {
    color: #3498db;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .network-hub h2 {
        font-size: 2rem;
    }
    
    .category h3 {
        font-size: 1.5rem;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .site-card {
        padding: 1.5rem;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .network-hub {
        padding: 2rem 0;
    }
    
    .category {
        margin-bottom: 2rem;
    }
    
    .site-card {
        padding: 1rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .store-banner {
        padding: 2rem 0;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

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

.site-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Category detail link */
.category-detail-link {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.site-card:hover .category-detail-link {
    opacity: 1;
    transform: translateY(0);
}

.category-detail-link:hover {
    background: linear-gradient(135deg, #3498db, #2980b9);
    transform: translateY(-2px);
}

.site-card {
    padding-bottom: 2rem; /* Reset normal padding */
}

/* Category header with main link */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-main-link {
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(31, 133, 112, 0.3);
}

.category-main-link:hover {
    background: linear-gradient(135deg, #176b5a, #1f8570);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 133, 112, 0.4);
}

/* Special badge for equipment category */
.special-badge {
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    margin-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(31, 133, 112, 0.3);
}

/* Focus styles for accessibility */
.nav-link:focus,
.card-link:focus,
.cta-button:focus,
.contact-link:focus,
.category-main-link:focus {
    outline: 2px solid #1f8570;
    outline-offset: 2px;
}

/* Objective Navigation Section */
.objective-navigation {
    padding: 4rem 0;
    background: white;
}

.objective-navigation h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 3rem;
}

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

.objective-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.objective-card:hover {
    background: white;
    border-color: #1f8570;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(31, 133, 112, 0.15);
    color: #333;
}

.objective-icon {
    font-size: 3rem;
    color: #1f8570;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.objective-card:hover .objective-icon {
    color: #000000;
    transform: scale(1.1);
}

.objective-card h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.objective-card p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

.see-all-objectives {
    text-align: center;
}

.see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    background: linear-gradient(135deg, #176b5a, #1f8570);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 133, 112, 0.3);
}

/* Resources Preview Section */
.resources-preview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.resources-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 1rem;
}

.resources-preview p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 133, 112, 0.15);
    border-color: #1f8570;
}

.resource-icon {
    font-size: 3rem;
    color: #1f8570;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.resource-item:hover .resource-icon {
    color: #000000;
    transform: scale(1.1);
}

.resource-item h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.resource-item p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.resources-cta {
    text-align: center;
}

.resources-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resources-btn:hover {
    background: linear-gradient(135deg, #176b5a, #1f8570);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 133, 112, 0.3);
}

/* Category Preview Section - Updated */
.category-preview {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1rem;
    border: 1px solid #e9ecef;
}

.preview-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.preview-icon {
    font-size: 4rem;
    color: #1f8570;
    flex-shrink: 0;
}

.preview-text h4 {
    color: #000000;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.preview-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.preview-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1f8570;
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-item i {
    color: #1f8570;
    font-size: 0.8rem;
}

.preview-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1f8570;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
}

/* Responsive adjustments for category header */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .category-main-link {
        align-self: stretch;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }
    
    .special-badge {
        margin-left: 0.5rem;
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
    
    .objective-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .objective-card {
        padding: 1.5rem;
    }
    
    .resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .resource-item {
        padding: 1.5rem;
    }
    
    .preview-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .preview-icon {
        font-size: 3rem;
        align-self: center;
    }
    
    .preview-stats {
        gap: 2rem;
        flex-direction: column;
    }
    
    .highlight-item {
        font-size: 0.8rem;
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(31,133,112,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23services-pattern)"/></svg>') repeat;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.services-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4rem;
    font-style: italic;
}

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

.service-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 133, 112, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 133, 112, 0.2);
    border-color: rgba(31, 133, 112, 0.4);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(31, 133, 112, 0.3), rgba(0,0,0,0.3));
}

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

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 133, 112, 0.3);
}

.service-btn:hover {
    background: linear-gradient(135deg, #176b5a, #1f8570);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 133, 112, 0.4);
    color: white;
}

/* Gyms Section */
.gyms-section {
    padding: 5rem 0;
    background: white;
}

.gyms-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
    font-weight: 700;
}

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

.gym-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gym-card:hover {
    transform: translateY(-5px);
    border-color: #1f8570;
    box-shadow: 0 8px 25px rgba(31, 133, 112, 0.15);
}

.gym-card h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gym-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gym-btn {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.gym-btn:hover {
    background: #1f8570;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(31, 133, 112, 0.3);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        margin: 0 1rem;
    }
    
    .gyms-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .services-section h2 {
        font-size: 2.5rem;
    }
    
    .gyms-section h2 {
        font-size: 2rem;
    }
}
