@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #374151;
    background: #faf9f6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
}

h2 {
    font-size: 3rem;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
}

h3 {
    font-size: 2rem;
}

@media (max-width: 768px) {
    h3 {
        font-size: 1.5rem;
    }
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.section {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: linear-gradient(135deg, #f472b6, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Advanced 3D Animations */
@keyframes gradientFlow {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(-20px) translateY(20px);
    }

    50% {
        transform: translateX(20px) translateY(-20px);
    }

    75% {
        transform: translateX(-20px) translateY(-20px);
    }
}

@keyframes morphFloat {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translateY(0) scale(1);
    }

    25% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
        transform: translateY(-30px) scale(1.05);
    }

    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: translateY(-60px) scale(1.1);
    }

    75% {
        border-radius: 30% 70% 60% 40% / 60% 40% 50% 50%;
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes rotateFloat {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow:
            0 0 40px rgba(99, 102, 241, 0.5),
            0 0 80px rgba(139, 92, 246, 0.3),
            2px 8px 16px rgba(0, 0, 0, 0.5);
    }

    50% {
        text-shadow:
            0 0 60px rgba(99, 102, 241, 0.8),
            0 0 100px rgba(139, 92, 246, 0.5),
            2px 8px 16px rgba(0, 0, 0, 0.5);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.5s ease-out forwards;
}

.btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-family: "Outfit", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5), inset 3px 3px 6px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 15px 15px 30px rgba(163, 177, 198, 0.6), -15px -15px 30px rgba(255, 255, 255, 0.5), inset 4px 4px 8px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #f472b6, #fb923c);
    color: white;
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5), inset 3px 3px 6px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    box-shadow: 15px 15px 30px rgba(163, 177, 198, 0.6), -15px -15px 30px rgba(255, 255, 255, 0.5), inset 4px 4px 8px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: #ffffff;
    color: #374151;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.5), inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5), inset 3px 3px 6px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.clay-card,
.testimonial-card,
.service-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5), inset 3px 3px 6px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.clay-card::before,
.testimonial-card::before,
.service-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clay-card:hover,
.testimonial-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 15px 15px 30px rgba(163, 177, 198, 0.6), -15px -15px 30px rgba(255, 255, 255, 0.5), inset 4px 4px 8px rgba(255, 255, 255, 0.3);
}

.clay-card:hover::before,
.testimonial-card:hover::before,
.service-card:hover::before {
    opacity: 1;
}

.service-card {
    text-align: center;
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.5), inset 2px 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5), inset 3px 3px 6px rgba(255, 255, 255, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
}

.icon-gradient-1 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.icon-gradient-2 {
    background: linear-gradient(135deg, #f472b6, #fb923c);
    color: white;
}

.icon-gradient-3 {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
}

.icon-gradient-4 {
    background: linear-gradient(135deg, #06b6d4, #6366f1);
    color: white;
}

.icon-gradient-5 {
    background: linear-gradient(135deg, #fbbf24, #f472b6);
    color: white;
}

.testimonial-card .rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.testimonial-card .rating i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-card .quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-card .author .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.5);
    border: 3px solid #ffffff;
}

.testimonial-card .author .info .name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-card .author .info .role {
    font-size: 1rem;
    color: #6b7280;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.5), inset 2px 2px 4px rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.feature-item .feature-content h4 {
    margin-bottom: 0.5rem;
}

.feature-item .feature-content p {
    margin-bottom: 0;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    border: none;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: inset 6px 6px 12px rgba(163, 177, 198, 0.4), inset -6px -6px 12px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5), inset 3px 3px 6px rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem;
}

.section-header .section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .section-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-header p {
        font-size: 1rem;
    }
}

.hero {
    min-height: auto;
    padding: 8rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(244, 114, 182, 0.05) 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.hero::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero::after {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}

.hero .hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
}

.hero .hero-content h1 {
    margin-bottom: 2rem;
}

.hero .hero-content h1 .highlight {
    position: relative;
    display: inline-block;
}

.hero .hero-content h1 .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #f472b6, #fb923c);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero .hero-content p.lead {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 4rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero .hero-content p.lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero .hero-content p.lead {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

.hero .hero-content .cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0;
    }

    .hero .hero-content {
        text-align: center;
    }

    .hero .hero-content .cta-buttons {
        justify-content: center;
    }
}

/* 3D Floating Elements */
.hero-3d-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #6366f1;
    box-shadow:
        0 10px 40px rgba(99, 102, 241, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.floating-element:hover {
    transform: scale(1.1);
    box-shadow:
        0 15px 50px rgba(99, 102, 241, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.floating-element-1 {
    top: 15%;
    right: 10%;
    animation: float3D 6s ease-in-out infinite;
}

.floating-element-2 {
    top: 60%;
    right: 5%;
    animation: float3D 7s ease-in-out infinite 1s;
    color: #8b5cf6;
}

.floating-element-3 {
    top: 30%;
    left: 8%;
    animation: float3D 8s ease-in-out infinite 2s;
    color: #10b981;
}

.floating-element-4 {
    bottom: 20%;
    left: 12%;
    animation: float3D 9s ease-in-out infinite 1.5s;
    color: #f472b6;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(244, 114, 182, 0.15));
    border-radius: 30% 70% 70% 30% / 30% 50% 50% 70%;
    filter: blur(40px);
}

.floating-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: morphFloat 15s ease-in-out infinite;
}

.floating-shape-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: 8%;
    animation: morphFloat 18s ease-in-out infinite 3s;
}

@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translateY(-20px) translateX(10px) rotateX(5deg) rotateY(5deg);
    }

    50% {
        transform: translateY(-40px) translateX(-10px) rotateX(-5deg) rotateY(10deg);
    }

    75% {
        transform: translateY(-20px) translateX(5px) rotateX(5deg) rotateY(-5deg);
    }
}

/* Enhanced Hero Elements */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(239, 68, 68, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    color: #dc2626;
    font-size: 0.95rem;
    box-shadow:
        0 4px 12px rgba(239, 68, 68, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.special-offer-box {
    background: linear-gradient(135deg, rgba(255, 249, 235, 0.8), rgba(254, 243, 199, 0.6));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(251, 191, 36, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.special-offer-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.special-offer-box h2 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-price {
    color: #dc2626;
    font-size: 2.2rem;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.offer-expiry {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.countdown-inline {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.2rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 3rem 0;
}

.verified-badge,
.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    color: #e0e7ff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.verified-badge:hover,
.badge-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.verified-badge i,
.badge-item i {
    font-size: 1.25rem;
    color: #6366f1;
}

.recent-activity {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-top: 2rem;
}

.recent-activity p {
    color: #cbd5e1;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.activity-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s ease-in-out infinite;
}

.time-ago {
    color: #94a3b8;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .floating-element {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .special-offer-box {
        padding: 2rem 1.5rem;
    }

    .special-offer-box h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .floating-element {
        display: none;
    }

    .floating-shape {
        opacity: 0.5;
    }
}

.services {
    background: #ffffff;
    position: relative;
}

.services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

@media (max-width: 640px) {
    .services .services-grid {
        grid-template-columns: 1fr;
    }
}

.why-choose {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(244, 114, 182, 0.03) 100%);
}

.why-choose .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .why-choose .content-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.why-choose .features-list {
    display: flex;
    flex-direction: column;
}

.why-choose .workspace-image {
    margin-top: 3rem;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5);
}

.why-choose .workspace-image .office-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
}

.why-choose .workspace-image .workspace-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.why-choose .workspace-image .workspace-badge i {
    font-size: 1.5rem;
    color: #6366f1;
}

.why-choose .workspace-image .workspace-badge span {
    font-size: 1rem;
    color: #1f2937;
}

@media (max-width: 768px) {
    .why-choose .workspace-image .workspace-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
    }

    .why-choose .workspace-image .workspace-badge i {
        font-size: 1.25rem;
    }

    .why-choose .workspace-image .workspace-badge span {
        font-size: 0.9rem;
    }
}

.why-choose .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .why-choose .stats-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.why-choose .stats-grid .stat-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 32px;
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5), inset 3px 3px 6px rgba(255, 255, 255, 0.3);
    text-align: center;
}

@media (max-width: 768px) {
    .why-choose .stats-grid .stat-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose .stats-grid .stat-card {
        padding: 1.25rem;
    }
}

.why-choose .stats-grid .stat-card .number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .why-choose .stats-grid .stat-card .number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose .stats-grid .stat-card .number {
        font-size: 2rem;
    }
}

.why-choose .stats-grid .stat-card .label {
    font-size: 1rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .why-choose .stats-grid .stat-card .label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-choose .stats-grid .stat-card .label {
        font-size: 0.875rem;
    }
}

.portfolio {
    background: #ffffff;
}

.portfolio .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

@media (max-width: 640px) {
    .portfolio .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio .portfolio-item {
    background: #faf9f6;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5), inset 3px 3px 6px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.portfolio .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 15px 15px 30px rgba(163, 177, 198, 0.6), -15px -15px 30px rgba(255, 255, 255, 0.5), inset 4px 4px 8px rgba(255, 255, 255, 0.3);
}

.portfolio .portfolio-item .portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.portfolio .portfolio-item .portfolio-info {
    padding: 2rem;
}

.portfolio .portfolio-item .portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.portfolio .portfolio-item .portfolio-info p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.portfolio .portfolio-item .portfolio-info .tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio .portfolio-item .portfolio-info .tags .tag {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

.testimonials {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.03) 0%, rgba(99, 102, 241, 0.03) 100%);
}

.testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

@media (max-width: 640px) {
    .testimonials .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.contact {
    background: #ffffff;
}

.contact .contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #faf9f6;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 15px 15px 30px rgba(163, 177, 198, 0.6), -15px -15px 30px rgba(255, 255, 255, 0.5), inset 4px 4px 8px rgba(255, 255, 255, 0.3);
}

.contact .contact-info {
    text-align: center;
    margin-bottom: 4rem;
}

.contact .contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact .contact-info p {
    color: #6b7280;
}

.footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer .footer-content {
    margin-bottom: 2rem;
}

.footer .footer-content .logo {
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer .footer-content p {
    color: #9ca3af;
}

.footer .social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: translateY(-3px);
}

.footer .copyright {
    font-size: 1rem;
    color: #6b7280;
}

/* =============================================
   DYNAMIC ISLAND HEADER
   ============================================= */

/* Header Base Styles */
.main-header {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo Styles */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo img {
    height: 100px;
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation Links - Hidden by default (hero state) */
.header-nav {
    display: flex;
    align-items: center;
    gap: 0rem;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-left {
    transform-origin: right center;
}

.nav-right {
    transform-origin: left center;
}

.nav-link {
    padding: 8px 20px;
    font-family: "Outfit", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Active nav link state */
.nav-link.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.nav-link.active::before {
    display: none;
}

/* Scrolled State - Nav links visible */
.main-header.header-scrolled {
    top: 0;
}

.main-header.header-scrolled .header-container {
    padding: 12px 30px;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.main-header.header-scrolled .header-logo img {
    height: 50px;
}

.main-header.header-scrolled .header-nav {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    gap: 0.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 11;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: calc(100% - 40px);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: #6366f1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-header {
        top: 45px;
    }

    .header-container {
        padding: 10px 16px;
        gap: 0;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .header-logo {
        order: 2;
        margin: 0 8px;
    }

    .nav-left {
        order: 1;
    }

    .nav-right {
        order: 3;
    }

    .header-logo img {
        height: 80px;
    }

    .main-header.header-scrolled .header-logo img {
        height: 45px;
    }

    /* Keep nav links on mobile too */
    .nav-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

    /* Scrolled state on mobile */
    .main-header.header-scrolled .header-container {
        padding: 10px 20px;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-header {
        top: 65px;
    }

    .header-logo img {
        height: 70px;
    }

    .main-header.header-scrolled .header-logo img {
        height: 40px;
    }

    /* Smaller nav links for very small screens */
    .nav-link {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .main-header.header-scrolled .header-container {
        gap: 1rem;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-padding-top: 100px;
}

/* =============================================
   CONVERSION OPTIMIZATION ELEMENTS
   ============================================= */

/* Conversion Banner */
.conversion-banner {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.conversion-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: white;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .conversion-banner {
        padding: 0.875rem 0;
        font-size: 0.85rem;
    }

    .conversion-banner p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

.conversion-banner strong {
    font-weight: 600;
}

.conversion-banner .banner-cta {
    color: #fbbf24;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 1rem;
    transition: 0.2s ease;
}

.conversion-banner .banner-cta:hover {
    color: white;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .trust-badges {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        gap: 0.75rem;
    }
}

.trust-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #4b5563;
}

@media (max-width: 768px) {
    .trust-badges .badge-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .trust-badges .badge-item {
        font-size: 0.75rem;
        gap: 0.35rem;
    }
}

.trust-badges .badge-item i {
    font-size: 1.25rem;
    color: #10b981;
}

@media (max-width: 480px) {
    .trust-badges .badge-item i {
        font-size: 1rem;
    }
}

/* Service CTA */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #6366f1;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-cta:hover {
    gap: 0.75rem;
    color: #8b5cf6;
}

.service-cta i {
    font-size: 0.85rem;
}

/* Guarantee Badge */
.guarantee-badge {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 16px;
    border-left: 4px solid #10b981;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        font-size: 0.9rem;
    }
}

.guarantee-badge i {
    font-size: 1.5rem;
    color: #10b981;
}

@media (max-width: 768px) {
    .guarantee-badge i {
        margin-bottom: 0.5rem;
    }
}

.guarantee-badge strong {
    color: #1f2937;
}

/* Contact Benefits */
.contact-benefits {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.contact-benefits p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.contact-benefits p:last-child {
    margin-bottom: 0;
}

.contact-benefits i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Button Icons */
.btn i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .btn {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}


/* =============================================
   GOOGLE CALL CAMPAIGN OPTIMIZATION
   ============================================= */

/* Banner Call Link */
.banner-call {
    color: #fbbf24 !important;
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.5rem;
    transition: 0.2s ease;
}

.banner-call:hover {
    color: white !important;
    text-decoration: underline;
}

.banner-divider {
    margin: 0 0.5rem;
    opacity: 0.5;
}

@media (max-width: 768px) {

    .banner-divider,
    .banner-cta {
        display: none;
    }
}

/* Call Button Styling */
.btn-call {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

/* Contact Method Cards */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        margin: 1.5rem 0;
    }
}

.contact-method-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .contact-method-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5);
}

.contact-method-card .method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method-card .method-content {
    flex: 1;
}

@media (max-width: 768px) {
    .contact-method-card .method-content {
        width: 100%;
    }
}

.contact-method-card .method-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: #1f2937;
}

@media (max-width: 768px) {
    .contact-method-card .method-content h3 {
        font-size: 1.125rem;
    }
}

.contact-method-card .method-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #6b7280;
}

.contact-method-card .phone-number {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #6366f1;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .contact-method-card .phone-number {
        font-size: 1.35rem !important;
    }
}

.contact-method-card .availability {
    font-size: 0.85rem;
    color: #10b981;
    display: block;
    margin-top: 0.25rem;
}

/* Mobile Sticky Call Button */
.mobile-call-button {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-call-button {
        display: flex;
    }
}

@media (max-width: 480px) {
    .mobile-call-button {
        bottom: 12px;
        right: 12px;
        width: 70px;
        height: 70px;
    }
}

.mobile-call-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
}

@media (max-width: 480px) {
    .mobile-call-button:hover {
        transform: scale(1.05);
    }
}

.mobile-call-button i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

@media (max-width: 480px) {
    .mobile-call-button i {
        font-size: 1.35rem;
    }
}

.mobile-call-button span {
    font-size: 0.65rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .mobile-call-button span {
        font-size: 0.6rem;
    }
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =============================================
   CALL-ONLY CONTACT SECTION (Mobile Optimized)
   ============================================= */

/* Enhanced Contact Wrapper */
.contact .contact-wrapper {
    max-width: 800px;
    padding: 3rem;
}

@media (max-width: 768px) {
    .contact .contact-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact .contact-wrapper {
        padding: 1.5rem 1rem;
    }
}

.contact .lead-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

@media (max-width: 768px) {
    .contact .lead-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact .lead-text {
        font-size: 1rem;
    }
}


/* Primary Call Card */
.primary-call {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    color: white;
    padding: 2.5rem !important;
    border: none !important;
}

@media (max-width: 768px) {
    .primary-call {
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .primary-call {
        padding: 1.5rem !important;
    }
}

.primary-call .method-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.primary-call h3 {
    color: white !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .primary-call h3 {
        font-size: 1.25rem;
    }
}

.primary-call .phone-number {
    color: white !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    margin: 1rem 0;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .primary-call .phone-number {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 480px) {
    .primary-call .phone-number {
        font-size: 1.5rem !important;
        letter-spacing: 0.5px;
    }
}

.primary-call .availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0;
    justify-content: center;
}

@media (max-width: 768px) {
    .primary-call .availability {
        font-size: 0.9rem;
    }
}

.primary-call .call-action {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 1.5rem;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .primary-call .call-action {
        font-size: 1rem;
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .primary-call .call-action {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
}


/* Contact Benefits */
.contact-benefits h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #1f2937;
}

@media (max-width: 768px) {
    .contact-benefits h4 {
        font-size: 1.125rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
}

@media (max-width: 768px) {
    .benefit-item {
        padding: 0.625rem;
    }
}

@media (max-width: 480px) {
    .benefit-item {
        padding: 0.5rem;
    }
}

.benefit-item i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .benefit-item i {
        font-size: 1.1rem;
    }
}

.benefit-item span {
    font-size: 0.95rem;
    color: #374151;
}

@media (max-width: 768px) {
    .benefit-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .benefit-item span {
        font-size: 0.85rem;
    }
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .contact {
        padding: 4rem 0 !important;
    }

    .contact-info h2 {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0 !important;
    }

    .contact-info h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
}

/* =============================================
   NEW CONVERSION ELEMENTS
   ============================================= */

/* Countdown Timer */
.countdown-timer {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    animation: glow 1.5s infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
}

.countdown-inline {
    color: #f97316;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f97316, #dc2626);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    animation: shake 3s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px);
    }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Special Offer Box */
.special-offer-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border: 2px solid #fbbf24;
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.special-offer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.special-offer-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

@media (max-width: 768px) {
    .special-offer-box h3 {
        font-size: 1.5rem;
    }
}

.highlight-price {
    color: #dc2626;
    font-size: 2rem;
    font-weight: 800;
}

.offer-expiry {
    font-size: 1rem;
    color: #4b5563;
    margin: 0;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 10px 10px 20px rgba(37, 211, 102, 0.3), -10px -10px 20px rgba(255, 255, 255, 0.5);
}

.btn-whatsapp:hover {
    box-shadow: 15px 15px 30px rgba(37, 211, 102, 0.4), -15px -15px 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Larger Button Variant */
.btn-large {
    padding: 1.75rem 3.5rem;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .btn-large {
        padding: 1.5rem 2.5rem;
        font-size: 1.125rem;
    }
}

/* Recent Activity */
.recent-activity {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid #10b981;
    border-radius: 8px;
    font-size: 0.95rem;
}

.recent-activity p {
    margin: 0;
    color: #4b5563;
}

.activity-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: blink 1s infinite;
}

.time-ago {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* =============================================
   SPECIAL OFFERS SECTION
   ============================================= */

.special-offers {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(249, 115, 22, 0.05));
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

.offer-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 15px 15px 30px rgba(163, 177, 198, 0.6), -15px -15px 30px rgba(255, 255, 255, 0.5);
}

.offer-card.featured {
    border: 3px solid #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.03), rgba(249, 115, 22, 0.03));
}

.offer-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #dc2626, #f97316);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.6), -6px -6px 12px rgba(255, 255, 255, 0.5);
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.price-box {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 16px;
}

/* Mystery Pricing Box - Replaces visible prices */
.price-mystery {
    margin: 1.5rem 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(249, 115, 22, 0.15));
    border: 2px dashed #fbbf24;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-mystery::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.mystery-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

.mystery-icon i {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.mystery-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.call-for-price {
    font-size: 1rem;
    color: #6366f1;
    font-weight: 600;
    margin: 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #f97316);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.offer-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #4b5563;
}

.offer-features i {
    color: #10b981;
    font-size: 1.125rem;
}

.offer-cta {
    display: inline-block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 24px;
    font-family: "Outfit", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offer-cta.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.offer-cta.btn-secondary {
    background: linear-gradient(135deg, #f472b6, #fb923c);
    color: white;
}

.offer-cta.btn-outline {
    background: #ffffff;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.offer-timer {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #dc2626;
    font-weight: 600;
}

/* Call Now Banner */
.call-now-banner {
    text-align: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 3rem;
    border-radius: 32px;
    color: white;
    box-shadow: 15px 15px 30px rgba(99, 102, 241, 0.3), -15px -15px 30px rgba(255, 255, 255, 0.5);
}

.call-now-banner h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

@media (max-width: 768px) {
    .call-now-banner h3 {
        font-size: 1.5rem;
    }
}

.urgent-cta {
    animation: pulse-urgent 1.5s infinite;
    font-size: 1.35rem !important;
}

@keyframes pulse-urgent {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float-button {
    position: fixed;
    bottom: 90px;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    text-decoration: none;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .whatsapp-float-button {
        display: flex;
    }
}

.whatsapp-float-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* WhatsApp Card */
.whatsapp-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(18, 140, 126, 0.05)) !important;
    border: 2px solid #25D366 !important;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Trusted By Section - Infinite Marquee */
.trusted-by {
    background: #ffffff;
    overflow: hidden;
}

.tech-marquee {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.tech-marquee::before,
.tech-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.tech-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.tech-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    padding-bottom: 1rem;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 120px;
    padding: 1.5rem;
    background: #faf9f6;
    border-radius: 20px;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.tech-logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.5), -10px -10px 20px rgba(255, 255, 255, 0.5);
}

.tech-logo-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-logo-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .tech-logo-item {
        min-width: 100px;
        padding: 1.25rem;
    }

    .tech-logo-item i {
        font-size: 2.5rem;
    }

    .tech-logo-item span {
        font-size: 0.85rem;
    }

    .marquee-content {
        gap: 2rem;
        animation: marquee 20s linear infinite;
    }

    .tech-marquee::before,
    .tech-marquee::after {
        width: 80px;
    }
}

/* Certifications Section */
.certifications {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.certifications .certifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .certifications .certifications-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.certifications .badges-image {
    max-width: 100%;
    border-radius: 32px;
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.certifications .badges-image:hover {
    transform: scale(1.02);
    box-shadow: 15px 15px 30px rgba(163, 177, 198, 0.6), -15px -15px 30px rgba(255, 255, 255, 0.5);
}

.certifications .cert-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.certifications .cert-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.certifications .cert-item:hover {
    transform: translateX(10px);
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.5), -10px -10px 20px rgba(255, 255, 255, 0.5);
}

.certifications .cert-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 0.25rem;
}

.certifications .cert-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.certifications .cert-item p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .certifications .cert-item {
        padding: 1.25rem;
    }

    .certifications .cert-item h4 {
        font-size: 1.1rem;
    }

    .certifications .cert-item p {
        font-size: 0.95rem;
    }
}

/* Footer Logo */
.footer .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.footer .logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}