/* Subpages additional styles */

/* Services Hero */
.services-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)), 
                url('https://images.unsplash.com/photo-1551867633-194f125bddfa') center/cover;
    min-height: 60vh;
}

/* Technology Hero */
.tech-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)), 
                url('https://images.unsplash.com/photo-1551867633-194f125bddfa') center/cover;
    min-height: 60vh;
}

/* Services Intro */
.services-intro {
    padding: 4rem 0;
    background: #f8f9fa;
}

.intro-grid {
    display: grid;
    gap: 2rem;
}

.intro-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.intro-highlights {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.intro-highlights h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Target Groups */
.target-groups {
    padding: 4rem 0;
    background: white;
}

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

.target-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.target-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.target-card ul {
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.target-card li {
    margin-bottom: 0.5rem;
    color: #555;
}

.service-btn, .tech-btn, .app-btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s;
}

.service-btn:hover, .tech-btn:hover, .app-btn:hover {
    background: #2980b9;
}

/* Technologies Overview */
.technologies-overview {
    padding: 4rem 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.tech-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tech-overview-item {
    padding: 1.5rem;
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-tagline {
    margin-top: 2rem;
    font-size: 1.2rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Technology Detailed */
.technologies-detailed {
    padding: 4rem 0;
    background: white;
}

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

.tech-detailed-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.tech-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.tech-detailed-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.tech-detailed-card ul {
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.tech-detailed-card .tech-btn {
    margin-top: auto;
}

/* Tech Advantages */
.tech-advantages {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Target Applications */
.target-applications {
    padding: 4rem 0;
    background: white;
}

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

.application-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.application-card:hover {
    transform: translateY(-10px);
}

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

.application-card p {
    margin-bottom: 2rem;
}

.application-card .app-btn {
    margin-top: auto;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 0;
    background: #f8f9fa;
    color: #2c3e50;
    text-align: center;
}

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

.contact-cta p {
    color: #555;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
}

.contact-info .contact-item span {
    color: #2c3e50;
}

.contact-info .contact-item i {
    color: #3498db;
}

.contact-info .contact-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
}

.contact-info .contact-item a:hover {
    text-decoration: underline;
    color: #3498db;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)), 
                url('https://images.unsplash.com/photo-1551867633-194f125bddfa') center/cover;
    min-height: 60vh;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.contact-method:hover {
    transform: translateY(-10px);
}

.contact-method-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-method a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: white;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.social-media-section {
    margin-top: 2rem;
}

.social-media-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-links-contact a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links-contact a:hover {
    background: #2980b9;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #2980b9;
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .target-grid,
    .tech-detailed-grid,
    .benefits-grid,
    .advantages-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .services-hero,
    .tech-hero,
    .contact-hero {
        min-height: 50vh;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}