* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Styles - Same as Image Size */
.navbar-header {
    background: #fff;
    border-radius: 60px;
    padding: 18px 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    max-width: 1400px;
    margin: 20px auto;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

/* Hide navbar when scrolled past hero section */
.navbar-header.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-100%);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 20px;
}

.nav-center img {
    height: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.logo-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.logo-link:hover::before {
    left: 100%;
}

.logo-link:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.creative-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.icon-s {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #333333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.icon-dots {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffd93d;
    animation: blink 1.5s infinite;
}

.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 0.3s; }
.dot-3 { animation-delay: 0.6s; }

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    margin-bottom: 1px;
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-link:hover .logo-brand {
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-link:hover .logo-tagline {
    color: rgba(255, 255, 255, 0.9);
}

.logo-link:hover .logo-icon {
    transform: rotate(360deg);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.navbar-header a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 28px;
    transition: all 0.3s ease;
}

.navbar-header a:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #000;
    padding: 8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 22px;
    background: #fff;
    margin-top: 25px;
    padding: 25px;
    border-radius: 35px;
    box-shadow: 0 12px 22px rgba(0,0,0,0.15);
}

.mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 10px;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Mobile Navbar - Smaller & More Round */
@media (max-width: 768px) {
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .menu-icon {
        display: block;
        font-size: 20px;
        padding: 5px;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .navbar-header {
        width: calc(100% - 30px);
        margin: 8px auto;
        max-width: 90%;
        padding: 10px 20px;
        border-radius: 40px;
    }
    
    .nav-center img {
        height: 10px;
    }
    
    .logo-link {
        padding: 8px 15px;
        border-radius: 15px;
    }
    
    .creative-logo {
        gap: 8px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .icon-s {
        font-size: 14px;
    }
    
    .logo-brand {
        font-size: 13px;
        font-weight: 700;
    }
    
    .logo-tagline {
        font-size: 7px;
        letter-spacing: 1px;
    }
    
    .dot {
        width: 3px;
        height: 3px;
    }
    
    .mobile-menu {
        margin-top: 18px;
        padding: 18px;
        border-radius: 28px;
        gap: 16px;
    }
    
    .mobile-menu a {
        padding: 10px 0;
        font-size: 15px;
    }
}

/* Hero Section */
.hero {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hero .container {
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

/* Main Image - Normal Big Size */
.hero-image-wrapper {
    width: 100%;
    max-width: 620px;
    margin-bottom: 1px;
    position: relative;
    margin-top: -20px;
}

.hero-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    filter: none;
    mix-blend-mode: normal;
}

/* Trusted Section */
.trusted-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.trusted-profiles {
    display: flex;
    align-items: center;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    margin-left: -10px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-image:first-child {
    margin-left: 0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trusted-text {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-left: 10px;
}

.trusted-text .highlight {
    color: #4285f4;
    font-weight: 700;
}

/* Company Logos Section - 2 Lines, Full Width, 40 Names */
.company-logos {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.logo-scroll {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 20px;
    white-space: nowrap;
}

.logo-scroll-1 {
    animation: scrollRight 15s linear infinite;
}

.logo-scroll-2 {
    animation: scrollLeft 18s linear infinite;
    margin-bottom: 0;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 220px;
    padding: 0 15px;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-item span {
    font-size: 32px;
    font-weight: 600;
    color: #555;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.logo-item:hover span {
    color: #333;
    font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .company-logos {
        padding: 30px 0;
    }
    
    .logo-scroll {
        gap: 40px;
        margin-bottom: 15px;
    }
    
    .logo-scroll-1 {
        animation: scrollRight 12s linear infinite;
    }
    
    .logo-scroll-2 {
        animation: scrollLeft 15s linear infinite;
    }
    
    .logo-item {
        min-width: 180px;
        padding: 0 12px;
    }
    
    .logo-item span {
        font-size: 26px;
    }
}

/* Trusted by Section */
.trusted-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.trusted-profiles {
    display: flex;
    align-items: center;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-left: -10px;
}

.profile-image:first-child {
    margin-left: 0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trusted-text {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-left: 10px;
}

.trusted-text .highlight {
    color: #2563eb;
    font-weight: 700;
}

/* Main Title */
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-explore {
    background: #000000;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-explore:hover {
    background: #333333;
    transform: translateY(-2px);
}

.btn-contact {
    background: transparent;
    color: #000000;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Social Sidebar */
.social-sidebar {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-icon {
    background: #25D366;
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 140px 20px 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn-explore,
    .btn-contact {
        width: 100%;
        max-width: 300px;
    }
    
    .social-sidebar {
        display: none;
    }
}

/* Social Presence Section */
.social-presence-section {
    padding: 80px 20px;
    background: #ffffff;
}

.social-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.social-header {
    margin-bottom: 60px;
}

.social-label {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.social-profiles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-profile-card {
    width: 200px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: floatAnimation 3s ease-in-out infinite;
}

.social-profile-card:nth-child(1) {
    animation-delay: 0s;
}

.social-profile-card:nth-child(2) {
    animation-delay: 1s;
}

.social-profile-card:nth-child(3) {
    animation-delay: 2s;
}

.social-profile-card.main-profile {
    width: 250px;
    height: 350px;
    transform: scale(1.1);
    animation: mainFloatAnimation 4s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateX(-10px) rotate(-1deg);
    }
    50% {
        transform: translateX(15px) rotate(0deg);
    }
    75% {
        transform: translateX(-5px) rotate(1deg);
    }
}

@keyframes mainFloatAnimation {
    0%, 100% {
        transform: scale(1.1) translateX(0px) rotate(0deg);
    }
    25% {
        transform: scale(1.1) translateX(-15px) rotate(-1deg);
    }
    50% {
        transform: scale(1.1) translateX(20px) rotate(0deg);
    }
    75% {
        transform: scale(1.1) translateX(-10px) rotate(1deg);
    }
}

.social-profile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-profile-card:hover {
    transform: translateX(-10px);
    animation-play-state: paused;
}

.social-profile-card.main-profile:hover {
    transform: scale(1.1) translateX(-10px);
    animation-play-state: paused;
}

.social-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: #333;
    transform: scale(1.2);
}

.dot:hover {
    background: #666;
}

/* Mobile Responsive for Social Presence */
@media (max-width: 768px) {
    .social-presence-section {
        padding: 60px 20px;
    }
    
    .social-title {
        font-size: 2.2rem;
    }
    
    .social-profiles {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-profile-card {
        width: 180px;
        height: 250px;
    }
    
    .social-profile-card.main-profile {
        width: 200px;
        height: 280px;
        transform: scale(1);
    }
    
    .social-profile-card.main-profile:hover {
        transform: translateY(-10px);
    }
}

/* Client Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-label {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    aspect-ratio: 3/5;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 20px;
}

.testimonial-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover .video-overlay {
    opacity: 0;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.play-btn:hover {
    transform: scale(1.1);
    background: #ffffff;
}

.testimonial-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    text-align: left;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    border-radius: 0 0 20px 20px;
}

.client-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.client-title {
    font-size: 0.7rem;
    color: #cccccc;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }
    
    .testimonial-video {
        height: 100%;
    }
    
    .testimonial-info {
        padding: 12px;
    }
    
    .client-name {
        font-size: 0.8rem;
    }
    
    .client-title {
        font-size: 0.6rem;
    }
}

/* Scrolling Text Banner */
.scrolling-banner {
    background: #000000;
    color: #ffffff;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.banner-scroll {
    display: flex;
    width: 100%;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scrollBanner 25s linear infinite;
    white-space: nowrap;
}

.banner-text span {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    flex-shrink: 0;
}

.banner-text span:nth-child(even) {
    color: #cccccc;
    font-size: 1.5rem;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive for Banner */
@media (max-width: 768px) {
    .scrolling-banner {
        padding: 15px 0;
    }
    
    .banner-text span {
        font-size: 1.5rem;
    }
    
    .banner-text span:nth-child(even) {
        font-size: 1.2rem;
    }
    
    .banner-text {
        gap: 30px;
        animation: scrollBanner 20s linear infinite;
    }
}

/* Products Showcase Section */
.products-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-label {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

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

.product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    text-align: left;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsive for Products */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 20px;
    }
    
    .products-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-label {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 280px;
    height: 170px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.feature-content {
    text-align: center;
    flex: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Features */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px;
    }
    
    .features-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 22px;
    }
    
    .feature-image {
        width: 100%;
        height: 160px;
    }
}

/* Contact Page Styles */
.contact-section {
    min-height: 100vh;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-logo {
    margin-bottom: 30px;
}

.creative-logo.large .logo-icon {
    width: 60px;
    height: 60px;
}

.creative-logo.large .icon-s {
    font-size: 28px;
}

.creative-logo.large .logo-brand {
    font-size: 24px;
}

.creative-logo.large .logo-tagline {
    font-size: 12px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.form-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.info-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Active nav link */
.navbar-header a.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 100px 15px 60px;
    }
    
    .contact-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 50px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .form-header p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .submit-btn {
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 10px;
        width: 100%;
        margin-top: 15px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .info-card {
        padding: 20px;
        border-radius: 12px;
        text-align: center;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 15px;
    }
    
    .info-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .info-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .creative-logo.large .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .creative-logo.large .icon-s {
        font-size: 20px;
    }
    
    .creative-logo.large .logo-brand {
        font-size: 18px;
    }
    
    .creative-logo.large .logo-tagline {
        font-size: 9px;
    }
}
/* About Page Styles */
.about-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-hero-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-logo {
    margin-bottom: 40px;
}

.creative-logo.extra-large .logo-icon {
    width: 80px;
    height: 80px;
}

.creative-logo.extra-large .icon-s {
    font-size: 36px;
}

.creative-logo.extra-large .logo-brand {
    font-size: 32px;
    color: white;
}

.creative-logo.extra-large .logo-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.about-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.about-subtitle {
    font-size: 1.3rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* About Story Section */
.about-story {
    padding: 100px 20px;
    background: white;
}

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

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

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.story-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.highlight-text p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.story-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-content {
    width: 80%;
    height: 80%;
}

.code-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.code-line {
    height: 8px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

.code-line.short {
    width: 60%;
}

.code-line.medium {
    width: 80%;
}

.code-line:nth-child(odd) {
    animation-delay: 0.5s;
}

/* About Services Section */
.about-services {
    padding: 100px 20px;
    background: #f8fafc;
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.services-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Team Section */
.about-team {
    padding: 100px 20px;
    background: white;
}

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

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.team-header p {
    font-size: 1.1rem;
    color: #64748b;
}

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

.team-member {
    width: 100%;
    max-width: 350px;
}

.member-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.member-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.member-info-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.member-card:hover .member-info-overlay {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.member-info-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.member-info-overlay p {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.member-role {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* About CTA Section */
.about-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 15px 60px;
    }
    
    .about-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .about-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text {
        order: 2;
    }
    
    .story-image {
        order: 1;
    }
    
    .story-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .story-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 300px;
        height: 200px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-member {
        max-width: 100%;
    }
    
    .member-card {
        height: 350px;
    }
    
    .member-info-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 18px;
    }
    
    .member-info-overlay h3 {
        font-size: 1.2rem;
    }
    
    .member-info-overlay p {
        font-size: 0.9rem;
    }
    
    .avatar-placeholder {
        font-size: 3rem;
    }
    
    .services-header h2,
    .team-header h2,
    .cta-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .services-header p,
    .team-header p {
        font-size: 1rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .creative-logo.extra-large .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .creative-logo.extra-large .icon-s {
        font-size: 24px;
    }
    
    .creative-logo.extra-large .logo-brand {
        font-size: 20px;
    }
}
/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: #f8fafc;
}

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

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    flex: 1;
    margin-right: 20px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #764ba2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding-top: 10px;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-header {
        position: static;
        text-align: center;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span {
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}
/* New Logo Design for About Page */
.new-logo-design {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.logo-circle {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    animation: logoFloat 4s ease-in-out infinite;
}

.logo-inner {
    position: relative;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-letter {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.logo-orbit {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: orbitRotate 8s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.orbit-dot.dot-1 {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    animation: dotPulse 2s ease-in-out infinite;
}

.orbit-dot.dot-2 {
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
    animation: dotPulse 2s ease-in-out infinite 0.5s;
}

.orbit-dot.dot-3 {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    animation: dotPulse 2s ease-in-out infinite 1s;
}

.orbit-dot.dot-4 {
    top: 50%;
    left: -4px;
    transform: translateY(-50%);
    animation: dotPulse 2s ease-in-out infinite 1.5s;
}

.logo-text-new {
    text-align: center;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes orbitRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* Mobile Responsive for New Logo */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 15px 60px;
        min-height: 90vh;
    }
    
    .logo-circle {
        width: 90px;
        height: 90px;
    }
    
    .logo-inner {
        width: 68px;
        height: 68px;
    }
    
    .logo-letter {
        font-size: 2rem;
    }
    
    .logo-orbit {
        width: 110px;
        height: 110px;
    }
    
    .brand-name {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .brand-tagline {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .about-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .about-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
        margin-top: 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}
/* New CTA Section - White Design */
.about-cta-new {
    padding: 120px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-container-new {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(240, 147, 251, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-new {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-header-new {
    margin-bottom: 60px;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.cta-subtitle-new {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats-new {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-item-new {
    text-align: center;
}

.stat-number-new {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

.stat-label-new {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons-new {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn-new:hover::before {
    left: 100%;
}

.cta-btn-new.primary-new {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-btn-new.primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-btn-new.secondary-new {
    background: white;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cta-btn-new.secondary-new:hover {
    transform: translateY(-3px);
    border-color: #667eea;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cta-btn-new:hover .btn-icon {
    transform: translateX(5px);
}

.cta-features-new {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #f8fafc;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item-new:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feature-icon-new {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-item-new span {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

/* Mobile Responsive for New CTA */
@media (max-width: 768px) {
    .about-cta-new {
        padding: 80px 15px;
    }
    
    .cta-header-new {
        margin-bottom: 40px;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .cta-title-new {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .cta-subtitle-new {
        font-size: 1rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .cta-stats-new {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        margin-bottom: 35px;
        padding: 30px 0;
    }
    
    .stat-number-new {
        font-size: 2rem;
    }
    
    .stat-label-new {
        font-size: 0.85rem;
    }
    
    .cta-buttons-new {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .cta-btn-new {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .cta-features-new {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature-item-new {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .feature-icon-new {
        width: 35px;
        height: 35px;
    }
    
    .feature-item-new span {
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .creative-logo {
    justify-content: flex-start;
}

.footer-logo .logo-brand,
.footer-logo .logo-tagline {
    color: white;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Mobile Responsive for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo .creative-logo {
        justify-content: center;
    }
    
    .footer-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .contact-item {
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
}
/* Custom Development Page Styles - Enhanced with Black Text */

/* Hero Section - Enhanced */
.custom-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 30%, #ffffff 70%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    color: #1e293b;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroParticles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="5" cy="15" r="0.5" fill="%23764ba2" opacity="0.05"><animate attributeName="opacity" values="0.05;0.2;0.05" dur="4s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23heroParticles)"/></svg>');
    pointer-events: none;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.custom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.custom-hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-custom {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeGlow 3s infinite;
}

@keyframes badgeGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.badge-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

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

.custom-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.custom-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #475569;
}

.hero-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1e293b;
    padding: 12px 16px;
    border-radius: 25px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    background: #f8fafc;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    font-size: 1.2rem;
}

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

.stat-custom {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-custom:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.stat-number-custom {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    color: #667eea;
}

.stat-label-custom {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-buttons-custom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary-custom,
.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnGlow 2s infinite;
}

@keyframes btnGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-secondary-custom {
    background: white;
    color: #667eea;
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.btn-secondary-custom:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Hero Visual - Enhanced */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-showcase {
    position: relative;
    width: 500px;
    height: 400px;
}

.showcase-browser {
    width: 400px;
    height: 300px;
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.browser-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.browser-url {
    background: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.browser-content {
    padding: 20px;
    height: calc(100% - 60px);
    background: white;
}

.website-preview {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e2e8f0;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.preview-logo {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.preview-nav {
    display: flex;
    gap: 8px;
}

.preview-nav span {
    width: 40px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 2px;
}

.preview-hero {
    margin-bottom: 15px;
}

.preview-title {
    width: 80%;
    height: 8px;
    background: #94a3b8;
    border-radius: 4px;
    margin-bottom: 8px;
}

.preview-subtitle {
    width: 60%;
    height: 4px;
    background: #cbd5e1;
    border-radius: 2px;
    margin-bottom: 12px;
}

.preview-buttons {
    display: flex;
    gap: 8px;
}

.preview-btn {
    width: 60px;
    height: 20px;
    border-radius: 10px;
}

.preview-btn.primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.preview-btn.secondary {
    background: white;
    border: 1px solid #e2e8f0;
}

.preview-features {
    display: flex;
    gap: 8px;
}

.feature-box {
    flex: 1;
    height: 40px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    background: white;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    padding: 15px;
    animation: floatElement 8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

.code-element {
    top: 20px;
    left: -50px;
    width: 140px;
    animation-delay: 0s;
}

.design-element {
    top: 60px;
    right: -60px;
    width: 150px;
    animation-delay: 2s;
}

.mobile-element {
    bottom: 40px;
    left: -40px;
    width: 120px;
    animation-delay: 4s;
    text-align: center;
}

.speed-element {
    bottom: 20px;
    right: -50px;
    width: 130px;
    animation-delay: 6s;
    text-align: center;
}

.element-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
}

.element-icon {
    font-size: 1.2rem;
}

.mobile-frame {
    width: 60px;
    height: 100px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    margin: 0 auto 10px;
    padding: 8px;
}

.mobile-screen-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 6px;
    padding: 6px;
    border: 1px solid #e2e8f0;
}

.mobile-bar {
    width: 100%;
    height: 6px;
    background: #94a3b8;
    border-radius: 3px;
    margin-bottom: 8px;
}

.mobile-content-area {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-line {
    height: 3px;
    background: #cbd5e1;
    border-radius: 2px;
}

.mobile-line.short {
    width: 60%;
}

.element-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
}

.speed-meter {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 10px;
}

.speed-arc {
    width: 100%;
    height: 100%;
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    border-top-color: #667eea;
    animation: spin 2s linear infinite;
}

.speed-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 25px;
    background: #ef4444;
    transform-origin: bottom;
    transform: translate(-50%, -100%) rotate(45deg);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(5px) rotate(-1deg); }
    75% { transform: translateY(-5px) rotate(0.5deg); }
}

/* Section Styles */
.section-header-custom {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-custom {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.highlight-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-custom {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Choose Custom Section - Enhanced */
.why-custom-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.why-custom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="benefitsPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23benefitsPattern)"/></svg>');
    pointer-events: none;
}

.why-custom-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.benefit-card.premium {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.benefit-card.premium:hover::before {
    opacity: 0.05;
}

.benefit-card.premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.benefit-card.premium:hover .icon-bg {
    opacity: 0.2;
    transform: rotate(10deg) scale(1.1);
}

.icon-emoji {
    font-size: 3rem;
    z-index: 1;
    animation: iconBounce 3s ease-in-out infinite;
}

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

.benefit-card.premium h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.benefit-card.premium p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

.benefit-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-section {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.comparison-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-item {
    background: #f8fafc;
    padding: 30px 25px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.comparison-item:first-child {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.comparison-item:last-child {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2, #fef2f2);
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.comparison-header.custom {
    color: #10b981;
}

.comparison-header.template {
    color: #ef4444;
}

.comparison-icon {
    font-size: 2rem;
}

.comparison-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.comparison-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Pricing Section - Enhanced with Black Text */
.pricing-section-custom {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    position: relative;
}

.pricing-section-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricingPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23667eea" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23pricingPattern)"/></svg>');
    pointer-events: none;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header-custom {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.section-title-custom {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.highlight-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-custom {
    font-size: 1.2rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: #667eea;
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
}

.pricing-card.popular {
    border-color: #667eea;
    transform: scale(1.05);
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pricing-header {
    margin-bottom: 35px;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.pricing-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.8rem;
    font-weight: 600;
    color: #667eea;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
    margin: 0 5px;
}

.period {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.price-description {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 15px;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature.premium {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature.premium:hover {
    background: #f1f5f9;
    border-color: #667eea;
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
    color: #10b981;
    flex-shrink: 0;
}

.feature.premium span {
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 500;
}

.delivery-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8fafc;
    padding: 12px 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.time-icon {
    font-size: 1.1rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.popular-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.popular-btn:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.pricing-guarantee {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3rem;
    color: #10b981;
}

.guarantee-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.guarantee-text p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    padding: 100px 20px;
    background: white;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 20px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 10px;
}

.step-duration {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
}

/* Portfolio Section */
.portfolio-section-custom {
    padding: 100px 20px;
    background: #f8fafc;
}

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

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

.portfolio-item-custom {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-item-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image-custom {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item-custom:hover .portfolio-image-custom img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item-custom:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.portfolio-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section-custom {
    padding: 100px 20px;
    background: white;
}

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

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

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

.pricing-card.popular {
    border-color: #667eea;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
}

.price-description {
    color: #64748b;
    font-size: 0.95rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.feature svg {
    color: #667eea;
    flex-shrink: 0;
}

.feature span {
    color: #64748b;
    font-size: 0.95rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* CTA Section */
.cta-section-custom {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-container-custom {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-custom h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.cta-content-custom p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons-custom {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-hero {
        padding: 100px 15px 60px;
    }
    
    .custom-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .custom-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .custom-hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats-custom {
        justify-content: center;
        gap: 25px;
    }
    
    .stat-number-custom {
        font-size: 2rem;
    }
    
    .hero-buttons-custom {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .floating-elements {
        width: 300px;
        height: 300px;
        transform: scale(0.8);
    }
    
    .section-title-custom {
        font-size: 2rem;
    }
    
    .section-subtitle-custom {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .portfolio-grid-custom {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .cta-content-custom h2 {
        font-size: 1.8rem;
    }
    
    .cta-content-custom p {
        font-size: 1rem;
    }
    
    .cta-buttons-custom {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .custom-hero {
        padding: 80px 10px 50px;
    }
    
    .custom-hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats-custom {
        flex-direction: column;
        gap: 20px;
    }
    
    .floating-elements {
        transform: scale(0.6);
    }
    
    .section-title-custom {
        font-size: 1.6rem;
    }
    
    .benefit-card,
    .process-step {
        padding: 25px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}

/* ===== NEW BENEFITS SECTION STYLES ===== */
.benefits-section-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.benefits-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 20px;
}

.gradient-text-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card-new {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.benefit-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-card-new.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.benefit-visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.benefit-icon-new {
    position: relative;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.benefit-stats {
    text-align: right;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.benefit-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.benefit-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ROI Section */
.roi-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 80px;
    color: white;
    text-align: center;
}

.roi-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.roi-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.roi-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.roi-stat {
    text-align: center;
}

.roi-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.roi-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Comparison Section - New Design */
.comparison-section-new {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.comparison-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.comparison-table {
    display: grid;
    gap: 2px;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
}

.comparison-cell {
    background: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-row .comparison-cell {
    background: #1e293b;
    color: white;
    font-weight: 600;
    justify-content: center;
}

.feature-cell {
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc !important;
}

.custom-cell {
    background: #f0fdf4 !important;
}

.template-cell {
    background: #fef2f2 !important;
}

.cell-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cell-icon {
    font-size: 1.2rem;
}

.check-icon {
    color: #16a34a;
    font-size: 1.2rem;
}

.cross-icon {
    color: #dc2626;
    font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .benefits-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card-new.featured {
        transform: none;
    }
    
    .roi-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .roi-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .comparison-section-new {
        padding: 30px 20px;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        padding: 15px;
        justify-content: flex-start;
    }
    
    .header-row {
        display: none;
    }
    
    .feature-cell {
        background: #1e293b !important;
        color: white;
        font-weight: 600;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .benefits-section-new {
        padding: 60px 0;
    }
    
    .benefits-container-new {
        padding: 0 15px;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefit-card-new {
        padding: 30px 20px;
    }
    
    .roi-section {
        padding: 30px 20px;
    }
    
    .roi-stats {
        flex-direction: column;
        gap: 20px;
    }
}
/* Feature Card Link Styles */
a.feature-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

a.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

a.feature-card:hover .feature-title {
    color: #667eea;
}
/* ===== CONTACT FORM SUCCESS/ERROR MESSAGES ===== */
.form-success, .form-error {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    margin-top: 20px;
    animation: slideIn 0.5s ease;
}

.form-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.form-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.success-icon, .error-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.form-success h3, .form-error h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-success p, .form-error p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button Loading State */
.submit-btn {
    position: relative;
    overflow: hidden;
}

.btn-loading {
    display: none;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Form Field Validation Styles */
input:invalid, select:invalid, textarea:invalid {
    border-color: #ef4444 !important;
}

input:valid, select:valid, textarea:valid {
    border-color: #10b981 !important;
}

/* Enhanced Form Styling */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Mobile Responsiveness for Messages */
@media (max-width: 768px) {
    .form-success, .form-error {
        padding: 30px 20px;
        margin-top: 15px;
    }
    
    .success-icon, .error-icon {
        font-size: 2.5rem;
    }
    
    .form-success h3, .form-error h3 {
        font-size: 1.3rem;
    }
}
/* ===== HERO TEXT STYLES ===== */
.hero-text {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-text {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}
/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb {
    background: #f8fafc;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin: 0 10px;
    color: #64748b;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #64748b;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 10px 0;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 8px;
    }
}
/* ===== ALTERNATIVE CONTACT METHODS ===== */
.alternative-contact {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px dashed #667eea;
    text-align: center;
}

.alternative-contact h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.direct-contact-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.direct-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.email-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.call-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

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

/* Enhanced Form Validation */
input:focus:valid, select:focus:valid, textarea:focus:valid {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

input:focus:invalid, select:focus:invalid, textarea:focus:invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .alternative-contact {
        margin-top: 30px;
        padding: 20px;
    }
    
    .direct-contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .direct-contact-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
/* ===== SUCCESS NOTIFICATION STYLES ===== */
.success-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInScale 0.5s ease;
    max-width: 90vw;
    width: 500px;
}

.notification-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}

.notification-content .success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

.notification-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.notification-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    opacity: 0.9;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

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

/* Enhanced Form Styles */
.contact-form {
    position: relative;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Loading Animation */
.submit-btn .btn-loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Auto-save Indicator */
.form-autosave {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 0.8rem;
    color: #10b981;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-autosave.show {
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .success-notification {
        width: 95vw;
        margin: 20px;
    }
    
    .notification-content {
        padding: 30px 20px;
    }
    
    .notification-content .success-icon {
        font-size: 3rem;
    }
    
    .notification-content h3 {
        font-size: 1.5rem;
    }
}