/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.logo-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.logo-container img{
    height: 60px;
    width: 200px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
    }
}

/* AOS Animation Classes */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-down"] {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-down"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

[data-aos="flip-up"] {
    opacity: 0;
    transform: rotateX(60deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="flip-up"].aos-animate {
    opacity: 1;
    transform: rotateX(0deg);
}

/* Header */
.header {
    
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    animation: fadeInDown 1s ease-out;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
}

.video{
     width:80% ;
     height:360px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /*background: linear-gradient(135deg, #1e3a8a, #7c2d92, #3730a3);*/
    background-color: #ffffff;
    
    text-align: center;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(45deg, rgba(37, 99, 235, 0.3), rgba(124, 58, 237, 0.3));*/
    animation: pulse 4s ease-in-out infinite;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: #fbbf24;
    top: 20%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: #10b981;
    bottom: 30%;
    right: 25%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: #f59e0b;
    top: 60%;
    left: 10%;
    animation: bounce 4s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    z-index: 2;
    position: relative;
    color: #000;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    position: relative;
    color: #000000;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

/* Ad Bars Section - Only Google Ads */
.ad-bars-section {
    padding: 2rem 0;
    background: #f9fafb;
    overflow: hidden;
}

.ad-bar {
    padding: 1rem 0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.ad-bar.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.ad-bar.dark {
    background: linear-gradient(135deg, #1f2937, #111827);
}

.ad-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    gap: 1rem;
}

.ad-bar.dark .ad-track {
    animation: scroll-right 30s linear infinite;
}

.ad-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.ad-item:hover {
    transform: translateY(-5px);
}

.ad-bar.dark .ad-item {
    background: rgba(55, 65, 81, 0.9);
    color: white;
}

.ad-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    color: white;
}

.google-icon {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.google-icon-alt {
    background: linear-gradient(135deg, #ea4335, #fbbc04);
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1f2937;
    animation: fadeInUp 1s ease-out;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f9fafb;
    border-radius: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.service-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.services-footer {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #1f2937;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Google Ads Services */
.google-ads-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefits-list i {
    color: #10b981;
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.showcase-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.showcase-image img:hover {
    transform: scale(1.05);
}

.detailed-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-detail {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.service-detail:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-detail-icon {
    color: #3b82f6;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-detail h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-detail p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail ul {
    list-style: none;
}

.service-detail li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #374151;
}

.service-detail li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Enhanced Process Section */
.process-section-enhanced {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

.process-steps-enhanced {
    margin-bottom: 4rem;
}

.process-step-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.process-step-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.process-step-enhanced.reverse {
    grid-template-columns: 1fr 1fr;
}

.process-step-enhanced.reverse .step-content-enhanced {
    order: 2;
}

.process-step-enhanced.reverse .step-visual-enhanced {
    order: 1;
}

.step-header-enhanced {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.step-icon-enhanced {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.step-number-enhanced {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.step-content-enhanced h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-content-enhanced p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.step-details-enhanced {
    margin-bottom: 2rem;
}

.detail-item-enhanced {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f1f5f9, #e0f2fe);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.detail-item-enhanced:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.detail-item-enhanced i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.detail-item-enhanced span {
    font-weight: 500;
    color: #374151;
}

.mockup-data-enhanced {
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e0f2fe;
    box-shadow: inset 0 2px 10px rgba(59, 130, 246, 0.1);
}

.mockup-data-enhanced h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-data-enhanced h4::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.data-items-enhanced {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.data-item-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #3b82f6;
}

.data-item-enhanced span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.data-value-enhanced {
    text-align: right;
}

.data-value-enhanced strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.data-value-enhanced small {
    display: block;
    font-size: 0.75rem;
    color: #10b981;
    margin-top: 0.25rem;
}

.step-visual-enhanced {
    position: relative;
}

.visual-container-enhanced {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.visual-container-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    z-index: 1;
}

.visual-container-enhanced:hover {
    transform: scale(1.02) rotateY(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.step-image-enhanced {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}

.step-overlay-enhanced {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.step-indicator-enhanced {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    animation: glow 3s ease-in-out infinite;
}

.dashboard-preview-enhanced {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.preview-header-enhanced span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.status-indicators-enhanced {
    display: flex;
    gap: 0.25rem;
}

.status-dot-enhanced {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-green {
    background: #10b981;
    animation: pulse 2s infinite;
}

.status-yellow {
    background: #f59e0b;
    animation: pulse 2s infinite 0.5s;
}

.status-blue {
    background: #3b82f6;
    animation: pulse 2s infinite 1s;
}

.preview-data-enhanced {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-item-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 6px;
}

.preview-item-enhanced span {
    font-size: 0.8rem;
    color: #6b7280;
}

.preview-item-enhanced strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3b82f6;
}

.cta-section-enhanced {
    text-align: center;
    margin-top: 4rem;
}

.cta-card-enhanced {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.5s ease;
}

.cta-card-enhanced:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
    box-shadow: 0 30px 70px rgba(59, 130, 246, 0.4);
}

.cta-card-enhanced h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card-enhanced p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-card-enhanced .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-card-enhanced .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Clients Section */
.clients-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #e0f2fe);
}

.clients-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.showcase-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat:nth-child(1) .stat-number {
    color: #3b82f6;
}

.stat:nth-child(2) .stat-number {
    color: #10b981;
}

.stat:nth-child(3) .stat-number {
    color: #8b5cf6;
}

.stat-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.client-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.client-story {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.client-story:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.client-story h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.client-industry {
    background: #e5e7eb;
    color: #6b7280;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.client-result {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
}

.client-story p {
    color: #6b7280;
    line-height: 1.5;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: white;
}

.reviews-showcase {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.why-list {
    space-y: 1.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.why-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.why-item:nth-child(1) .why-number {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.why-item:nth-child(2) .why-number {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.why-item:nth-child(3) .why-number {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.why-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.why-content p {
    color: #6b7280;
    line-height: 1.5;
}

.rating-card {
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.rating-number::after {
    content: ".9/5";
    font-size: 1.5rem;
}

.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.5rem;
    margin: 0 0.1rem;
}

.rating-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.rating-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.rating-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.rating-stat-number::after {
    content: "%";
}

.rating-stats .rating-stat:nth-child(2) .rating-stat-number::after {
    content: "hr";
}

.rating-stats .rating-stat:nth-child(1) .rating-stat-number {
    color: #10b981;
}

.rating-stats .rating-stat:nth-child(2) .rating-stat-number {
    color: #8b5cf6;
}

.rating-stat-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #f9fafb, #e0f2fe);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 2rem;
    color: #3b82f6;
    opacity: 0.5;
}

.review-text {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: #3b82f6;
    opacity: 0.3;
    position: absolute;
    left: -10px;
    top: -10px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.reviewer-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.reviewer-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

.review-result {
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a, #7c2d92, #3730a3);
    color: white;
}

.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-intro h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.contact-intro h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #fbbf24;
}

.contact-intro p {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-right: 1rem;
    width: 30px;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f59e0b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.contact-cta {
    text-align: center;
}

.contact-cta img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-card .btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 2rem;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #374151;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: #374151;
}

#modal-close-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#modal-close-btn:hover {
    background: #2563eb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-showcase,
    .clients-showcase,
    .reviews-showcase,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step-enhanced.reverse .step-content-enhanced,
    .process-step-enhanced.reverse .step-visual-enhanced {
        order: unset;
    }
    
    .detailed-services {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-step-enhanced {
        padding: 2rem 1rem;
    }
    
    .step-content-enhanced h3 {
        font-size: 1.5rem;
    }
    
    .ad-item {
        min-width: 200px;
    }
    
    .reviews-showcase {
        grid-template-columns: 1fr;
    }
    
    .rating-card {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .client-stories {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.6rem;
    }
    
    .process-step-enhanced {
        padding: 1.5rem 1rem;
    }
    
    .step-header-enhanced {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .mockup-data-enhanced {
        padding: 1rem;
    }
    
    .data-item-enhanced {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Additional animations for enhanced visual appeal */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.interactive-element {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Gradient backgrounds for sections */
.gradient-bg-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}