:root {
    --primary-color: #dc2626;    /* Kırmızı */
    --secondary-color: #6b7280;  /* Füme */
    --text-color: #1f2937;       /* Koyu gri */
    --light-bg: #f9fafb;         /* Açık gri */
    --white: #FFFFFF;            /* Beyaz */
    --black: #111827;            /* Siyah */
    --accent-color: #374151;     /* Koyu füme */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

header {
    padding: 1rem 5%;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Specific styles for bayi and patron pages */
.bayi-page header,
.patron-page header {
    background: var(--secondary-color);
    margin-bottom: 1rem;
}

.bayi-page .logo,
.patron-page .logo {
    color: var(--white);
}

/* Original nav styles for index page */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
}

.btn-login {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    background: #fff;
    padding: 2rem 5%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #222;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #555;
}

.hero-image {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-photo, .features-photo, .pricing-photo, .contact-photo {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-photo:hover, .features-photo:hover, .pricing-photo:hover, .contact-photo:hover {
    transform: scale(1.05);
}

.hero-icon {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    background: #fff;
    padding-top: 2rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    display: none;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-color);
    opacity: 0.8;
}

.features-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.features-content .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.features-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.top-bar {
    background: #fff;
    color: #333;
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
}

.top-bar .contact-info {
    color: #333;
}

.top-bar .contact-info span {
    color: #333;
    margin-right: 1rem;
    opacity: 0.9;
}

/* Remove testimonials related styles */
.testimonials,
.testimonial-grid,
.testimonial-card,
.quote-icon {
    display: none;
}

.pricing {
    padding: 4rem 5%;
    background: #fff;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
    align-items: stretch;
    justify-content: center;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 650px;
}

.pricing-card .features-list {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.paytr-btn {
    margin-top: auto;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.paytr-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 26, 26, 0.4);
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    margin: 0.8rem 0;
}

.pricing-card li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 5%;
    background: #1a1a1a;
    color: var(--white);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1rem 5%;
    background: #1a1a1a;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
    display: none;
}

.copyright {
    text-align: center;
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0.7;
}

.btn-franchise {
    background: #1a1a1a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-left: 1rem;
}

.business-types {
    padding: 4rem 5%;
    background: #fff;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.business-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.business-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.business-card img {
    display: none;
}

.business-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Remove these classes */
.partnership,
.partnership-content,
.partnership-info,
.partnership-benefits,
.partnership .btn-primary,
.partnership .section-title i {
    display: none;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.section-title i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

#ozellikler .section-title {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.package-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.special-offer {
    position: relative;
    border: 2px solid var(--primary-color);
    padding: 3rem 2rem !important;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
}

.installment {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.features-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    min-height: 320px; /* Add fixed height for consistent alignment */
}

.features-list ul {
    list-style: none;
    text-align: left;
    flex: 1;
    max-width: 250px;
    padding-left: 2rem;
}

.features-list li {
    padding-left: 1rem;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    width: 16px;
    flex-shrink: 0;
    font-size: 0.5rem; /* Make dots smaller */
}

.features-list.single-column {
    flex-direction: column;
    justify-content: center;
}

.features-list.single-column ul {
    max-width: 280px;
    margin: 0 auto;
    padding-left: 2rem;
}

.features-list.single-column li {
    padding-left: 1rem;
}

.coming-soon {
    position: relative;
    opacity: 0.85;
}

.soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.coming-soon i,
.coming-soon h3 {
    opacity: 0.8;
}

.plus-plan {
    border: 2px solid var(--secondary-color);
}

.plus-plan .offer-badge {
    background: var(--secondary-color);
}

.plus-plan .package-icon {
    color: var(--secondary-color);
}

.simple-footer {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    padding: 0 5%;
}

.simple-footer .copyright {
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

.patron-main, .bayi-main {
    min-height: calc(100vh - 120px);
    background: #fff;
    padding: 1rem 5%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Solutions Overview */
.solutions-overview {
    padding: 5rem 0;
    background: #fff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--white);
}

.solution-card:hover .solution-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.solution-link:hover {
    border-bottom-color: var(--primary-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Integration Section */
.integrations {
    padding: 5rem 0;
    background: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integration-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-5px);
}

.integration-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.integration-item span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    text-align: left;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-photo {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.contact-text {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #dc2626;
    padding: 1rem 2rem;
    border: 2px solid #dc2626;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #dc2626;
    color: #fff;
}

.btn-primary {
    background: #dc2626;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Navigation Updates */
.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons a {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Top Bar Updates */
.top-bar {
    font-size: 0.9rem;
}

.top-links a {
    color: #333;
    text-decoration: none;
    margin-left: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-links a:hover {
    opacity: 1;
}

/* Fixed Coupon Button */
.fixed-coupon-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.fixed-coupon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
}

.coupon-content {
    text-align: center;
    color: white;
}

.coupon-text {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}

.coupon-subtext {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: -2px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }
}

/* Coupon Modal */
.coupon-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.coupon-modal-content {
    background: white;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #666;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #dc2626;
}

.coupon-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.coupon-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
}

.coupon-body {
    padding: 2rem;
    text-align: center;
}

.discount-percentage {
    font-size: 4rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

.coupon-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.coupon-body p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coupon-code-section {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px dashed #dc2626;
}

.coupon-code-section p {
    margin: 0 0 1rem 0;
    font-weight: 600;
    color: #374151;
}

.coupon-code {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid #dc2626;
    letter-spacing: 2px;
}

.copy-code-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-code-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.validity-date {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #f59e0b;
}

.validity-date p {
    margin: 0;
    color: #92400e;
    font-size: 0.95rem;
}

.coupon-cta {
    background: #dc2626;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.coupon-cta:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* Countdown Banner */
.countdown-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.countdown-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.countdown-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1rem;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.time-unit label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Updated Pricing Cards */
.gift-badge {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 1rem 0;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.gift-badge.premium {
    background: linear-gradient(45deg, #7c3aed, #5b21b6);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.total-price {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
    text-decoration: line-through;
}

/* PayTR Modal */
.paytr-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.paytr-modal-content {
    background: white;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.close-paytr-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #666;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-paytr-modal:hover {
    color: #dc2626;
}

.paytr-header {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: white;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.paytr-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.paytr-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.paytr-body {
    padding: 2rem;
}

.package-summary {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.package-summary h3 {
    margin: 0 0 1rem 0;
    color: #1f2937;
    font-size: 1.3rem;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.price-item.discount {
    color: #dc2626;
    font-weight: 600;
}

.price-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: #1f2937;
    border-top: 2px solid #e5e7eb;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.coupon-input-section {
    margin-bottom: 2rem;
}

.coupon-input-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.coupon-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.coupon-input-wrapper input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.apply-coupon-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.apply-coupon-btn:hover {
    background: #b91c1c;
}

.coupon-message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}

.coupon-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    display: block;
}

.coupon-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

.coupon-message.info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
    display: block;
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h4 {
    margin-bottom: 1rem;
    color: #374151;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-option:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

.payment-option.active {
    border-color: #1a1a1a;
    background: #f3f4f6;
    color: #1a1a1a;
}

.payment-option i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.payment-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row:last-child {
    grid-template-columns: 1fr 2fr;
}

.payment-form input {
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.payment-form input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.payment-security {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.security-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.security-badges i {
    color: #1a1a1a;
}

.paytr-pay-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.paytr-pay-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.4);
}

/* Mobile App Images */
.mobile-app-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.mobile-app-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    transition: transform 0.3s ease;
}

.mobile-app-img:hover {
    transform: translateY(-5px);
}

.android-img {
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
}

.ios-img {
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.3);
}

/* Countdown Section */
.countdown-section {
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(185, 28, 28, 0.05));
    z-index: 1;
}

.countdown-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Countdown */
.hero-countdown {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-countdown-content {
    text-align: center;
}

.countdown-text {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    align-items: center;
}

.hero-time-unit {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 32px;
    text-align: center;
    letter-spacing: 0.5px;
}

.hero-time-unit span {
    font-size: 1rem;
    margin-right: 1px;
}

.hero-countdown .expired {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Top Countdown */
.hero-countdown-top {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 4px solid #dc2626;
}

.hero-countdown-top::before {
    content: '⚡';
    position: absolute;
    top: -5px;
    right: 10px;
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
    }
}

.hero-countdown-top-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.countdown-top-text {
    display: block;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.hero-countdown-top-timer {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    align-items: center;
}

.hero-top-time-unit {
    background: #f8fafc;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    min-width: 38px;
    text-align: center;
    position: relative;
}

.hero-top-time-unit span {
    font-size: 1rem;
    display: inline-block;
}

.hero-top-time-unit small {
    font-size: 0.65rem;
    margin-left: 1px;
    opacity: 0.8;
}

.hero-countdown-top .expired {
    color: #374151;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* Header Navigation */
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-buttons a {
        text-align: center;
        padding: 0.5rem 1rem;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .hero-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        order: 2;
    }
    
    .hero-image {
        margin-left: 0 !important;
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Solutions Grid */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    /* Mobile App Section */
    .mobile-app-content {
        flex-direction: column;
        gap: 2rem !important;
        text-align: center;
    }
    
    .mobile-app-content h2 {
        text-align: center !important;
    }
    
    .mobile-app-images {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-app-img {
        max-width: 300px;
    }
    
    /* Business Types */
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Features */
    .features-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-content .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-image {
        order: -1;
    }
    
    /* Pricing */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Integration */
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .integration-item {
        padding: 1rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    /* Fixed Coupon */
    .fixed-coupon-btn {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
    }
    
    .coupon-text {
        font-size: 1.2rem;
    }
    
    .coupon-subtext {
        font-size: 0.7rem;
    }
    
    /* Modals */
    .coupon-modal-content,
    .paytr-modal-content {
        width: 95%;
        margin: 1rem auto;
    }
    
    .discount-percentage {
        font-size: 3rem;
    }
    
    .coupon-header h2 {
        font-size: 1.5rem;
    }
    
    /* Countdown */
    .countdown-timer {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 0.75rem;
        flex: 1;
        min-width: calc(25% - 0.75rem);
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    /* Payment */
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-security {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }
    
    /* Hero Countdown Mobile */
    .hero-countdown {
        margin: 1rem 0;
        padding: 0.8rem 1rem;
    }
    
    .countdown-text {
        font-size: 0.8rem;
    }
    
    .hero-countdown-timer {
        gap: 0.5rem;
    }
    
    .hero-time-unit {
        font-size: 0.75rem;
        padding: 0.25rem 0.4rem;
        min-width: 28px;
    }
    
    .hero-time-unit span {
        font-size: 0.85rem;
    }
}

/* Hero Top Countdown Mobile */
.hero-countdown-top {
    margin-bottom: 1rem;
    padding: 0.6rem 1rem;
}

.countdown-top-text {
    font-size: 0.75rem;
}

.hero-countdown-top-timer {
    gap: 0.4rem;
}

.hero-top-time-unit {
    font-size: 0.7rem;
    padding: 0.25rem 0.4rem;
    min-width: 30px;
}

.hero-top-time-unit span {
    font-size: 0.85rem;
}

.hero-top-time-unit small {
    font-size: 0.6rem;
}
