/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #050620;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #050620 !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    max-width: 200px;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1463FF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1463FF;
    transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .nav-link i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(5, 6, 32, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    color: #1463FF;
    background: rgba(20, 99, 255, 0.1);
    border-left-color: #1463FF;
}

.nav-cta .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1463FF, #0A4FDB);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 99, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1463FF;
    padding: 16px 32px;
    border: 2px solid #1463FF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1463FF;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #050620 0%, #0A0F3D 50%, #1463FF 100%);
    opacity: 0.9;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(20, 99, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 99, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(20, 99, 255, 0.2);
    color: #CBF8FF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(20, 99, 255, 0.3);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero .highlight {
    color: #1463FF;
    position: relative;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1463FF, #CBF8FF);
    border-radius: 2px;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #1463FF;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: #1463FF;
}

.floating-card span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.card-1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 120px;
    right: 30px;
    animation-delay: -2s;
}

.card-3 {
    bottom: 50px;
    left: 20px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    background: rgba(20, 99, 255, 0.2);
    color: #CBF8FF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid rgba(20, 99, 255, 0.3);
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #CBF8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #050620 0%, #0A0F3D 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1463FF, #0A4FDB);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(20, 99, 255, 0.3);
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.chart-visual {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 200px;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, #1463FF, #CBF8FF);
    border-radius: 4px 4px 0 0;
    animation: growUp 1.5s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
    transform: scaleY(0);
    transform-origin: bottom;
}

.chart-bar:nth-child(2) { animation-delay: 0.7s; }
.chart-bar:nth-child(3) { animation-delay: 0.9s; }
.chart-bar:nth-child(4) { animation-delay: 1.1s; }
.chart-bar:nth-child(5) { animation-delay: 1.3s; }

@keyframes growUp {
    to { transform: scaleY(1); }
}

/* SEO Services Section */
.seo-services {
    padding: 120px 0;
    background: linear-gradient(135deg, #0A0F3D 0%, #050620 100%);
    position: relative;
    overflow: hidden;
}

.seo-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="rgba(20,99,255,0.1)"/></svg>');
    pointer-events: none;
}

.seo-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.process-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-item:hover {
    transform: translateY(-10px);
    border-color: rgba(20, 99, 255, 0.3);
    box-shadow: 0 20px 40px rgba(20, 99, 255, 0.2);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1463FF, #0A4FDB);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(20, 99, 255, 0.3);
}

.process-icon i {
    font-size: 32px;
    color: white;
}

.process-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

.process-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.seo-types {
    text-align: center;
}

.seo-types h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.seo-type-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.seo-type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 99, 255, 0.3);
    background: rgba(20, 99, 255, 0.1);
}

.seo-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1463FF, #CBF8FF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.seo-type-icon i {
    font-size: 24px;
    color: white;
}

.seo-type-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.seo-type-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #050620 0%, #0A0F3D 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1463FF, #CBF8FF);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(20, 99, 255, 0.3);
    box-shadow: 0 20px 40px rgba(20, 99, 255, 0.2);
}

.service-card.featured {
    border-color: rgba(20, 99, 255, 0.5);
    background: rgba(20, 99, 255, 0.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1463FF;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1463FF, #0A4FDB);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(20, 99, 255, 0.3);
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
}

.service-card > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1463FF;
    font-weight: bold;
}

/* Work/Industries Section */
.work {
    padding: 120px 0;
    background: linear-gradient(135deg, #050620 0%, #0A0F3D 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 99, 255, 0.1), rgba(203, 248, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(20, 99, 255, 0.3);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1463FF, #CBF8FF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.industry-icon i {
    font-size: 32px;
    color: white;
}

.industry-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.industry-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Why SEO Section */
.why-seo {
    padding: 120px 0;
    background: linear-gradient(135deg, #050620 0%, #0A0F3D 100%);
    position: relative;
}

.why-seo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><circle cx="25" cy="25" r="1.5" fill="rgba(203,248,255,0.1)"/></svg>');
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1463FF, #CBF8FF);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(20, 99, 255, 0.3);
    box-shadow: 0 20px 40px rgba(20, 99, 255, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1463FF, #0A4FDB);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(20, 99, 255, 0.3);
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1463FF, #0A4FDB);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-cta i {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 50%;
}

.phone-cta:hover {
    transform: scale(1.05);
}

.cta-actions .btn-primary {
    background: white;
    color: #1463FF;
}

.cta-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0A0F3D 0%, #050620 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
}

.contact-info > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1463FF, #0A4FDB);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

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

.contact-item .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.contact-item .value {
    font-size: 16px;
    color: white;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1463FF;
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1463FF;
    box-shadow: 0 0 0 3px rgba(20, 99, 255, 0.2);
}

.form-group select option {
    background: #050620;
    color: white;
}

/* Services Page Styles */
.services-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #050620 0%, #0A0F3D 50%, #1463FF 100%);
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: white;
}

.services-hero p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.services-stats .stat {
    text-align: center;
}

.services-stats .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #1463FF;
    margin-bottom: 8px;
}

.services-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Detail Sections */
.service-detail {
    padding: 120px 0;
    background: linear-gradient(135deg, #050620 0%, #0A0F3D 100%);
}

.service-detail.alt {
    background: linear-gradient(135deg, #0A0F3D 0%, #050620 100%);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail.alt .service-detail-content {
    grid-template-columns: 1fr 1fr;
}

.service-detail.alt .service-info {
    order: 2;
}

.service-detail.alt .service-visual {
    order: 1;
}

.service-badge {
    background: rgba(20, 99, 255, 0.2);
    color: #CBF8FF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid rgba(20, 99, 255, 0.3);
}

.service-detail h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
}

.service-detail p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.service-features-grid .feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-features-grid .feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1463FF, #0A4FDB);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(20, 99, 255, 0.3);
}

.service-features-grid .feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.service-features-grid .feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Service Packages */
.service-packages h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(20, 99, 255, 0.3);
    box-shadow: 0 20px 40px rgba(20, 99, 255, 0.2);
}

.package-card.featured {
    border-color: rgba(20, 99, 255, 0.5);
    background: rgba(20, 99, 255, 0.1);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #1463FF;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.package-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.package-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

.package-card ul {
    list-style: none;
    padding: 0;
}

.package-card li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
}

.package-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1463FF;
    font-weight: bold;
}

/* Social Platforms */
.social-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 99, 255, 0.3);
    background: rgba(20, 99, 255, 0.1);
}

.platform-card i {
    font-size: 32px;
    color: #1463FF;
    margin-bottom: 16px;
}

.platform-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.platform-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Content Types */
.content-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 99, 255, 0.3);
    background: rgba(20, 99, 255, 0.1);
}

.content-card i {
    font-size: 32px;
    color: #1463FF;
    margin-bottom: 16px;
}

.content-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.content-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Service Illustrations */
.service-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-illustration,
.ppc-illustration,
.social-illustration,
.email-illustration,
.content-illustration,
.analytics-illustration {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Analytics Dashboard */
.analytics-dashboard {
    width: 100%;
    max-width: 320px;
    background: rgba(20, 99, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(20, 99, 255, 0.2);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 20px;
}

.dashboard-title {
    color: #1463FF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.dashboard-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-number {
    color: #1463FF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.mini-chart {
    height: 40px;
    background: linear-gradient(90deg, 
        rgba(20, 99, 255, 0.3) 0%, 
        rgba(20, 99, 255, 0.6) 40%, 
        rgba(20, 99, 255, 0.4) 70%, 
        rgba(20, 99, 255, 0.8) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #1463FF;
    animation: chartPulse 2s ease-in-out infinite;
}

@keyframes chartPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Service Illustrations */
.ranking-chart {
    text-align: center;
}

.ranking-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ranking-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rank-number {
    width: 30px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.bar-fill {
    flex: 1;
    height: 8px;
    background: linear-gradient(90deg, #1463FF, #CBF8FF);
    border-radius: 4px;
}

/* PPC Ad Preview */
.ad-preview {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}

.ad-label {
    background: #1463FF;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.ad-title {
    font-size: 18px;
    font-weight: 600;
    color: #1463FF;
    margin-bottom: 8px;
}

.ad-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 8px;
}

.ad-url {
    font-size: 12px;
    color: #4ade80;
    font-weight: 500;
}

/* Social Post Preview */
.social-post {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1463FF, #CBF8FF);
    border-radius: 50%;
}

.username {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.post-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.post-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 15px;
}

.post-actions {
    display: flex;
    gap: 20px;
}

.post-actions span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.post-actions i {
    color: #1463FF;
}

/* Email Preview */
.email-preview {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 320px;
}

.email-header {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.email-header::before {
    content: '📧';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.email-from {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    padding-left: 25px;
}

.email-subject {
    font-size: 14px;
    font-weight: 600;
    color: white;
    padding-left: 25px;
}

.email-body {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.email-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 15px;
}

.email-cta {
    background: linear-gradient(135deg, #1463FF, #0A4FDB);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(20, 99, 255, 0.3);
    transition: all 0.3s ease;
}

.email-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 99, 255, 0.4);
}

/* Content Pieces */
.content-pieces {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.content-piece {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

.content-piece:hover {
    transform: translateY(-5px);
    background: rgba(20, 99, 255, 0.1);
    border-color: rgba(20, 99, 255, 0.3);
}

.content-piece i {
    font-size: 24px;
    color: #1463FF;
    margin-bottom: 8px;
}

.content-piece span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Analytics Dashboard */
.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.dashboard-header {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.dashboard-metrics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    color: #1463FF;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.dashboard-chart {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(20, 99, 255, 0.3), rgba(20, 99, 255, 0.1));
    clip-path: polygon(0 100%, 20% 60%, 40% 40%, 60% 20%, 80% 10%, 100% 0%, 100% 100%);
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1463FF, #0A4FDB);
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.services-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.services-cta .btn-secondary:hover {
    background: white;
    color: #1463FF;
}

/* Footer */
.footer {
    background: #030214;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #1463FF;
}

.footer-logo .logo-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1463FF;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #1463FF;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1463FF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Mobile Menu Override */
    .nav-menu.mobile-open {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #050620 !important;
        padding: 20px 40px 40px 40px !important;
        gap: 20px !important;
        z-index: 9999 !important;
        animation: slideIn 0.3s ease !important;
        backdrop-filter: none !important;
        box-shadow: 0 0 0 100vw #050620 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: calc(100vh - 80px) !important;
        max-height: calc(100vh - 80px) !important;
    }
    
    .nav-menu.mobile-open .nav-link {
        color: white !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        transition: all 0.3s ease !important;
        flex-shrink: 0 !important;
    }
    
    .nav-menu.mobile-open .nav-link:hover {
        color: #1463FF !important;
        transform: translateX(10px) !important;
    }
    
    .nav-menu.mobile-open .dropdown-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        padding: 10px 16px !important;
        margin-left: 16px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 6px !important;
        margin-bottom: 6px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        flex-shrink: 0 !important;
    }
    
    .nav-menu.mobile-open .dropdown-link:hover {
        background: rgba(20, 99, 255, 0.2) !important;
        color: white !important;
    }
    
    .nav-menu.mobile-open::before {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #050620 !important;
        z-index: -1 !important;
        width: 100vw !important;
        height: 100vh !important;
    }
    
    .nav-menu.mobile-open::after {
        content: '' !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #050620 !important;
        z-index: -1 !important;
        width: 100vw !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px) !important;
    }
    
    @keyframes slideIn {
        from { transform: translateY(-100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        margin-top: 10px;
    }
    
    .dropdown-link {
        padding: 8px 0;
        border-left: none;
        font-size: 16px;
    }
    
    /* Services Page Mobile */
    .services-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .services-hero h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .services-hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .services-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .services-stats .stat-number {
        font-size: 24px;
    }
    
    .service-detail {
        padding: 80px 0;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .service-detail.alt .service-info,
    .service-detail.alt .service-visual {
        order: unset;
    }
    
    .service-visual {
        order: 2;
        width: 100%;
    }
    
    .service-info {
        order: 1;
        width: 100%;
    }
    
    .service-detail h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .service-detail p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .service-features-grid .feature-item {
        text-align: left;
        gap: 12px;
    }
    
    .service-features-grid .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .service-features-grid .feature-item h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .service-features-grid .feature-item p {
        font-size: 13px;
    }
    
    /* Mobile Service Illustrations */
    .seo-illustration,
    .ppc-illustration,
    .social-illustration,
    .email-illustration,
    .content-illustration,
    .analytics-illustration {
        padding: 30px 20px;
        min-height: 250px;
        max-width: 100%;
    }
    
    /* PPC Mobile Specific */
    .ppc-illustration {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 25px 15px;
        background: linear-gradient(135deg, rgba(20, 99, 255, 0.1) 0%, rgba(20, 99, 255, 0.05) 100%);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
    }
    
    .ppc-container {
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .ppc-illustration::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(20, 99, 255, 0.1) 0%, transparent 70%);
        animation: float 6s ease-in-out infinite;
    }
    
    .ad-preview {
        padding: 18px;
        width: 100%;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 16px;
        text-align: left;
        position: relative;
        z-index: 2;
        box-shadow: 0 8px 32px rgba(20, 99, 255, 0.2);
        backdrop-filter: blur(20px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .ad-preview:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(20, 99, 255, 0.3);
    }
    
    .ad-label {
        font-size: 10px;
        padding: 4px 8px;
        margin-bottom: 12px;
        display: inline-block;
        background: #1463FF;
        border-radius: 4px;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .ad-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.3;
        color: #1463FF;
        background: linear-gradient(135deg, #1463FF, #0A4FDB);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .ad-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 400;
    }
    
    .ad-url {
        font-size: 12px;
        color: #00D4AA;
        font-weight: 600;
        text-decoration: none;
        padding: 6px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        margin-top: 8px;
        padding-top: 12px;
    }
    
    /* PPC Metrics */
    .ppc-metrics {
        display: flex;
        gap: 15px;
        width: 100%;
        justify-content: space-between;
    }
    
    .metric-item {
        flex: 1;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        padding: 12px 8px;
        text-align: center;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }
    
    .metric-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #1463FF, #00D4AA);
    }
    
    .metric-item i {
        font-size: 16px;
        color: #1463FF;
        margin-bottom: 8px;
        display: block;
    }
    
    .metric-data {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .metric-value {
        font-size: 14px;
        font-weight: 700;
        color: white;
        line-height: 1;
    }
    
    .metric-label {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }
    
    /* Performance Indicator */
    .performance-indicator {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 15px;
        text-align: center;
    }
    
    .performance-label {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }
    
    .performance-bar {
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
        margin-bottom: 8px;
        overflow: hidden;
        position: relative;
    }
    
    .performance-fill {
        width: 94%;
        height: 100%;
        background: linear-gradient(90deg, #1463FF, #00D4AA);
        border-radius: 3px;
        animation: fillUp 2s ease-out;
    }
    
    .performance-text {
        font-size: 12px;
        color: #00D4AA;
        font-weight: 600;
    }
    
    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(10px, -10px) rotate(1deg); }
        66% { transform: translate(-5px, 5px) rotate(-1deg); }
    }
    
    @keyframes fillUp {
        from { width: 0%; }
        to { width: 94%; }
    }
    
    /* Analytics Dashboard Mobile */
    .analytics-dashboard {
        max-width: 280px;
        padding: 15px;
        margin: 0 auto;
    }
    
    .metrics-grid {
        gap: 10px;
    }
    
    .metric-card {
        padding: 12px;
    }
    
    .metric-number {
        font-size: 16px;
    }
    
    .metric-label {
        font-size: 10px;
    }
    
    /* Email Preview Mobile */
    .email-preview {
        max-width: 280px;
        padding: 15px;
        margin: 0 auto;
    }
    
    .email-header {
        font-size: 12px;
    }
    
    .email-subject {
        font-size: 14px;
    }
    
    .email-body {
        font-size: 12px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 24px 20px;
    }
    
    .package-card h4 {
        font-size: 18px;
    }
    
    .package-card p {
        font-size: 13px;
    }
    
    .package-card li {
        font-size: 13px;
    }
    
    .social-platforms,
    .content-types {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .platform-card,
    .content-card {
        padding: 24px 20px;
    }
    
    .platform-card h4,
    .content-card h4 {
        font-size: 16px;
    }
    
    .platform-card p,
    .content-card p {
        font-size: 13px;
    }
    
    .services-cta {
        padding: 60px 0;
    }
    
    .services-cta h2 {
        font-size: 24px;
    }
    
    .services-cta p {
        font-size: 16px;
    }
    
    .services-cta .cta-actions {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .services-cta .btn-primary,
    .services-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .nav-container {
        padding: 0 16px;
        height: 70px;
    }
    
    .navbar {
        background: #050620 !important;
        backdrop-filter: blur(15px);
    }
    
    /* Mobile Logo Responsive */
    .logo-image {
        height: 45px;
        max-width: 160px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* Text content comes first in mobile */
    .hero-text {
        order: 1;
        padding: 0 10px;
    }
    
    .hero-visual {
        order: 2;
        height: 200px;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 24px;
        max-width: 100%;
    }
    
    .hero-badge {
        margin-bottom: 16px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 260px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 20px;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 11px;
        line-height: 1.2;
    }
    
    /* Simplified floating cards for mobile */
    .floating-card {
        padding: 12px;
        animation: none;
        position: static !important;
        display: inline-flex;
        margin: 8px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .floating-card span {
        font-size: 11px;
    }
    
    .floating-card i {
        font-size: 18px;
    }
    
    /* Mobile visual container */
    .hero-visual {
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .section-tag {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 12px;
    }
    
    /* Better mobile section spacing */
    .about,
    .seo-services,
    .services,
    .work,
    .why-seo {
        padding: 60px 0;
    }
    
    /* Mobile-first content prioritization */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content .about-text {
        order: 1;
    }
    
    .about-content .about-visual {
        order: 2;
        margin-top: 20px;
    }
    
    /* About Section */
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-item {
        text-align: left;
        gap: 16px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    /* SEO Services Section */
    .seo-process {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .process-item {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .process-icon i {
        font-size: 20px;
    }
    
    .process-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .process-item p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .seo-types h3 {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .seo-type-card {
        padding: 16px 12px;
        border-radius: 12px;
    }
    
    .seo-type-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .seo-type-icon i {
        font-size: 16px;
    }
    
    .seo-type-card h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .seo-type-card p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px 18px;
        margin-bottom: 0;
        border-radius: 16px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-card > p {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    
    .service-features {
        padding-left: 0;
    }
    
    .service-features li {
        font-size: 12px;
        margin-bottom: 5px;
        padding-left: 16px;
    }
    
    /* Industries Section */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .industry-card {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .industry-icon i {
        font-size: 20px;
    }
    
    .industry-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .industry-card p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    /* Why SEO Section */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-card {
        padding: 24px 18px;
        border-radius: 16px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .benefit-icon i {
        font-size: 20px;
    }
    
    .benefit-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
    
    .cta-actions {
        align-items: center;
    }
    
    .phone-cta {
        font-size: 18px;
        gap: 8px;
    }
    
    .phone-cta i {
        padding: 8px;
        font-size: 16px;
    }
    
    .cta-actions .btn-primary {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* Contact Section */
    .contact {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .contact-info > p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-item .value {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-section p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 14px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* General Mobile Improvements */
    body {
        font-size: 14px;
    }
    
    /* Ensure buttons are touch-friendly */
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Improve form usability */
    input,
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 240px;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .cta-text h2 {
        font-size: 20px;
    }
    
    .contact-info h2 {
        font-size: 22px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    /* Very compact cards for small screens */
    .process-item,
    .service-card,
    .benefit-card {
        padding: 18px 14px;
    }
    
    .industry-card,
    .seo-type-card {
        padding: 16px 12px;
    }
    
    .process-icon,
    .service-icon,
    .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .industry-icon,
    .seo-type-icon {
        width: 40px;
        height: 40px;
    }
    
    .process-icon i,
    .service-icon i,
    .benefit-icon i {
        font-size: 18px;
    }
    
    .industry-icon i,
    .seo-type-icon i {
        font-size: 16px;
    }
    
    /* Compact floating cards */
    .floating-card {
        padding: 8px;
        margin: 4px;
    }
    
    .floating-card i {
        font-size: 14px;
    }
    
    .floating-card span {
        font-size: 9px;
    }
    
    /* Single column for SEO types on very small screens */
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Text size adjustments */
    .process-item h3,
    .service-card h3,
    .benefit-card h3 {
        font-size: 15px;
    }
    
    .industry-card h3,
    .seo-type-card h4 {
        font-size: 13px;
    }
    
    .process-item p,
    .service-card > p,
    .benefit-card p {
        font-size: 12px;
    }
    
    .industry-card p,
    .seo-type-card p,
    .service-features li {
        font-size: 11px;
    }
}

/* SEO Service Packages - Three Column Layout */
.service-packages {
    width: 100% !important;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 0;
}

.service-packages .packages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.service-packages .package-card {
    width: 100%;
    box-sizing: border-box;
    flex: 1;
}

@media (max-width: 968px) {
    .service-packages .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Enhanced Mobile Responsive Styles for Services Page */
@media (max-width: 1024px) {
    .service-packages .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Services Hero Section Mobile */
    .services-hero {
        padding: 100px 20px 60px;
        text-align: center;
    }
    
    .services-hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .services-hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Service Detail Section Mobile */
    .service-detail {
        padding: 60px 0;
    }
    
    .service-detail-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-info {
        order: 1;
    }
    
    .service-visual {
        order: 2;
        max-width: 100%;
    }
    
    .service-detail.alt .service-info {
        order: 2;
    }
    
    .service-detail.alt .service-visual {
        order: 1;
    }
    
    /* Service Badge Mobile */
    .service-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    /* Service Title Mobile */
    .service-detail h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    /* Service Description Mobile */
    .service-detail p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    /* Service Features Grid Mobile */
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    /* SEO Packages Mobile */
    .service-packages {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }
    
    .service-packages h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .service-packages .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
        margin-bottom: 0;
    }
    
    .package-card h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .package-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .package-card li {
        font-size: 0.9rem;
        padding-left: 25px;
        margin-bottom: 0.8rem;
    }
    
    .package-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        top: 1rem;
        right: 1rem;
    }
    
    /* Social Platforms Mobile */
    .social-platforms {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platform-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .platform-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .platform-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    /* Content Types Mobile */
    .content-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .content-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .content-card i {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .content-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .content-card p {
        font-size: 0.8rem;
    }
    
    /* Services CTA Mobile */
    .services-cta {
        padding: 60px 20px;
        text-align: center;
    }
    
    .services-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .services-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Navigation Mobile */
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Adjustments */
    .services-hero h1 {
        font-size: 1.8rem;
    }
    
    .services-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem 1rem;
    }
    
    .service-detail h2 {
        font-size: 1.5rem;
    }
    
    .service-packages h3 {
        font-size: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem 1rem;
    }
    
    .content-types {
        grid-template-columns: 1fr;
    }
    
    .services-cta h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Index Page Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* Global Mobile Container */
    .container {
        padding: 0 20px !important;
        max-width: 100% !important;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 120px 20px 80px !important;
        text-align: center !important;
        min-height: auto !important;
    }
    
    .hero-content {
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        padding: 0 10px !important;
    }
    
    .hero .highlight {
        display: inline !important;
        color: #1463FF !important;
    }
    
    .hero p {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2.5rem !important;
        text-align: center !important;
        padding: 0 10px !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100% !important;
        max-width: 300px !important;
        padding: 1.2rem 2rem !important;
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
        text-decoration: none !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
    }
    
    .btn-primary {
        background: #1463FF !important;
        color: white !important;
        border: none !important;
    }
    
    .btn-secondary {
        background: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    /* Stats Section Mobile */
    .stats {
        padding: 80px 20px !important;
        text-align: center !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .stat-item {
        padding: 2rem 1.5rem !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 16px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
        color: #1463FF !important;
    }
    
    .stat-label {
        font-size: 1rem !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    /* About Section Mobile */
    .about {
        padding: 80px 20px !important;
        text-align: center !important;
    }
    
    .about-content {
        flex-direction: column !important;
        gap: 3rem !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .about-text {
        order: 1 !important;
        text-align: center !important;
        padding: 0 10px !important;
    }
    
    .about-visual {
        order: 2 !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .about h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        color: white !important;
        padding: 0 10px !important;
    }
    
    .about p {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        line-height: 1.6 !important;
        padding: 0 10px !important;
    }
    
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 2.5rem !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .about-feature {
        text-align: center !important;
        padding: 1.5rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .about-cta {
        text-align: center !important;
        margin-top: 2rem !important;
    }
    
    .about-cta .btn-primary {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        display: block !important;
        padding: 1.2rem 2rem !important;
        background: #1463FF !important;
        color: white !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 60px 20px;
        text-align: center;
    }
    
    .services h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .services-intro {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .service-features {
        margin-bottom: 1.5rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
        text-align: left;
        padding-left: 25px;
    }
    
    .service-card .btn-secondary {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
    
    /* Work Section Mobile */
    .work {
        padding: 60px 20px;
        text-align: center;
    }
    
    .work h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .work-intro {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .industry-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .industry-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .industry-card h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .industry-card p {
        font-size: 0.8rem;
    }
    
    /* SEO Types Section Mobile */
    .seo-types {
        padding: 60px 20px;
        text-align: center;
    }
    
    .seo-types h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .seo-intro {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .seo-type-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .seo-type-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .seo-type-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .seo-benefits {
        margin-bottom: 1.5rem;
    }
    
    .seo-benefits li {
        font-size: 0.85rem;
        text-align: left;
        padding-left: 25px;
    }
    
    /* Process Section Mobile */
    .process {
        padding: 60px 20px;
        text-align: center;
    }
    
    .process h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .process-intro {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .step-number {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    /* CTA Section Mobile */
    .cta {
        padding: 80px 20px !important;
        text-align: center !important;
        background: linear-gradient(135deg, #1463FF 0%, #0d47a1 100%) !important;
    }
    
    .cta h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        color: white !important;
        padding: 0 10px !important;
    }
    
    .cta p {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 2.5rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 0 10px !important;
        line-height: 1.6 !important;
    }
    
    .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .cta-buttons .btn-primary {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
        padding: 1.2rem 2rem !important;
        background: white !important;
        color: #1463FF !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        border: none !important;
    }
    
    .cta-buttons .btn-secondary {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
        padding: 1.2rem 2rem !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
    }
    
    /* Global Button Fixes for Mobile */
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        display: block !important;
        text-align: center !important;
        padding: 1.2rem 2rem !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        box-sizing: border-box !important;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 80px 20px !important;
        text-align: center;
    }
    
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .contact-intro {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
        text-align: center;
    }
    
    .contact-form-container {
        order: 1;
        text-align: center;
    }
    
    .contact-item {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-item i {
        margin-bottom: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .submit-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        max-width: 100%;
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .about h2,
    .services h2,
    .work h2,
    .seo-types h2,
    .process h2,
    .cta h2,
    .contact h2 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .seo-type-card,
    .process-step {
        padding: 1.5rem 1rem;
    }
}