
/* ============================================
   Site2Success - Page Specific Styles (Enhanced with Images)
   Clean Premium Visual Design - Ohm Health Inspired
   ============================================ */

/* Hero Section - Enhanced with Image Support */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 8rem 2rem 4rem 8%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white-primary) 0%, var(--white-secondary) 50%, rgba(255,107,74,0.03) 100%);
}

/* Soft tech background overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B4A' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.hero-bg-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hero-shape-1 {
    width: 280px;
    height: 280px;
    top: 8%;
    right: -2%;
    transform: rotate(12deg);
    opacity: 0.7;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.05), rgba(255, 255, 255, 0.8));
}

.hero-shape-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: -2%;
    border-radius: 50%;
    opacity: 0.5;
    background: linear-gradient(135deg, rgba(255, 138, 91, 0.08), rgba(255, 176, 136, 0.04));
}

.hero-shape-3 {
    width: 140px;
    height: 140px;
    top: 35%;
    right: 12%;
    transform: rotate(-8deg);
    opacity: 0.4;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 176, 136, 0.05));
}

/* Hero content enhancements */
.hero-content {
    max-width: 550px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 107, 74, 0.06);
    border: 1px solid rgba(255, 107, 74, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--coral);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-tag svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--navy-dark);
    letter-spacing: -0.03em;
}

.hero-description {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    max-width: 480px;    color: var(--gray-500);
    margin: 0 auto 2.5rem 0;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Hero Visual Grid - Ohm Inspired */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    pointer-events: none;
}

.hero-visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-visual img:nth-child(1) {
    transform: translateY(-20px) rotate(-3deg);
    z-index: 3;
}

.hero-visual img:nth-child(2) {
    transform: translateY(20px) rotate(3deg);
    z-index: 2;
}

.hero-visual img:nth-child(3) {
    transform: translateY(-10px) rotate(2deg);
    z-index: 1;
    grid-column: 1 / -1;
    width: 70%;
    margin: 0 auto;
    height: 180px;
}

/* Services Showcase - Full Image Cards */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.service-showcase-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--white-primary);
}

.service-showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

.service-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-showcase-card:hover img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.6) 60%, transparent 100%);
    color: white;
    transition: all 0.4s ease;
}

.service-showcase-card:hover .service-overlay {
    padding-bottom: 3rem;
    background: linear-gradient(to top, rgba(26,26,46,0.98) 0%, rgba(26,26,46,0.7) 70%, transparent 100%);
}

.service-overlay h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-overlay p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Feature Images Section */
.features-images-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white-primary) 0%, rgba(255,107,74,0.02) 50%, var(--white-primary) 100%);
    overflow: hidden;
}

.feature-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-image-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: var(--navy-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.feature-image-content p {
    color: var(--gray-500);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.feature-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.feature-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 100px rgba(0,0,0,0.15);
}

.feature-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    z-index: -1;
    transition: all 0.6s ease;
}

.image-accent-1 { top: -60px; left: -60px; }
.image-accent-2 { bottom: -60px; right: -60px; }

.feature-image-wrapper:hover .image-accent {
    opacity: 0.4;
    transform: scale(1.2);
}

/* Services Grid - Standard Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.08), rgba(255, 138, 91, 0.04));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--coral);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy-dark);
    font-weight: 700;
}

.service-card p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--coral);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

/* Stats Section - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--gray-500);
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Features Grid - Enhanced */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--white-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(255, 107, 74, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.08), rgba(255, 138, 91, 0.04));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--coral);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
}

.feature-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Page Hero - Enhanced */
.page-hero {
    padding: 10rem 2rem 5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--white-secondary) 0%, var(--white-primary) 100%);
}

.page-hero .section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

/* Content Block - Enhanced */
.content-block {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-card {
    background: var(--white-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: var(--shadow-lg);
}

.content-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy-dark);
    font-weight: 700;
}

.content-card h2 svg {
    color: var(--coral);
    width: 28px;
    height: 28px;
}

.content-card p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Team Grid - Enhanced */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--white-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(255, 107, 74, 0.25);
}

.team-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
    color: var(--navy-dark);
    font-weight: 700;
}

.team-role {
    color: var(--coral);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Contact Form - Enhanced */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(255, 107, 74, 0.1);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.08), rgba(255, 138, 91, 0.04));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--gradient-primary);
    color: white;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-value {
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 0.9375rem;
}

/* Projects Grid - Enhanced */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--white-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.03);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    font-weight: 700;
}

.project-content p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Internship Tracks - Enhanced */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.track-card {
    background: var(--white-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
}

.track-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(255, 107, 74, 0.15);
}

.track-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.08), rgba(255, 138, 91, 0.04));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--coral);
    transition: all 0.3s ease;
}

.track-card:hover .track-icon {
    background: var(--gradient-primary);
    color: white;
}

.track-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    font-weight: 600;
}

.track-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Process Steps - Enhanced */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.25);
}

.process-step h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    font-weight: 600;
}

.process-step p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* CTA Section - Enhanced */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--white-secondary) 0%, var(--white-primary) 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-visual {
        width: 40%;
        right: 3%;
    }
    .hero-visual img {
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-shape {
        display: none;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .service-showcase-card {
        height: 350px;
    }
    
    .feature-image-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero {
        padding-left: 2rem;
        padding-right: 2rem;
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 1rem 3rem;
        min-height: auto;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.75rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .content-card {
        padding: 2rem 1.25rem;
    }

    .page-hero {
        padding: 8rem 1rem 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-showcase {
        padding: 0 1rem;
    }
    
    .service-showcase-card {
        height: 300px;
    }
    
    .feature-image-grid {
        padding: 0 1rem;
    }
    
    .feature-image-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}