/* Link Building Specific Styles */
:root {
    --primary-blue: #1f3a8a;
    --dark-blue: #0b2a6f;
    --accent-blue: #4fc3f7;
    --light-blue: #f0f7ff;
    --text-dark: #162c6b;
    --text-medium: #4a5568;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
}

/* Hero Section - Enhanced */
.link-building-hero {
    background: linear-gradient(135deg, #0b2a6f 0%, #1f3a8a 100%);
    padding: 100px 5% 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.link-building-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
    color: #4FC3F7;
    font-size: 14px;
}

.badge span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff 0%, #4FC3F7 100%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text; /* for Safari */
    -webkit-text-fill-color: transparent; /* fallback for Safari */
}

.highlight {
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text; /* for Safari */
    -webkit-text-fill-color: transparent; /* fallback for Safari */
    position: relative;
}


.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(79, 195, 247, 0.5);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    flex: 1;
    padding: 20px 25px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 195, 247, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon i {
    font-size: 1.2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.9rem;
}

.trust-item i {
    color: #4FC3F7;
    font-size: 14px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.floating-badge i {
    color: #1f3a8a;
    font-size: 1rem;
}

.floating-badge span {
    color: #162c6b;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.badge-seo {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.badge-links {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.badge-analytics {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 42, 111, 0.9), transparent);
    padding: 30px;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white;
}

.overlay-content p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .image-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .link-building-hero {
        padding: 80px 5% 60px;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .image-container {
        transform: none;
    }
    
    .image-container:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 20px;
    }
}
/* Services Grid */
.services-section {
    padding: 80px 5%;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--success-green);
    font-size: 0.75rem;
}

/* Process Section */
.process-section {
    padding: 80px 5%;
    background: var(--light-blue);
}

.process-steps {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.step-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.step-feature i {
    color: var(--primary-blue);
    font-size: 0.75rem;
}

/* Packages Section */
.packages-section {
    padding: 80px 5%;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.package-card.popular {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(31, 58, 138, 0.1);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #1f3a8a;
    color: white;
    padding: 8px 30px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
}

.package-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 2rem;
    color: white;
    text-align: center;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
}

.package-price span {
    font-size: 1rem;
    opacity: 0.9;
}

.package-content {
    padding: 2rem;
}

.package-description {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

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

.package-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--success-green);
}

.package-cta {
    display: block;
    text-align: center;
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-cta:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Results Section */
.results-section {
    padding: 80px 5%;
    background: var(--light-blue);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.result-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), #29b6f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.result-number span {
    color: var(--accent-blue);
}

.result-label {
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.result-description {
    color: var(--text-medium);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 5%;
    background: white;
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 2rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.guarantee-badge i {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.guarantee-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.guarantee-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .services-grid,
    .packages-grid,
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .package-price {
        font-size: 2.5rem;
    }

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