/* Gefiendra Page Specific Styles */

/* Stimatrix Section */
.stimatrix-section {
    margin-top: 80px;
    background: var(--gradient-1);
    color: white;
    padding: 20px 0;
}

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

.stimatrix-section .section-title {
    color: white;
    font-size: 36px;
    margin-bottom: 8px;
}

.stimatrix-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.stimatrix-inner {
    background: rgba(255, 255, 255, 0.25);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stimatrix-inner h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
}

.stimatrix-inner p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.stimatrix-button-wrapper {
    text-align: center;
}

.stimatrix-button {
    background: white;
    color: var(--primary-color);
    border: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 20px 0;
}

.hero-section .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section .hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-section .hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Services Section */
.services-section {
    padding: 30px 0;
}

/* About Section */
.about-section {
    padding: 30px 0;
}

.about-section .section-description {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 30px 0;
}

.contact-form {
    max-width: 600px;
    margin: 16px auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: white;
    transition: all 0.3s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.contact-form input[type="text"]:not(:focus),
.contact-form input[type="email"]:not(:focus),
.contact-form textarea:not(:focus) {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.contact-form button {
    width: 100%;
}

