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

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

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

/* Typography */
h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

a {
    color: #2D1B69;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFC436;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.95) 0%, rgba(45, 27, 105, 0.85) 100%);
    padding: 1rem 0;
    border-bottom: 3px solid #FFC436;
    backdrop-filter: blur(10px);
}

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

.logo {
    transition: transform 0.3s ease;
}

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

.brand-name h1 {
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.brand-name h1 a {
    color: inherit;
}

.tagline {
    color: #FFC436;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2D1B69 0%, #4A3B8C 50%, #2D1B69 100%);
    color: #ffffff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 196, 54, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.cta-button {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FFC436 0%, #FFD700 100%);
    color: #2D1B69;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC436 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 196, 54, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #FFC436;
}

.cta-button.secondary:hover {
    background: #FFC436;
    color: #2D1B69;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.hero-image svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.2));
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px dashed rgba(255, 196, 54, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFC436;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(5px);
}

/* Section Styles */
section {
    padding: 4rem 0;
    text-align: center;
}

.about {
    background: #ffffff;
}

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

.about-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(45, 27, 105, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(45, 27, 105, 0.1);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

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

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(45, 27, 105, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(45, 27, 105, 0.15);
    border-color: #FFC436;
}

/* Products Section */
.products {
    background: #ffffff;
}

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

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(45, 27, 105, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 27, 105, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #2D1B69 0%, #4A3B8C 100%);
    border: none;
    color: #FFC436;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(45, 27, 105, 0.1);
}

.duration {
    color: #666;
    font-size: 0.9rem;
}

.price {
    color: #2D1B69;
    font-weight: 700;
    font-size: 1.2rem;
}

.product-button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #2D1B69 0%, #4A3B8C 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: linear-gradient(135deg, #FFC436 0%, #FFD700 100%);
    color: #2D1B69;
    transform: translateY(-2px);
}

/* Membership Section */
.membership {
    background: linear-gradient(135deg, #2D1B69 0%, #4A3B8C 100%);
    color: #ffffff;
}

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

.membership-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.membership-card.featured {
    background: rgba(255, 196, 54, 0.2);
    border-color: #FFC436;
    transform: scale(1.05);
}

.membership-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.membership-card.featured:hover {
    transform: translateY(-5px) scale(1.07);
}

.membership-price {
    font-size: 2rem;
    font-weight: 700;
    color: #FFC436;
    margin: 1rem 0;
}

.membership-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.membership-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-card li:last-child {
    border-bottom: none;
}

/* Technology Section */
.technology {
    background: #ffffff;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tech-features {
    list-style: none;
    margin-top: 1.5rem;
}

.tech-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC436;
    font-weight: 700;
    font-size: 1.2rem;
}

.tech-image .image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e9ff 100%);
    border: 2px dashed #2D1B69;
    color: #2D1B69;
}

/* Experience Section */
.experience {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

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

.testimonial {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FFC436;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(45, 27, 105, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    color: #2D1B69;
    font-weight: 600;
}

/* Location Section */
.location {
    background: #ffffff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-details {
    margin-top: 1.5rem;
}

.location-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(45, 27, 105, 0.1);
}

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

.location-map .image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #e8e9ff 0%, #f8f9ff 100%);
    border: 2px dashed #2D1B69;
    color: #2D1B69;
}

/* Contacts Section */
.contacts {
    background: linear-gradient(135deg, #2D1B69 0%, #4A3B8C 100%);
    color: #ffffff;
    text-align: left;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    background: rgba(255, 196, 54, 0.2);
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid #FFC436;
}

.contact-details a {
    color: #FFC436;
    font-weight: 600;
}

.contact-details a:hover {
    color: #ffffff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a0f4a 0%, #2D1B69 100%);
    color: #ffffff;
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand-text h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.footer-brand-text span {
    color: #FFC436;
    font-size: 0.9rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

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

.footer-section h5 {
    color: #FFC436;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

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

.footer-section li {
    padding: 0.3rem 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #FFC436;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tech-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .about-grid,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-card.featured {
        transform: none;
    }
    
    .membership-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        gap: 0.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
}