/* LinkedIn Service Page Styles */
:root {
    --linkedin-blue: #0077b5;
    --linkedin-light: #00a0dc;
    --gradient-linkedin: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, 
        rgba(0,119,181,0.1) 0%,
        rgba(0,160,220,0.05) 50%,
        rgba(255,255,255,0.02) 100%);
    overflow: hidden;
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Floating Icons */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-linkedin);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0,119,181,0.2);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; }
.floating-icon:nth-child(2) { top: 50%; right: 15%; }
.floating-icon:nth-child(3) { bottom: 20%; left: 20%; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(5deg); }
    50% { transform: translate(-5px, 20px) rotate(-5deg); }
    75% { transform: translate(-15px, -5px) rotate(3deg); }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0,119,181,0.1) 0%, rgba(0,160,220,0.05) 50%, transparent 70%);
    transform: rotate(-12deg);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-linkedin);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.5rem);
    color: #2c3e50;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-buttons .btn {
    padding: clamp(0.6rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.hero-buttons .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-buttons .btn:hover::after {
    transform: translateX(100%);
}

.hero-buttons .btn-primary {
    background: var(--gradient-linkedin);
    border: none;
    box-shadow: 0 8px 25px rgba(0,119,181,0.25);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,119,181,0.3);
}

.hero-buttons .btn-outline-primary {
    border: 2px solid var(--linkedin-blue);
    color: var(--linkedin-blue);
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--linkedin-blue);
    color: white;
    transform: translateY(-3px);
}

/* Feature Cards */
.feature-card {
   background: rgba(255,255,255,0.18); /* Transparent white */
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
    border: 1.5px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem 1.2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,119,181,0.1) 0%, rgba(0,160,220,0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
 
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18);
    transform: translateY(-6px) scale(1.03);
    border-color: #48cae4;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-linkedin);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    transform: rotate(-10deg);
}

.feature-card:hover .feature-icon {
    transform: rotate(0) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,119,181,0.25);
}

.feature-card h5 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: clamp(0.85rem, 2vw, 1rem);
    line-height: 1.5;
    color: #555;
    flex-grow: 1;
}


/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0,119,181,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,119,181,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(0,119,181,0.02) 0%, rgba(0,160,220,0.05) 100%);
    border: 2px solid var(--linkedin-blue);
    transform: translateY(-10px);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,119,181,0.15);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-linkedin);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-price {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--linkedin-blue);
    margin: 1.5rem 0;
    line-height: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    font-size: clamp(0.85rem, 2vw, 1rem);
    text-align: left;
    justify-content: flex-start;
}

.pricing-features li i {
    color: var(--linkedin-blue);
    margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s ease-out forwards;
}

/* Image Effects */
.hero-section img {
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,119,181,0.15);
}

.hero-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,119,181,0.2);
}

/* Comprehensive Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .hero-section {
        padding: 5rem 0;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section {
        padding: 5rem 0;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .feature-card {
        padding: 1.8rem 1rem;
    }
    
    .pricing-card {
        padding: 2.5rem 1.8rem;
    }
}

/* Tablet Landscape */
@media (max-width: 991px) {
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 1rem 2.5rem;
        width: 100%;
        max-width: 300px;
    }
    
    .feature-card, .pricing-card {
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section h2 {
        font-size: 2.2rem;
    }
    
    .floating-icon {
        display: none; /* Hide floating icons on tablet */
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h5 {
        font-size: 1.3rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}

/* Mobile Landscape */
@media (max-width: 576px) {
    .hero-section {
        padding: 2.5rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        border-radius: 25px;
    }
    
    .feature-card {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1.2rem;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 15px;
    }
    
    .feature-card h5 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1.2rem;
        border-radius: 15px;
    }
    
    .pricing-price {
        font-size: 2.2rem;
    }
    
    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-section {
        padding: 2.5rem 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1rem 0.6rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card h5 {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 1.2rem 1rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section h2 {
        font-size: 1.6rem;
    }
    
    .lead {
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 0.8rem 0.5rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-card h5 {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 1rem 0.8rem;
    }
    
    .pricing-price {
        font-size: 1.8rem;
    }
    
    .section h2 {
        font-size: 1.4rem;
    }
    
    .cta-section {
        padding: 2rem 0.5rem;
    }
}

/* Ultra Small Mobile */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 0.6rem 0.4rem;
    }
    
    .pricing-card {
        padding: 0.8rem 0.6rem;
    }
    
    .section h2 {
        font-size: 1.3rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover {
        transform: none;
    }
    
    .feature-card:active {
        transform: scale(0.98);
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
    }
    
    .hero-buttons .btn:hover {
        transform: none;
    }
    
    .hero-buttons .btn:active {
        transform: scale(0.95);
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .section {
        padding: 1.5rem 0;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .floating-icon,
    .fade-in,
    .slide-in-right {
        animation: none;
    }
    
    .feature-card,
    .pricing-card,
    .hero-buttons .btn {
        transition: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .hero-section {
        background: linear-gradient(180deg, 
            rgba(0,119,181,0.2) 0%,
            rgba(0,160,220,0.1) 50%,
            rgba(0,0,0,0.05) 100%);
    }
    
    .feature-card {
        background: rgba(0,0,0,0.3);
        border-color: rgba(255,255,255,0.1);
        color: #fff;
    }
    
    .pricing-card {
        background: rgba(0,0,0,0.8);
        color: #fff;
    }
}

/* Section Styles */
.section {
    padding: clamp(2rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.section .container {
    padding-left: clamp(15px, 4vw, 30px);
    padding-right: clamp(15px, 4vw, 30px);
}

.section .row {
    margin-left: -10px;
    margin-right: -10px;
}

.section .col-lg-4,
.section .col-md-6,
.section .col-12 {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 1.5rem;
}

.section-alt {
    background: linear-gradient(135deg, rgba(0,119,181,0.03) 0%, rgba(0,160,220,0.05) 100%);
}

.section h2 {
    font-size: clamp(1.3rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    word-wrap: break-word;
    text-align: center;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-linkedin);
    border-radius: 3px;
}

.lead {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    color: #34495e;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Section */
.cta-section {
    background: var(--gradient-linkedin);
    padding: clamp(2rem, 8vw, 5rem) clamp(1rem, 4vw, 1.5rem);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    padding: clamp(0.6rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    margin: 0.5rem;
    border-radius: 30px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}


/* practices */

/* From Uiverse.io by Spacious74 */ 
.feature-card-container{
  background: linear-gradient(135deg, #fffffff5, #a665fb, #ffffff98);
  padding: 1px;
  border-radius: 1.2rem;
  box-shadow: 0px 1rem 1.5rem -0.9rem #000000e1;
  max-width: 700px;
}

.feature-card-subcontainer{
  font-size: 1rem;
  color: #bec4cf;
  background: linear-gradient(135deg, #838eb5 0%, #c697fb 43%, #b4c2f7 100%);
  padding: 1.5rem;
  border-radius: 1.2rem;
}

/* Professional Card - Silver, Blue, Green, White */
.professional-card {
    background: linear-gradient(135deg, #e3eafc 0%, #bfc9ca 40%, #48cae4 80%, #c3cfee 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
    border: 2.5px solid #bfc9ca;
    color: #023e8a;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.professional-card:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18);
    transform: translateY(-8px) scale(1.03);
    border-color: #48cae4;
}
.professional-badge {
    background: linear-gradient(90deg, #bfc9ca 0%, #48cae4 100%);
    color: #023e8a;
    font-weight: 700;
    border-radius: 0 0 16px 16px;
    padding: 0.5rem 1.2rem;
    position: absolute;
    top: 0;
    right: 0;
    left: 8;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.10);
}

/* Executive Card - Golden, Blue, Green, White */
.executive-card {
     background: linear-gradient(135deg, #fffbe6 0%, #f3dea0ff 30%, #a9d9e2ff 70%, #e3fcec 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(253,203,110,0.12);
    border: 2.5px solid #ffe082;
    color: #023e8a;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.executive-card:hover {
    box-shadow: 0 16px 48px rgba(253,203,110,0.18);
    transform: translateY(-8px) scale(1.03);
    border-color: #48cae4;
}
.executive-badge {
    background: linear-gradient(90deg, #ffe082 0%, #48cae4 100%);
    color: #023e8a;
    font-weight: 700;
    border-radius: 0 0 16px 16px;
    padding: 0.5rem 1.2rem;
    position: absolute;
    top: 0;
    right: 0;
    left: 10;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(253,203,110,0.10);
}

/* Common Styles */
.pricing-card h4 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #023e8a;
}
.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: #48cae4;
    margin-bottom: 0.5rem;
}
.pricing-features li.included {
    color: #023e8a;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.btn-primary {
    background: linear-gradient(90deg, #48cae4 0%, #023e8a 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 0;
    margin-top: 1rem;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: linear-gradient(90deg, #023e8a 0%, #48cae4 100%);
    color: #fff;
}
