:root {
    --primary-color: #FF1493;
    --secondary-color: #4F46E5;
    --text-color: #1F2937;
    --light-text: #6B7280;
    --background: #F9FAFB;
    --white: #FFFFFF;
    --dark: #1E0B32;
    --footer-bg: linear-gradient(135deg, #1E0B32 0%, #2D1B4B 100%);
    --pink-gradient: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark);
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 32px;
}

.logo span {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 400;
}

.logo strong {
    color: var(--primary-color);
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
}

.nav-items a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
    opacity: 0.85;
}

.nav-items a:not(.whatsapp-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-items a:not(.whatsapp-button):hover::after {
    width: 100%;
}

.nav-items a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.nav-items .whatsapp-button {
    background: var(--pink-gradient);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease !important;
    height: 42px;
    line-height: 1;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.whatsapp-button i {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark);
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 10rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.arrow {
    font-size: 1.5rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    width: 200%;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    width: 50%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

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

.system-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header .system-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark);
    line-height: 1.2;
    margin: 1rem 0;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features Section */
.features {
    padding: 6rem 2rem 3rem;
    background: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--dark);
}

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

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.feature-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-card h3 i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: var(--background);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--light-text);
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.pricing-button:hover {
    background: var(--secondary-color);
}

/* Contact & FAQ Section */
.contact-faq {
    padding: 6rem 2rem;
    background: var(--white);
}

.contact-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-section .section-header,
.faq-section .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-section .section-header h2,
.faq-section .section-header h2 {
    font-size: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--pink-gradient);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.submit-button i {
    font-size: 1.1rem;
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question span {
    font-weight: 500;
    color: var(--dark);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--light-text);
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: rgba(255, 20, 147, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2.5rem;
    }

    .contact-faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-section .section-header h2,
    .faq-section .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .features,
    .pricing,
    .contact-faq {
        padding: 4rem 1rem;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .hero-content {
        padding: 6rem 1rem 6rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .contact-info {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .features {
        padding: 4rem 1rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .wave-divider svg {
        height: 60px;
    }
}

/* Footer Styles */
.footer {
    background: var(--footer-bg);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.footer-section .logo span {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 400;
}

.footer-section .logo strong {
    color: var(--white);
}

.footer-section .logo img {
    filter: brightness(0) invert(1);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

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

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-color);
}

.contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #833AB4, #FD1D1D);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

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

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-methods img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

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

    .hero-left {
        align-items: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

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

    .wave-divider svg {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-items {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-items.active {
        display: flex;
    }

    .nav-items a {
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-items a:last-child {
        border-bottom: none;
    }

    .nav-items .whatsapp-button {
        width: 100%;
        margin-top: 1rem;
    }

    .hero-content {
        padding: 6rem 1rem 6rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .contact-info {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .features {
        padding: 4rem 1rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .wave-divider svg {
        height: 60px;
    }
}

/* Courier System Section */
.courier-system {
    padding: 3rem 2rem;
    background: var(--white);
    overflow: hidden;
}

.courier-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.courier-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.courier-left h2 {
    font-size: 3rem;
    color: var(--dark);
    line-height: 1.2;
}

.courier-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.courier-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.courier-feature:hover {
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-2px);
}

.courier-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.courier-feature span {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.detail-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 1rem;
}

.detail-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.courier-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: none;
    object-fit: contain;
}

.qr-badge {
    position: absolute;
    bottom: 2rem;
    right: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.qr-badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.qr-badge span {
    font-weight: 600;
    color: var(--dark);
}

.qr-badge small {
    font-size: 0.8rem;
    color: var(--light-text);
}

@media (max-width: 1200px) {
    .courier-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .courier-left {
        align-items: center;
    }

    .courier-features {
        max-width: 600px;
        margin: 0 auto;
    }

    .courier-feature {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .courier-left h2 {
        font-size: 2.5rem;
    }

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

    .qr-badge {
        bottom: -10px;
        right: -10px;
        padding: 0.75rem;
    }
}

/* Designs Section */
.designs {
    padding: 3rem 2rem;
    background: var(--white);
    overflow: hidden;
}

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

.designs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.designs-header h2 {
    font-size: 3rem;
    color: var(--dark);
    line-height: 1.2;
    margin: 1rem 0;
}

.designs-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.design-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.design-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f8f8;
    padding: 1rem;
    transition: transform 0.3s ease;
}

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

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.design-card:hover .design-overlay {
    opacity: 1;
}

.preview-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.preview-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.preview-button i {
    font-size: 1.2rem;
}

.design-info {
    padding: 1.5rem;
    text-align: center;
}

.design-info h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.design-info p {
    color: var(--light-text);
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 768px) {
    .designs-grid {
        grid-template-columns: 1fr;
    }

    .designs-header h2 {
        font-size: 2.5rem;
    }

    .design-image {
        height: 250px;
    }
}

/* Management Section */
.management {
    padding: 6rem 2rem;
    background: var(--white);
    overflow: hidden;
}

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

.management-header {
    text-align: center;
    margin-bottom: 4rem;
}

.management-header h2 {
    font-size: 3rem;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.management-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.management-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

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

.management-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--pink-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

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

.management-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.management-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.95rem;
}

.management-card ul li i {
    color: var(--primary-color);
}

.management-preview {
    position: relative;
}

.browser-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.browser-header {
    background: #f1f5f9;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.browser-title {
    color: var(--light-text);
    font-size: 0.9rem;
}

.browser-content {
    padding: 1rem;
}

.browser-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 1200px) {
    .management-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .management-preview {
        order: -1;
    }
}

@media (max-width: 768px) {
    .management {
        padding: 4rem 1rem;
    }

    .management-header h2 {
        font-size: 2.5rem;
    }

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

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave-divider path {
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .wave-divider svg {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .wave-divider svg {
        height: 60px;
    }
}

.panel-preview-button {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

.panel-preview-button .preview-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #FF1493, #FF69B4);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.panel-preview-button .preview-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.3);
}

.panel-preview-button .preview-link i {
    font-size: 1.1em;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    visibility: visible;
    opacity: 1;
}

.scroll-top-button {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #FF1493, #FF69B4);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.scroll-top-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-items {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 999;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-items.active {
        display: flex;
    }

    .nav-items a {
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        color: var(--text-color);
    }

    .nav-items a:last-child {
        border-bottom: none;
    }

    .nav-items .whatsapp-button {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Footer Mobile Accordion */
@media (max-width: 768px) {
    .footer-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }

    .footer-section:first-child,
    .footer-section:last-child {
        border-bottom: none;
        margin-bottom: 1rem;
    }

    .footer-section h3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 1rem 0;
        margin: 0;
    }

    .footer-section:not(:first-child):not(:last-child) h3::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        transition: transform 0.3s ease;
    }

    .footer-section.active h3::after {
        transform: rotate(180deg);
    }

    .footer-links {
        display: none;
        padding-top: 0.5rem;
    }

    .footer-section.active .footer-links {
        display: flex;
    }

    /* İlk ve son bölüm (logo ve iletişim) her zaman açık */
    .footer-section:first-child .logo,
    .footer-section:first-child p,
    .footer-section:first-child .social-icons,
    .footer-section:last-child .contact-info {
        display: flex;
    }

    /* İletişim başlığında ok olmasın */
    .footer-section:last-child h3 {
        cursor: default;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: var(--white);
    margin: 50px auto;
    max-width: 800px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--footer-bg);
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.close-modal {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 30px;
}

.modal-body section {
    margin-bottom: 30px;
}

.modal-body h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.modal-body p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-body ul {
    list-style: none;
    padding-left: 20px;
}

.modal-body ul li {
    color: var(--text-color);
    margin-bottom: 10px;
    position: relative;
}

.modal-body ul li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

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

@media (max-width: 768px) {
    .modal-content {
        margin: 20px auto;
        width: 95%;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 20px;
    }
}

/* Üyelik Sistemi Stilleri */
.membership-system {
    padding: 60px 0;
    background: #fff;
}

.membership-features {
    margin-top: 40px;
    padding: 0 20px;
}

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

.feature-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    transform: scale(1.05);
}

.feature-icon img {
    width: 30px;
    height: auto;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: #fff;
}

.feature-card h3 {
    font-size: 18px;
    margin: 15px 0 10px;
    color: #2c3e50;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.membership-benefits {
    margin: 40px auto 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    max-width: 1000px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #4a5568;
    padding: 8px 0;
}

.benefits-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .membership-system {
        padding: 40px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* AI Descriptions Section */
.ai-descriptions {
    padding: 6rem 2rem;
    background: var(--white);
    overflow: hidden;
}

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

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ai-left h2 {
    font-size: 3rem;
    color: var(--dark);
    line-height: 1.2;
}

.ai-left p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
}

.ai-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ai-feature:hover {
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-2px);
}

.ai-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.ai-feature span {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.ai-right {
    position: relative;
}

.ai-preview {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.ai-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ai-card-header {
    background: var(--footer-bg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-card-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.ai-card-header span {
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
}

.ai-card-content {
    padding: 2rem;
}

.ai-typing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: typing 1s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.ai-typing p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.ai-result {
    background: rgba(255, 20, 147, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.ai-result p {
    color: var(--text-color);
    line-height: 1.6;
}

.highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.ai-actions {
    display: flex;
    gap: 1rem;
}

.ai-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-btn:first-child {
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary-color);
}

.ai-btn:last-child {
    background: var(--primary-color);
    color: var(--white);
}

.ai-btn:hover {
    transform: translateY(-2px);
}

.ai-btn:first-child:hover {
    background: rgba(255, 20, 147, 0.2);
}

.ai-btn:last-child:hover {
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

@media (max-width: 1200px) {
    .ai-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-left {
        align-items: center;
    }

    .ai-features {
        max-width: 600px;
        margin: 0 auto;
    }

    .ai-feature {
        justify-content: center;
    }

    .ai-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .ai-descriptions {
        padding: 4rem 1rem;
    }

    .ai-left h2 {
        font-size: 2.5rem;
    }

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

    .ai-actions {
        flex-direction: column;
    }
}

/* SMS Entegrasyonu Stilleri */
.sms-integration {
    margin-top: -50px;
    padding: 80px 0;
    background: #fff;
}

.sms-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.sms-feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.sms-feature-card:hover {
    transform: translateY(-5px);
}

.sms-feature-icon {
    width: 60px;
    height: 60px;
    background: #FF1493;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sms-feature-icon i {
    font-size: 24px;
    color: #fff;
}

.sms-feature-card h3 {
    margin: 0 0 15px;
    font-size: 20px;
    color: #2D3748;
}

.sms-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #718096;
}

.sms-feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.sms-feature-list li:last-child {
    margin-bottom: 0;
}

.sms-feature-list li i {
    color: #FF1493;
    margin-right: 8px;
}

.sms-partners {
    text-align: center;
    margin-top: 40px;
}

.sms-partner-logos {
    margin-bottom: 30px;
}

.sms-partner-logos img {
    height: 40px;
    margin: 0 15px;
}

.sms-preview img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}

.sms-note {
    text-align: center;
    margin-top: 20px;
    color: #718096;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sms-features {
        grid-template-columns: 1fr;
    }
    
    .sms-partner-logos img {
        margin: 10px 15px;
    }
}
