/* LinkedIn Header Inspired Design Elements */

/* Enhanced Hero Section with LinkedIn-style Background */
.hero-linkedin-style {
    background: var(--linkedin-gradient);
    position: relative;
    overflow: hidden;
}

.hero-linkedin-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 160, 220, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 119, 181, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 96, 151, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(0, 65, 130, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-linkedin-style .hero-content {
    position: relative;
    z-index: 3;
}

.hero-linkedin-style h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-text-fill-color: white;
    background: none;
}

.hero-linkedin-style .hero-description {
    color: rgba(255, 255, 255, 0.9);
}

.hero-linkedin-style .hero-stats .stat-number {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-linkedin-style .hero-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* LinkedIn-style Section Headers */
.section-linkedin-header {
    background: var(--linkedin-gradient-vertical);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.section-linkedin-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 160, 220, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 96, 151, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.section-linkedin-header .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.section-linkedin-header .section-title h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-linkedin-header .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

/* Enhanced CTA Section with LinkedIn Style */
.cta-linkedin-style {
    background: linear-gradient(135deg, #5a997d, #789850);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem auto; /* Reduced margin */
    text-align: center;
    max-width: 600px; /* Much smaller max-width */
    width: 85%; /* Smaller responsive width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-linkedin-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-linkedin-style .cta-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 500px; /* Much smaller max-width */
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 2rem; /* Reduced padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Quote styling */
.cta-quote {
    margin: 2rem auto 3rem auto; /* More space below quote */
    padding: 2rem;
    max-width: 800px; /* Wider for standalone quote */
    text-align: center;
}

.cta-quote blockquote {
    font-size: 1.4rem; /* Slightly larger for standalone */
    font-style: italic;
    color: #6B7280; /* Nice gray color for white background */
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    position: relative;
    padding: 0 2rem;
}

.cta-quote blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #3C82BE; /* Cool blue for quote marks */
    position: absolute;
    left: 0;
    top: -0.5rem;
    line-height: 1;
}

.cta-quote blockquote::after {
    content: '"';
    font-size: 3rem;
    color: #3C82BE; /* Cool blue for quote marks */
    position: absolute;
    right: 0;
    bottom: -1rem;
    line-height: 1;
}

.cta-linkedin-style h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-linkedin-style p {
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-linkedin-style .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* LinkedIn-style Card Backgrounds */
.card-linkedin-style {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.card-linkedin-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--linkedin-gradient);
    opacity: 0.05;
    pointer-events: none;
}

.card-linkedin-style .card-content {
    position: relative;
    z-index: 2;
}

/* Enhanced Footer with LinkedIn Style */
.site-footer-linkedin {
    background: var(--linkedin-gradient-vertical);
    position: relative;
    overflow: hidden;
}

.site-footer-linkedin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(90, 153, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(58, 134, 162, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer-linkedin .container {
    position: relative;
    z-index: 2;
}

/* LinkedIn-style Navigation Enhancement */
.site-header-linkedin {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(82, 147, 137, 0.1);
    position: relative;
}

.site-header-linkedin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--linkedin-gradient);
    opacity: 0.02;
    pointer-events: none;
}

.site-header-linkedin .nav-container {
    position: relative;
    z-index: 2;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem; /* Reduced padding */
    margin: 1.5rem auto; /* Reduced margin */
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px; /* Reduced max-width */
    text-align: left;
}

.contact-form h3 {
    color: white;
    margin-bottom: 1rem; /* Reduced margin */
    text-align: center;
}

.form-group {
    margin-bottom: 1rem; /* Reduced margin */
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit; /* Ensure font matches site */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-family: inherit; /* Ensure placeholder font matches site */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    min-height: 100px; /* Reduced height */
    resize: vertical;
}

.contact-form .btn {
    width: auto;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-form .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem; /* Reduced margin */
}

/* Contact Form Messages */
.contact-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.contact-message-success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-message-error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-message-info {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Responsive LinkedIn Style Elements */
@media (max-width: 768px) {
    .hero-linkedin-style {
        background: var(--linkedin-gradient-vertical);
    }
    
    .section-linkedin-header {
        padding: 4rem 0;
    }
    
    .cta-linkedin-style {
        margin: 2rem 0;
        border-radius: 15px;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .cta-linkedin-style .cta-content {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .cta-linkedin-style .cta-content > * {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    
    .contact-form {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
} 